summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Fitzgerald <gregf@gentoo.org>2003-11-18 04:22:32 +0000
committerGreg Fitzgerald <gregf@gentoo.org>2003-11-18 04:22:32 +0000
commitc78eb02f4ba563ff42bbf4163f288a40665016cf (patch)
treef7e27eafdf30aaf4623d1a530cdbcac57f85bb39 /net-misc/wget
parentmoved from app-misc to x11-misc, metadata created (diff)
downloadhistorical-c78eb02f4ba563ff42bbf4163f288a40665016cf.tar.gz
historical-c78eb02f4ba563ff42bbf4163f288a40665016cf.tar.bz2
historical-c78eb02f4ba563ff42bbf4163f288a40665016cf.zip
removed 1.9
Diffstat (limited to 'net-misc/wget')
-rw-r--r--net-misc/wget/wget-1.9-r1.ebuild64
-rw-r--r--net-misc/wget/wget-1.9-r2.ebuild62
-rw-r--r--net-misc/wget/wget-1.9.ebuild59
3 files changed, 0 insertions, 185 deletions
diff --git a/net-misc/wget/wget-1.9-r1.ebuild b/net-misc/wget/wget-1.9-r1.ebuild
deleted file mode 100644
index 1fa4cbe4ba40..000000000000
--- a/net-misc/wget/wget-1.9-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# 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.9-r1.ebuild,v 1.1 2003/11/03 23:54:35 seemant Exp $
-
-inherit gnuconfig
-
-IUSE="ssl nls static ipv6 debug socks5"
-
-NPVER=20031022
-DESCRIPTION="Network utility to retrieve files from the WWW"
-HOMEPAGE="http://www.cg.tuwien.ac.at/~prikryl/wget.html"
-SRC_URI="mirror://gnu/wget/${P}.tar.gz
- http://www.episec.com/people/edelkind/patches/wget/${P}+ipvmisc.patch"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~arm ~mips ~amd64 ~ia64"
-
-RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )"
-DEPEND="nls? ( sys-devel/gettext )"
-
-
-src_unpack() {
- unpack ${P}.tar.gz
- epatch ${DISTDIR}/${P}+ipvmisc.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-r2.ebuild b/net-misc/wget/wget-1.9-r2.ebuild
deleted file mode 100644
index ff683dd82e09..000000000000
--- a/net-misc/wget/wget-1.9-r2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# 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.9-r2.ebuild,v 1.2 2003/11/11 01:33:44 lostlogic Exp $
-
-inherit gnuconfig
-
-IUSE="ssl nls static debug socks5"
-
-NPVER=20031022
-DESCRIPTION="Network utility to retrieve files from the WWW"
-HOMEPAGE="http://www.cg.tuwien.ac.at/~prikryl/wget.html"
-SRC_URI="mirror://gnu/wget/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~arm ~mips ~amd64 ~ia64"
-
-RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )"
-DEPEND="nls? ( sys-devel/gettext )"
-
-
-src_unpack() {
- unpack ${P}.tar.gz
-# epatch ${DISTDIR}/${P}+ipvmisc.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 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.ebuild b/net-misc/wget/wget-1.9.ebuild
deleted file mode 100644
index 34159410280b..000000000000
--- a/net-misc/wget/wget-1.9.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# 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.9.ebuild,v 1.3 2003/11/11 00:05:20 gregf Exp $
-
-inherit gnuconfig
-
-IUSE="ssl nls static ipv6 debug socks5"
-
-NPVER=20031022
-DESCRIPTION="Network utility to retrieve files from the WWW"
-HOMEPAGE="http://www.cg.tuwien.ac.at/~prikryl/wget.html"
-SRC_URI="mirror://gnu/wget/${P}.tar.gz"
-# doesn't look like the new percentage patch actually does anything in 1.9
-# mirror://gentoo/wget-new-percentage-cvs-${NPVER}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc sparc alpha hppa arm mips amd64 ia64"
-
-RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )"
-DEPEND="nls? ( sys-devel/gettext )"
-
-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
-}