net-ftp/gftp: Version bump to 2.9.1b

Closes: https://bugs.gentoo.org/716034
Closes: https://bugs.gentoo.org/724934
Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
Matt Turner
2022-05-09 17:38:01 -04:00
parent 8f96aaf0b2
commit d44581b8b2
2 changed files with 39 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST gftp-2.0.19.tar.bz2 1687167 BLAKE2B b7cd5409c7dfe4672a383417554c39a848b9afa341de498eea76bd02a2099559f14d7d0ceebe13d52842c311a4b242a0d558aa017dd7062a3369a7c2c3af19a0 SHA512 59968786d66aaf6fb520f73d52ed0f8b57751a5ed222a5c65a7257628cd9addfd0ff3213206311bfd24441d7e6cc6d245d74d6687a1ad9739361da61ca078172
DIST gftp-2.9.1b.tar.xz 872308 BLAKE2B 3588321689a1c6d8e0585e0439507f774b30e05630f774d7909f32fd66c289a961602b84cde97377de47d0c63fe4cf5452ec1e0b986c578958a6080cf5814fc8 SHA512 31d0aa4d3c5adf3d9ac2c2517402f9bdcab5fb1187df521a978acf41c1997a120797056dd1ca7bedc32e0dec0ac7c06c1790e47821660277fb6572205ce0fe93

View File

@@ -0,0 +1,38 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome2
DESCRIPTION="a free multithreaded file transfer client"
SRC_URI="https://github.com/masneyb/gftp/releases/download/${PV}/${P}.tar.xz"
HOMEPAGE="https://github.com/masneyb/gftp"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="gtk ssl"
RDEPEND="
dev-libs/glib:2
sys-libs/ncurses:0=
sys-libs/readline:0
gtk? ( x11-libs/gtk+:2 )
ssl? ( dev-libs/openssl:0= )
"
DEPEND="${RDEPEND}"
BDEPEND="
sys-devel/gettext
virtual/pkgconfig
"
src_configure() {
gnome2_src_configure \
$(use_enable gtk gtkport) \
$(use_enable ssl)
}
src_install() {
gnome2_src_install
dodoc docs/USERS-GUIDE
}