blob: 6787ae83cb13e1bf8564f4b0356e76c29d20b2f3 (
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
33
34
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/buffer/buffer-1.19-r2.ebuild,v 1.3 2004/09/03 21:03:23 pvdabeel Exp $
inherit eutils flag-o-matic gcc
DESCRIPTION="a tapedrive tool for speeding up reading from and writing to tape"
HOMEPAGE="http://www.microwerks.net/~hugo/"
SRC_URI="mirror://gentoo/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64 ppc"
IUSE=""
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-deb-gentoo.patch
make clean || die "make clean failed"
}
src_compile() {
append-lfs-flags
emake CC="$(gcc-getCC)" CFLAGS="${CFLAGS}" || die "make failed"
}
src_install() {
dobin buffer || die
dodoc README
newman buffer.man buffer.1
}
|