Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/wput/
Date: Thu, 10 Aug 2017 09:47:01
Message-Id: 1502358412.e8d522ac26dda3560e840f614613040d16350da2.monsieurp@gentoo
1 commit: e8d522ac26dda3560e840f614613040d16350da2
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 10 08:29:35 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 10 09:46:52 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8d522ac
7
8 net-misc/wput: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 net-misc/wput/wput-0.6.1-r1.ebuild | 39 ++++++++++++++++++++++++++++++++++++++
13 1 file changed, 39 insertions(+)
14
15 diff --git a/net-misc/wput/wput-0.6.1-r1.ebuild b/net-misc/wput/wput-0.6.1-r1.ebuild
16 new file mode 100644
17 index 00000000000..354b883b95e
18 --- /dev/null
19 +++ b/net-misc/wput/wput-0.6.1-r1.ebuild
20 @@ -0,0 +1,39 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +DESCRIPTION="Tiny program like wget, to upload files/whole directories via FTP"
27 +HOMEPAGE="http://wput.sourceforge.net/"
28 +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
29 +
30 +LICENSE="GPL-2"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
33 +IUSE="debug nls ssl"
34 +
35 +RDEPEND="ssl? ( net-libs/gnutls )"
36 +
37 +DEPEND="
38 + ${RDEPEND}
39 + nls? ( sys-devel/gettext )"
40 +
41 +PATCHES=(
42 + "${FILESDIR}/${PN}-0.6-gentoo.diff"
43 + "${FILESDIR}/${PN}-0.6-respectldflags.patch"
44 +)
45 +
46 +DOCS=( ChangeLog INSTALL TODO )
47 +
48 +src_configure() {
49 + local myconf="--enable-g-switch=no"
50 + use debug && myconf="--enable-memdbg=yes"
51 + econf \
52 + $(use_enable nls) \
53 + $(use_with ssl) \
54 + "${myconf}"
55 +}
56 +
57 +src_install() {
58 + default
59 +}