mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
42 lines
829 B
Bash
42 lines
829 B
Bash
# Copyright 1999-2025 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
|
|
"
|
|
|
|
# Override gnome.org.eclass's S= (bug #904064)
|
|
S="${WORKDIR}/${P}"
|
|
|
|
src_configure() {
|
|
gnome2_src_configure \
|
|
$(use_enable gtk gtkport) \
|
|
$(use_enable ssl)
|
|
}
|
|
|
|
src_install() {
|
|
gnome2_src_install
|
|
dodoc docs/USERS-GUIDE
|
|
}
|