diff options
author | Joshua Kinard <kumba@gentoo.org> | 2003-05-20 01:00:11 +0000 |
---|---|---|
committer | Joshua Kinard <kumba@gentoo.org> | 2003-05-20 01:00:11 +0000 |
commit | 2bcaa0b31bee05810a7484a1464928883929198b (patch) | |
tree | 59b23f0b84a385697a7d205902ca4dcc8a77c94e | |
parent | new unstable version for testing (diff) | |
download | gentoo-2-2bcaa0b31bee05810a7484a1464928883929198b.tar.gz gentoo-2-2bcaa0b31bee05810a7484a1464928883929198b.tar.bz2 gentoo-2-2bcaa0b31bee05810a7484a1464928883929198b.zip |
Added gnuconfig eclass support to properly detect linux-mips && added ~mips to KEYWORDS
-rw-r--r-- | net-misc/wget/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/wget/Manifest | 8 | ||||
-rw-r--r-- | net-misc/wget/wget-1.8.2-r2.ebuild | 11 |
3 files changed, 23 insertions, 3 deletions
diff --git a/net-misc/wget/ChangeLog b/net-misc/wget/ChangeLog index f67c1df79d5d..9610990df219 100644 --- a/net-misc/wget/ChangeLog +++ b/net-misc/wget/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/wget # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.14 2003/02/22 07:27:44 zwelch Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.15 2003/05/20 00:59:52 kumba Exp $ + + + 19 May 2003; Joshua Kinard <kumba@gentoo.org> wget-1.8.2-r2.ebuild: + Add gnuconfig eclass, and gnuconfig_update to src_compile to allow + proper detection of linux-mips systems. Also added ~mips to KEYWORDS. 21 Feb 2003; Zach Welch <zwelch@gentoo.org> wget-1.8.2-r2.ebuild : Added arm to keywords. diff --git a/net-misc/wget/Manifest b/net-misc/wget/Manifest new file mode 100644 index 000000000000..0531ad5ed8c6 --- /dev/null +++ b/net-misc/wget/Manifest @@ -0,0 +1,8 @@ +MD5 c68e0e7e5fa02bc50ea7de5952c5ebf9 ChangeLog 2511 +MD5 1903bae07e9a6f46e5383abf7b4b93a8 wget-1.8.2-r1.ebuild 1739 +MD5 bf7193bb73f20f9ecc43c9471e3ca5ee wget-1.8.2-r2.ebuild 1918 +MD5 a418c09dd82a46504b8480741c9f5ee1 wget-1.8.2.ebuild 1677 +MD5 00e7e0c66e6e615b96d3a83e3b0c9a16 files/digest-wget-1.8.2 146 +MD5 28f004e72194fae0e65365e48b867c83 files/digest-wget-1.8.2-r1 221 +MD5 28f004e72194fae0e65365e48b867c83 files/digest-wget-1.8.2-r2 221 +MD5 987b30c931a50d2dc02a905c29f84821 files/wget-1.8.2-r2-gentoo.diff 1549 diff --git a/net-misc/wget/wget-1.8.2-r2.ebuild b/net-misc/wget/wget-1.8.2-r2.ebuild index 52a8216eb949..c53f58f37693 100644 --- a/net-misc/wget/wget-1.8.2-r2.ebuild +++ b/net-misc/wget/wget-1.8.2-r2.ebuild @@ -1,9 +1,12 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.8.2-r2.ebuild,v 1.5 2003/02/22 07:27:44 zwelch Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.8.2-r2.ebuild,v 1.6 2003/05/20 00:59:52 kumba Exp $ + IUSE="ssl nls static ipv6" +inherit gnuconfig + NPVER=20011209 S=${WORKDIR}/${P} DESCRIPTION="Network utility to retrieve files from the WWW" @@ -17,7 +20,7 @@ DEPEND="nls? ( sys-devel/gettext )" SLOT="0" LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc alpha hppa arm" +KEYWORDS="x86 ppc sparc alpha hppa arm ~mips" src_unpack() { unpack ${A} @@ -36,6 +39,10 @@ src_unpack() { } src_compile() { + + # Make wget use up-to-date configure scripts + gnuconfig_update + local myconf use nls || myconf="--disable-nls" use ssl && myconf="${myconf} --with-ssl" |