Gentoo Archives: gentoo-commits

From: "Daniel Gryniewicz (dang)" <dang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/gftp: ChangeLog gftp-2.0.18-r6.ebuild
Date: Fri, 21 Sep 2007 20:16:57
Message-Id: E1IYoo2-0004tN-NE@stork.gentoo.org
1 dang 07/09/21 20:08:54
2
3 Modified: ChangeLog
4 Added: gftp-2.0.18-r6.ebuild
5 Log:
6 Bump to 2.0.18-r6
7 Fix for issues in bug #188252
8
9 (Portage version: 2.1.3.9)
10
11 Revision Changes Path
12 1.58 net-ftp/gftp/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/gftp/ChangeLog?rev=1.58&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/gftp/ChangeLog?rev=1.58&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/gftp/ChangeLog?r1=1.57&r2=1.58
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-ftp/gftp/ChangeLog,v
21 retrieving revision 1.57
22 retrieving revision 1.58
23 diff -u -r1.57 -r1.58
24 --- ChangeLog 14 Jan 2007 20:05:42 -0000 1.57
25 +++ ChangeLog 21 Sep 2007 20:08:54 -0000 1.58
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-ftp/gftp
28 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/gftp/ChangeLog,v 1.57 2007/01/14 20:05:42 leio Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/gftp/ChangeLog,v 1.58 2007/09/21 20:08:54 dang Exp $
31 +
32 +*gftp-2.0.18-r6 (21 Sep 2007)
33 +
34 + 21 Sep 2007; Daniel Gryniewicz <dang@g.o>
35 + +files/gftp-2.0.18-188252.patch, +gftp-2.0.18-r6.ebuild:
36 + Bump to 2.0.18-r6
37 + Fix for issues in bug #188252
38
39 *gftp-2.0.18-r5 (14 Jan 2007)
40
41
42
43
44 1.1 net-ftp/gftp/gftp-2.0.18-r6.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/gftp/gftp-2.0.18-r6.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/gftp/gftp-2.0.18-r6.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gftp-2.0.18-r6.ebuild
50 ===================================================================
51 # Copyright 1999-2007 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-ftp/gftp/gftp-2.0.18-r6.ebuild,v 1.1 2007/09/21 20:08:54 dang Exp $
54
55 inherit eutils
56
57 DESCRIPTION="Gnome based FTP Client"
58 SRC_URI="http://www.gftp.org/${P}.tar.bz2"
59 HOMEPAGE="http://www.gftp.org"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="gtk ssl"
65
66 RDEPEND=">=dev-libs/glib-2
67 sys-devel/gettext
68 sys-libs/ncurses
69 sys-libs/readline
70 gtk? ( >=x11-libs/gtk+-2 )
71 ssl? ( dev-libs/openssl )"
72 DEPEND="${RDEPEND}
73 >=dev-util/pkgconfig-0.9"
74
75 src_unpack() {
76 unpack ${A}
77 cd ${S}
78
79 # patch to allow fetching of ssh2 files
80 # that are read-only, see bug #91269 and upstream link.
81 epatch "${FILESDIR}/${P}-ssh2-read.patch"
82 # patch to allow for wildcard SSL certificates
83 epatch "${FILESDIR}/${P}-ssl-wildcardcert.patch"
84 # patch to not crash on IPv6 enabled hosts or on IPv4 transfer with the "ignore PASV address" function
85 epatch "${FILESDIR}/${P}-ipv6.patch"
86 # Fix issues in bug #188252
87 epatch "${FILESDIR}"/${P}-188252.patch
88
89 }
90
91 src_compile() {
92 econf $(use_enable gtk gtkport) $(use_enable ssl) || die "configure failed"
93 emake || die "make failed"
94 }
95
96 src_install() {
97 make DESTDIR=${D} install || die "install failed"
98 dodoc ChangeLog* README* THANKS TODO docs/USERS-GUIDE
99 }
100
101
102
103 --
104 gentoo-commits@g.o mailing list