diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2002-02-09 21:06:32 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2002-02-09 21:06:32 +0000 |
commit | f5c0974bafb7f2ff4aba6a6f6649cede041cb4d0 (patch) | |
tree | 0e540095817edd524f0de585f56c8fea5640acc6 /net-www/prozilla | |
parent | Included an inital ChangeLog. Now installs a gyach.desktop entry and icon if (diff) | |
download | gentoo-2-f5c0974bafb7f2ff4aba6a6f6649cede041cb4d0.tar.gz gentoo-2-f5c0974bafb7f2ff4aba6a6f6649cede041cb4d0.tar.bz2 gentoo-2-f5c0974bafb7f2ff4aba6a6f6649cede041cb4d0.zip |
new prozilla fixing bug #620
Diffstat (limited to 'net-www/prozilla')
-rw-r--r-- | net-www/prozilla/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/prozilla/files/digest-prozilla-1.3.6-r1 | 1 | ||||
-rw-r--r-- | net-www/prozilla/prozilla-1.3.6-r1.ebuild | 27 |
3 files changed, 34 insertions, 1 deletions
diff --git a/net-www/prozilla/ChangeLog b/net-www/prozilla/ChangeLog index f3318f0c7640..da30bad6a854 100644 --- a/net-www/prozilla/ChangeLog +++ b/net-www/prozilla/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-www/prozilla # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-www/prozilla/ChangeLog,v 1.1 2002/02/01 21:53:36 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/prozilla/ChangeLog,v 1.2 2002/02/09 21:06:32 drobbins Exp $ + +*prozilla-1.3.6-r1 (9 Feb 2002) + + 9 Feb 2002; Daniel Robbins <drobbins@gentoo.org>: Updated download site + to fix bug #620 *prozilla-1.3.6 (1 Feb 2002) diff --git a/net-www/prozilla/files/digest-prozilla-1.3.6-r1 b/net-www/prozilla/files/digest-prozilla-1.3.6-r1 new file mode 100644 index 000000000000..f803fafe0864 --- /dev/null +++ b/net-www/prozilla/files/digest-prozilla-1.3.6-r1 @@ -0,0 +1 @@ +MD5 65864dfe72f5cb7d7e595ca6f34fc7d7 prozilla-1.3.6.tar.gz 152755 diff --git a/net-www/prozilla/prozilla-1.3.6-r1.ebuild b/net-www/prozilla/prozilla-1.3.6-r1.ebuild new file mode 100644 index 000000000000..83ead30d749e --- /dev/null +++ b/net-www/prozilla/prozilla-1.3.6-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +#$Header: /var/cvsroot/gentoo-x86/net-www/prozilla/prozilla-1.3.6-r1.ebuild,v 1.1 2002/02/09 21:06:32 drobbins Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A download manager" +SRC_URI="http://prozilla.delrom.ro/packages/prozilla/tarballs/${P}.tar.gz" +HOMEPAGE="http://prozilla.delrom.ro/" + +DEPEND="virtual/glibc >=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 +} + +src_install () { + make DESTDIR=${D} \ + sysconfdir=${D}/etc \ + install || die + dodoc ANNOUNCE AUTHORS COPYING CREDITS ChangeLog FAQ NEWS README TODO +} + |