Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/gftp/
Date: Mon, 09 May 2022 22:09:36
Message-Id: 1652134115.d44581b8b23949a88fb2ef5ec4f24657293d18ff.mattst88@gentoo
1 commit: d44581b8b23949a88fb2ef5ec4f24657293d18ff
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 9 21:38:01 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon May 9 22:08:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d44581b8
7
8 net-ftp/gftp: Version bump to 2.9.1b
9
10 Closes: https://bugs.gentoo.org/716034
11 Closes: https://bugs.gentoo.org/724934
12 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
13
14 net-ftp/gftp/Manifest | 1 +
15 net-ftp/gftp/gftp-2.9.1b.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
16 2 files changed, 39 insertions(+)
17
18 diff --git a/net-ftp/gftp/Manifest b/net-ftp/gftp/Manifest
19 index de386d45d8c5..42af85eeff46 100644
20 --- a/net-ftp/gftp/Manifest
21 +++ b/net-ftp/gftp/Manifest
22 @@ -1 +1,2 @@
23 DIST gftp-2.0.19.tar.bz2 1687167 BLAKE2B b7cd5409c7dfe4672a383417554c39a848b9afa341de498eea76bd02a2099559f14d7d0ceebe13d52842c311a4b242a0d558aa017dd7062a3369a7c2c3af19a0 SHA512 59968786d66aaf6fb520f73d52ed0f8b57751a5ed222a5c65a7257628cd9addfd0ff3213206311bfd24441d7e6cc6d245d74d6687a1ad9739361da61ca078172
24 +DIST gftp-2.9.1b.tar.xz 872308 BLAKE2B 3588321689a1c6d8e0585e0439507f774b30e05630f774d7909f32fd66c289a961602b84cde97377de47d0c63fe4cf5452ec1e0b986c578958a6080cf5814fc8 SHA512 31d0aa4d3c5adf3d9ac2c2517402f9bdcab5fb1187df521a978acf41c1997a120797056dd1ca7bedc32e0dec0ac7c06c1790e47821660277fb6572205ce0fe93
25
26 diff --git a/net-ftp/gftp/gftp-2.9.1b.ebuild b/net-ftp/gftp/gftp-2.9.1b.ebuild
27 new file mode 100644
28 index 000000000000..4cbd3b794981
29 --- /dev/null
30 +++ b/net-ftp/gftp/gftp-2.9.1b.ebuild
31 @@ -0,0 +1,38 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +inherit gnome2
37 +
38 +DESCRIPTION="a free multithreaded file transfer client"
39 +SRC_URI="https://github.com/masneyb/gftp/releases/download/${PV}/${P}.tar.xz"
40 +HOMEPAGE="https://github.com/masneyb/gftp"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
45 +IUSE="gtk ssl"
46 +
47 +RDEPEND="
48 + dev-libs/glib:2
49 + sys-libs/ncurses:0=
50 + sys-libs/readline:0
51 + gtk? ( x11-libs/gtk+:2 )
52 + ssl? ( dev-libs/openssl:0= )
53 +"
54 +DEPEND="${RDEPEND}"
55 +BDEPEND="
56 + sys-devel/gettext
57 + virtual/pkgconfig
58 +"
59 +
60 +src_configure() {
61 + gnome2_src_configure \
62 + $(use_enable gtk gtkport) \
63 + $(use_enable ssl)
64 +}
65 +
66 +src_install() {
67 + gnome2_src_install
68 + dodoc docs/USERS-GUIDE
69 +}