diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2005-08-27 21:15:51 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2005-08-27 21:15:51 +0000 |
commit | 9ceab4f53c948ffef534f309026c05f8c0577257 (patch) | |
tree | 16e80c25eb2a4b21252a5c7967ee55fcb30425ac /net-nntp/nget | |
parent | Stable on ppc64 (diff) | |
download | gentoo-2-9ceab4f53c948ffef534f309026c05f8c0577257.tar.gz gentoo-2-9ceab4f53c948ffef534f309026c05f8c0577257.tar.bz2 gentoo-2-9ceab4f53c948ffef534f309026c05f8c0577257.zip |
version bump
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-nntp/nget')
-rw-r--r-- | net-nntp/nget/ChangeLog | 7 | ||||
-rw-r--r-- | net-nntp/nget/Manifest | 12 | ||||
-rw-r--r-- | net-nntp/nget/files/digest-nget-0.27.1 | 1 | ||||
-rw-r--r-- | net-nntp/nget/nget-0.27.1.ebuild | 45 |
4 files changed, 54 insertions, 11 deletions
diff --git a/net-nntp/nget/ChangeLog b/net-nntp/nget/ChangeLog index 8e1ca3eed4d4..0b43a3453cba 100644 --- a/net-nntp/nget/ChangeLog +++ b/net-nntp/nget/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-nntp/nget # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nntp/nget/ChangeLog,v 1.2 2005/01/17 21:43:55 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nntp/nget/ChangeLog,v 1.3 2005/08/27 21:15:51 rphillips Exp $ + +*nget-0.27.1 (27 Aug 2005) + + 27 Aug 2005; <rphillips@gentoo.org> +nget-0.27.1.ebuild: + version bump *nget-0.27 (17 Jan 2005) diff --git a/net-nntp/nget/Manifest b/net-nntp/nget/Manifest index 0498cf559518..910e2cf93b30 100644 --- a/net-nntp/nget/Manifest +++ b/net-nntp/nget/Manifest @@ -1,16 +1,8 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 088e28b7ef706bdde3fbfecf47c71737 nget-0.26.ebuild 1230 MD5 a3828006b4dc1398ec2a3d0c7750716c nget-0.27.ebuild 1086 MD5 ad4bc141aac599ce5cc961b15494f04a ChangeLog 2077 +MD5 74fc7d525bd9f2a90235b75cd2f5de36 nget-0.27.1.ebuild 1074 MD5 059733ad92a101895ce18a1120b6eb55 metadata.xml 225 +MD5 c17cef108e16646aeb342d949cb1bfd8 files/digest-nget-0.27.1 63 MD5 e60b241e5d6ce73c6516002f53529a1c files/digest-nget-0.26 67 MD5 b8b9b7c4345bd3ca7601ee62d94e3489 files/digest-nget-0.27 61 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFC1wKxBXaUFmZvwyMRAmgGAJ9rSOuGEh2Wp43E6gSS0jyHrBqXhQCeIOvU -NhPxyM766f2vOgrq2Jzl8kE= -=l1pL ------END PGP SIGNATURE----- diff --git a/net-nntp/nget/files/digest-nget-0.27.1 b/net-nntp/nget/files/digest-nget-0.27.1 new file mode 100644 index 000000000000..f8d472ae5ce0 --- /dev/null +++ b/net-nntp/nget/files/digest-nget-0.27.1 @@ -0,0 +1 @@ +MD5 0710a25aebede4799bd9ca3756573f6a nget-0.27.1.tar.gz 490164 diff --git a/net-nntp/nget/nget-0.27.1.ebuild b/net-nntp/nget/nget-0.27.1.ebuild new file mode 100644 index 000000000000..6437e17c3c75 --- /dev/null +++ b/net-nntp/nget/nget-0.27.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-nntp/nget/nget-0.27.1.ebuild,v 1.1 2005/08/27 21:15:51 rphillips Exp $ + +DESCRIPTION="Network utility to retrieve files from an NNTP news server" +HOMEPAGE="http://nget.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +RESTRICT="nomirror" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~arm ~ppc ~amd64" +IUSE="static debug ipv6 pcre zlib" + +RDEPEND="virtual/libc + dev-libs/popt + pcre? ( dev-libs/libpcre ) + zlib? ( sys-libs/zlib )" +DEPEND="dev-libs/uulib" + +src_compile() { + econf \ + $(use_enable debug) \ + $(use_enable ipv6) \ + $(use_with pcre) \ + $(use_with zlib) \ + || die "econf failed" + + if use static ; then + emake LDFLAGS="-static" || die "emake failed" + else + emake || die "emake failed" + fi +} + +src_install() { + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die "install failed" + + dodoc COPYING Changelog FAQ README TODO + newdoc .ngetrc ngetrc.sample +} |