diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-05-10 12:22:31 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-05-10 12:22:31 +0000 |
commit | 8012f799ba1b3c0fcde3aaf8a9a9bc77a307012b (patch) | |
tree | 1d6a39acb34df02cb9207a2d3eba04826e9639cc /net-misc | |
parent | Added to ~ppc (diff) | |
download | historical-8012f799ba1b3c0fcde3aaf8a9a9bc77a307012b.tar.gz historical-8012f799ba1b3c0fcde3aaf8a9a9bc77a307012b.tar.bz2 historical-8012f799ba1b3c0fcde3aaf8a9a9bc77a307012b.zip |
remove crufty ebuilds
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/wget/files/digest-wget-1.8.2-r3 | 3 | ||||
-rw-r--r-- | net-misc/wget/files/digest-wget-1.9-r2 | 2 | ||||
-rw-r--r-- | net-misc/wget/files/digest-wget-1.9.1-r2 | 1 | ||||
-rw-r--r-- | net-misc/wget/wget-1.8.2-r3.ebuild | 71 | ||||
-rw-r--r-- | net-misc/wget/wget-1.9-r2.ebuild | 67 | ||||
-rw-r--r-- | net-misc/wget/wget-1.9.1-r2.ebuild | 66 |
6 files changed, 0 insertions, 210 deletions
diff --git a/net-misc/wget/files/digest-wget-1.8.2-r3 b/net-misc/wget/files/digest-wget-1.8.2-r3 deleted file mode 100644 index 39c3be4eb0af..000000000000 --- a/net-misc/wget/files/digest-wget-1.8.2-r3 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 a2473d7a53ebaf0a1bdb06f17059e8f1 wget-1.8.2.tar.gz 1154648 -MD5 8da1e4f2991384ddbd575f4109c2ab4a wget-new-percentage-cvs-20011209.tar.gz 12196 -MD5 06e82e110d99480c8c81a7c3531c8ca5 wget-1.8.2-ipv6-debian.patch.bz2 8353 diff --git a/net-misc/wget/files/digest-wget-1.9-r2 b/net-misc/wget/files/digest-wget-1.9-r2 deleted file mode 100644 index 81a027bef1bb..000000000000 --- a/net-misc/wget/files/digest-wget-1.9-r2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 18ac093db70801b210152dd69b4ef08a wget-1.9.tar.gz 1315995 -MD5 865374f176bc7577ce26bdbaf45fb170 wget-1.9+ipvmisc-0.1.patch 24915 diff --git a/net-misc/wget/files/digest-wget-1.9.1-r2 b/net-misc/wget/files/digest-wget-1.9.1-r2 deleted file mode 100644 index fc78fd386c38..000000000000 --- a/net-misc/wget/files/digest-wget-1.9.1-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 e6051f1e1487ec0ebfdbda72bedc70ad wget-1.9.1.tar.gz 1322378 diff --git a/net-misc/wget/wget-1.8.2-r3.ebuild b/net-misc/wget/wget-1.8.2-r3.ebuild deleted file mode 100644 index bfc6a6641ee6..000000000000 --- a/net-misc/wget/wget-1.8.2-r3.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.8.2-r3.ebuild,v 1.16 2005/01/09 11:31:48 swegener Exp $ - -inherit gnuconfig eutils - -NPVER=20011209 -DESCRIPTION="Network utility to retrieve files from the WWW" -HOMEPAGE="http://wget.sunsite.dk/" -SRC_URI="mirror://gnu/wget/${P}.tar.gz - mirror://gentoo/wget-new-percentage-cvs-${NPVER}.tar.gz - ipv6? ( mirror://gentoo/${P}-ipv6-debian.patch.bz2 )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc sparc alpha hppa mips amd64 ia64" -IUSE="build debug ipv6 nls ssl static" - -RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )" -DEPEND="${RDEPEND} - sys-devel/autoconf - nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${A} - - cd ${S} - epatch ${FILESDIR}/${P}-gentoo.diff - - cd ${S}/src - epatch ${WORKDIR}/wget-new-percentage/wnp-20011208-2.diff - - if use ipv6 - then - cd ${S} - epatch ${WORKDIR}/${P}-ipv6-debian.patch - fi - - epatch ${FILESDIR}/${P}-2Glimit.diff -} - -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" - use ssl || myconf="${myconf} --without-ssl --disable-opie --disable-digest" - use debug && myconf="${myconf} --disable-debug" - use ssl && CFLAGS="${CFLAGS} -I/usr/include/openssl" - ./configure --prefix=/usr --sysconfdir=/etc/wget \ - --infodir=/usr/share/info --mandir=usr/share/man $myconf || die - if use static; then - make LDFLAGS="--static" || die - else - make || die - fi -} - -src_install() { - if use build; then - insinto /usr - dobin ${S}/src/wget - return - fi - make prefix=${D}/usr sysconfdir=${D}/etc/wget \ - mandir=${D}/usr/share/man infodir=${D}/usr/share/info install || die - dodoc AUTHORS COPYING ChangeLog MACHINES MAILING-LIST NEWS README TODO - dodoc doc/sample.wgetrc -} diff --git a/net-misc/wget/wget-1.9-r2.ebuild b/net-misc/wget/wget-1.9-r2.ebuild deleted file mode 100644 index 6257067cc42c..000000000000 --- a/net-misc/wget/wget-1.9-r2.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.9-r2.ebuild,v 1.12 2005/01/09 11:31:48 swegener Exp $ - -inherit gnuconfig eutils - -IUSE="build debug ipv6 nls socks5 ssl static" - -PATCHVER=0.1 -DESCRIPTION="Network utility to retrieve files from the WWW" -HOMEPAGE="http://wget.sunsite.dk/" -SRC_URI="mirror://gnu/wget/${P}.tar.gz - mirror://gentoo/${P}+ipvmisc-${PATCHVER}.patch" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc sparc alpha hppa mips amd64 ia64" - -RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - sys-devel/autoconf" - - -src_unpack() { - unpack ${P}.tar.gz - epatch ${DISTDIR}/${P}+ipvmisc-${PATCHVER}.patch - epatch ${FILESDIR}/${P}-uclibc.patch -} - -src_compile() { - # Make wget use up-to-date configure scripts - gnuconfig_update - - local myconf - use ssl \ - && myconf="${myconf} --with-ssl" \ - || myconf="${myconf} --without-ssl --disable-opie --disable-digest" - - use ssl && CFLAGS="${CFLAGS} -I/usr/include/openssl" - - econf \ - --sysconfdir=/etc/wget \ - `use_enable ipv6` \ - `use_enable nls` \ - `use_enable debug` \ - `use_with socks5 socks` \ - ${myconf} || die - - if use static; then - emake LDFLAGS="--static" || die - else - emake || die - fi -} - -src_install() { - if use build; then - insinto /usr - dobin ${S}/src/wget - return - fi - make prefix=${D}/usr sysconfdir=${D}/etc/wget \ - mandir=${D}/usr/share/man infodir=${D}/usr/share/info install || die - dodoc AUTHORS COPYING ChangeLog MACHINES MAILING-LIST NEWS README TODO - dodoc doc/sample.wgetrc -} diff --git a/net-misc/wget/wget-1.9.1-r2.ebuild b/net-misc/wget/wget-1.9.1-r2.ebuild deleted file mode 100644 index 4fbdf3623d92..000000000000 --- a/net-misc/wget/wget-1.9.1-r2.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.9.1-r2.ebuild,v 1.22 2005/01/09 11:31:48 swegener Exp $ - -inherit gnuconfig eutils - -NPVER=20031022 -DESCRIPTION="Network utility to retrieve files from the WWW" -HOMEPAGE="http://wget.sunsite.dk/" -SRC_URI="mirror://gnu/wget/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 ppc-macos s390 sh ~sparc ~x86" -IUSE="build debug ipv6 nls socks5 ssl static" - -RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - sys-devel/autoconf" - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${P}+ipvmisc.patch - epatch ${FILESDIR}/${PN}-1.9-uclibc.patch - epatch ${FILESDIR}/${P}-locale.patch -} - -src_compile() { - # Make wget use up-to-date configure scripts - gnuconfig_update - - local myconf - use ssl \ - && myconf="${myconf} --with-ssl" \ - || myconf="${myconf} --without-ssl --disable-opie --disable-digest" - - use ssl && CFLAGS="${CFLAGS} -I/usr/include/openssl" - - econf \ - --sysconfdir=/etc/wget \ - `use_enable ipv6` \ - `use_enable nls` \ - `use_enable debug` \ - `use_with socks5 socks` \ - ${myconf} || die - - if use static; then - emake LDFLAGS="--static" || die - else - emake || die - fi -} - -src_install() { - if use build; then - insinto /usr - dobin ${S}/src/wget - return - fi - make prefix=${D}/usr sysconfdir=${D}/etc/wget \ - mandir=${D}/usr/share/man infodir=${D}/usr/share/info install || die - dodoc AUTHORS COPYING ChangeLog MACHINES MAILING-LIST NEWS README TODO - dodoc doc/sample.wgetrc -} |