blob: 50e3aac72747dc0caadaf0bc4b037099e4c4af63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="Utilities for manipulation of tapes and tape image files"
HOMEPAGE="http://www.brouhaha.com/~eric/software/tapeutils/"
SRC_URI="http://www.brouhaha.com/~eric/software/tapeutils/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=""
RDEPEND="!app-emulation/hercules"
PATCHES=(
"${FILESDIR}"/${PN}-0.4-fix-build-system.patch
"${FILESDIR}"/${PN}-0.4-fix-C-decl.patch
)
src_configure() {
tc-export CC
}
src_install() {
dobin tapecopy tapedump
# no docs to install
}
|