diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-08-10 10:29:35 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-08-10 11:46:52 +0200 |
commit | e8d522ac26dda3560e840f614613040d16350da2 (patch) | |
tree | 2ca4ddf6400f6e9ceed3f406e0fb1232987d06a8 /net-misc/wput | |
parent | app-admin/setools: fix remove gui 4.1.1 patch (diff) | |
download | gentoo-e8d522ac26dda3560e840f614613040d16350da2.tar.gz gentoo-e8d522ac26dda3560e840f614613040d16350da2.tar.bz2 gentoo-e8d522ac26dda3560e840f614613040d16350da2.zip |
net-misc/wput: EAPI 6 bump.
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'net-misc/wput')
-rw-r--r-- | net-misc/wput/wput-0.6.1-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-misc/wput/wput-0.6.1-r1.ebuild b/net-misc/wput/wput-0.6.1-r1.ebuild new file mode 100644 index 000000000000..354b883b95e3 --- /dev/null +++ b/net-misc/wput/wput-0.6.1-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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 )" + +PATCHES=( + "${FILESDIR}/${PN}-0.6-gentoo.diff" + "${FILESDIR}/${PN}-0.6-respectldflags.patch" +) + +DOCS=( ChangeLog INSTALL TODO ) + +src_configure() { + local myconf="--enable-g-switch=no" + use debug && myconf="--enable-memdbg=yes" + econf \ + $(use_enable nls) \ + $(use_with ssl) \ + "${myconf}" +} + +src_install() { + default +} |