blob: d87af716a23ab7bc57a22e63ed3896b14eabbf93 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/prozilla/prozilla-1.3.6-r1.ebuild,v 1.2 2004/10/03 21:59:33 swegener Exp $
DESCRIPTION="A download manager"
HOMEPAGE="http://prozilla.genesys.ro/"
SRC_URI="http://prozilla.genesys.ro/downloads/prozilla/tarballs/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ppc amd64"
IUSE=""
DEPEND="virtual/libc
>=sys-libs/ncurses-5.2"
src_compile() {
./configure --prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--host=${CHOST} \
--sysconfdir=/etc || die
emake || die "emake failed"
}
src_install () {
make DESTDIR=${D} \
sysconfdir=${D}/etc \
install || die "make install failed"
dodoc ANNOUNCE AUTHORS CREDITS ChangeLog FAQ NEWS README TODO
}
|