diff options
author | Harri Nieminen <moikkis@gmail.com> | 2018-04-17 11:36:33 +0300 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2018-04-17 22:26:27 +0200 |
commit | 0bae59e073320e1e99e8378d87a3cc002fd0229f (patch) | |
tree | ad95fe0bc58565adaca3c0156d87cdba598ea93e /net-misc/wput | |
parent | net-libs/libident: Clean up old (diff) | |
download | gentoo-0bae59e073320e1e99e8378d87a3cc002fd0229f.tar.gz gentoo-0bae59e073320e1e99e8378d87a3cc002fd0229f.tar.bz2 gentoo-0bae59e073320e1e99e8378d87a3cc002fd0229f.zip |
net-misc/wput: Clean up old
Package-Manager: Portage-2.3.29, Repoman-2.3.9
Diffstat (limited to 'net-misc/wput')
-rw-r--r-- | net-misc/wput/wput-0.6.1.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/net-misc/wput/wput-0.6.1.ebuild b/net-misc/wput/wput-0.6.1.ebuild deleted file mode 100644 index 1d495ab77a2c..000000000000 --- a/net-misc/wput/wput-0.6.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit eutils - -DESCRIPTION="Tiny program like wget, to upload files/whole directories via FTP" -HOMEPAGE="http://wput.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ~sparc x86" -IUSE="debug nls ssl" - -RDEPEND="ssl? ( net-libs/gnutls )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${PN}-0.6-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} \ - $(use_enable nls) \ - $(use_with ssl) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc ChangeLog INSTALL TODO -} |