diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-03-25 16:13:57 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-03-25 16:13:57 +0000 |
commit | daea4f5399bf7a77517fefaf5ff2e2a188059604 (patch) | |
tree | 26be164eadd4bb32d04b0358c6ad08e41cbe2456 /net-misc/wput | |
parent | Sparc stable, security Bug #213883. (diff) | |
download | historical-daea4f5399bf7a77517fefaf5ff2e2a188059604.tar.gz historical-daea4f5399bf7a77517fefaf5ff2e2a188059604.tar.bz2 historical-daea4f5399bf7a77517fefaf5ff2e2a188059604.zip |
old
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'net-misc/wput')
-rw-r--r-- | net-misc/wput/wput-0.6.ebuild | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/net-misc/wput/wput-0.6.ebuild b/net-misc/wput/wput-0.6.ebuild deleted file mode 100644 index fed32d16d77e..000000000000 --- a/net-misc/wput/wput-0.6.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wput/wput-0.6.ebuild,v 1.3 2008/03/14 09:29:51 phreak Exp $ - -inherit eutils - -DESCRIPTION="A tiny, wget-alike program, that is designed to upload files/whole directories to remote ftp-servers" -HOMEPAGE="http://wput.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc x86" -IUSE="debug" - -S="${WORKDIR}/${PN}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-gentoo.diff" - # Fix bug 126828 - epatch "${FILESDIR}/wput-0.6-respectldflags.patch" -} - -src_compile() { - local myconf - use debug && myconf="--enable-memdbg=yes" || myconf="--enable-g-switch=no" - econf ${myconf} || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - dodoc ChangeLog INSTALL TODO -} |