summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2005-05-16 20:27:30 +0000
committerSeemant Kulleen <seemant@gentoo.org>2005-05-16 20:27:30 +0000
commitbcbfc9507a45ff3e0fcc9b711615f87b14533a05 (patch)
treee6bff85d412cef65c4e00795a3e39dd66e3dddda /net-misc/wget
parentStable on SPARC. (diff)
downloadgentoo-2-bcbfc9507a45ff3e0fcc9b711615f87b14533a05.tar.gz
gentoo-2-bcbfc9507a45ff3e0fcc9b711615f87b14533a05.tar.bz2
gentoo-2-bcbfc9507a45ff3e0fcc9b711615f87b14533a05.zip
remove cruft ebuild
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'net-misc/wget')
-rw-r--r--net-misc/wget/files/digest-wget-1.9.1-r42
-rw-r--r--net-misc/wget/wget-1.9.1-r4.ebuild68
2 files changed, 0 insertions, 70 deletions
diff --git a/net-misc/wget/files/digest-wget-1.9.1-r4 b/net-misc/wget/files/digest-wget-1.9.1-r4
deleted file mode 100644
index f86f46e5bd88..000000000000
--- a/net-misc/wget/files/digest-wget-1.9.1-r4
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 e6051f1e1487ec0ebfdbda72bedc70ad wget-1.9.1.tar.gz 1322378
-MD5 ba28627c75280bbf10e7e3e750e0324a wget-1.9.1-gentoo-0.2.tar.bz2 23605
diff --git a/net-misc/wget/wget-1.9.1-r4.ebuild b/net-misc/wget/wget-1.9.1-r4.ebuild
deleted file mode 100644
index c3b456ec5b9e..000000000000
--- a/net-misc/wget/wget-1.9.1-r4.ebuild
+++ /dev/null
@@ -1,68 +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-r4.ebuild,v 1.3 2005/05/16 19:00:04 seemant Exp $
-
-inherit gnuconfig eutils flag-o-matic
-
-IUSE="build debug ipv6 nls socks5 ssl static"
-
-PATCHVER=0.2
-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}-gentoo-${PATCHVER}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~ppc-macos ~s390 ~sh
-~sparc ~x86"
-
-RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )
- socks5? ( net-proxy/dante )"
-
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )
- sys-devel/autoconf"
-
-
-PATCHDIR="${WORKDIR}/patches"
-
-src_unpack() {
- unpack ${A} ; cd ${S}
- EPATCH_SUFFIX="patch" epatch ${PATCHDIR}/gentoo
- EPATCH_SUFFIX="patch" epatch ${PATCHDIR}/mandrake
-}
-
-src_compile() {
- # Make wget use up-to-date configure scripts
- gnuconfig_update
-
- use ssl && append-flags -I/usr/include/openssl
-
- econf \
- --sysconfdir=/etc/wget \
- $(use_with ssl) $(use_enable ssl opie) $(use_enable ssl digest) \
- $(use_enable ipv6) \
- $(use_enable nls) \
- $(use_enable debug) \
- $(use_with socks5 socks) \
- || 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 DESTDIR=${D} install || die
- dodoc AUTHORS COPYING ChangeLog MACHINES MAILING-LIST NEWS README TODO
- dodoc doc/sample.wgetrc
-}