blob: 66fcca0aee925c07f74562075119f049a1713f19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/gftp/gftp-2.0.18-r6.ebuild,v 1.7 2007/09/25 17:01:59 dertobi123 Exp $
inherit eutils
DESCRIPTION="Gnome based FTP Client"
SRC_URI="http://www.gftp.org/${P}.tar.bz2"
HOMEPAGE="http://www.gftp.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
IUSE="gtk ssl"
RDEPEND=">=dev-libs/glib-2
sys-devel/gettext
sys-libs/ncurses
sys-libs/readline
gtk? ( >=x11-libs/gtk+-2 )
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9"
src_unpack() {
unpack ${A}
cd ${S}
# patch to allow fetching of ssh2 files
# that are read-only, see bug #91269 and upstream link.
epatch "${FILESDIR}/${P}-ssh2-read.patch"
# patch to allow for wildcard SSL certificates
epatch "${FILESDIR}/${P}-ssl-wildcardcert.patch"
# patch to not crash on IPv6 enabled hosts or on IPv4 transfer with the "ignore PASV address" function
epatch "${FILESDIR}/${P}-ipv6.patch"
# Fix issues in bug #188252
epatch "${FILESDIR}"/${P}-188252.patch
}
src_compile() {
econf $(use_enable gtk gtkport) $(use_enable ssl) || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die "install failed"
dodoc ChangeLog* README* THANKS TODO docs/USERS-GUIDE
}
|