Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/filezilla: ChangeLog filezilla-3.2.6.ebuild
Date: Sun, 28 Jun 2009 18:44:57
Message-Id: E1MKzN1-0001C2-4F@stork.gentoo.org
1 voyageur 09/06/28 18:44:55
2
3 Modified: ChangeLog
4 Added: filezilla-3.2.6.ebuild
5 Log:
6 Version bump, display complete certificate chain in FTPS, adds option for stateless local file editing, bugfixes
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.47 net-ftp/filezilla/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.47&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.47&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.46&r2=1.47
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
19 retrieving revision 1.46
20 retrieving revision 1.47
21 diff -u -r1.46 -r1.47
22 --- ChangeLog 24 Jun 2009 14:30:32 -0000 1.46
23 +++ ChangeLog 28 Jun 2009 18:44:55 -0000 1.47
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-ftp/filezilla
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.46 2009/06/24 14:30:32 voyageur Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.47 2009/06/28 18:44:55 voyageur Exp $
29 +
30 +*filezilla-3.2.6 (28 Jun 2009)
31 +
32 + 28 Jun 2009; Bernard Cafarelli <voyageur@g.o>
33 + +filezilla-3.2.6.ebuild:
34 + Version bump, display complete certificate chain in FTPS, adds option for
35 + stateless local file editing, bugfixes
36
37 24 Jun 2009; Bernard Cafarelli <voyageur@g.o>
38 filezilla-3.2.5.ebuild:
39
40
41
42 1.1 net-ftp/filezilla/filezilla-3.2.6.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/filezilla/filezilla-3.2.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/filezilla/filezilla-3.2.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: filezilla-3.2.6.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/filezilla-3.2.6.ebuild,v 1.1 2009/06/28 18:44:55 voyageur Exp $
52
53 EAPI=2
54
55 WX_GTK_VER="2.8"
56
57 inherit eutils multilib wxwidgets
58
59 MY_PV=${PV/_/-}
60 MY_P="FileZilla_${MY_PV}"
61
62 DESCRIPTION="FTP client with lots of useful features and an intuitive interface"
63 HOMEPAGE="http://filezilla-project.org/"
64 SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tar.bz2"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
69 IUSE="dbus nls test"
70
71 RDEPEND="net-dns/libidn
72 >=x11-libs/wxGTK-2.8.9
73 >=app-admin/eselect-wxwidgets-0.7-r1
74 dbus? ( sys-apps/dbus )"
75 DEPEND="${RDEPEND}
76 >=sys-devel/libtool-1.4
77 >=net-libs/gnutls-2.0.4
78 nls? ( >=sys-devel/gettext-0.11 )
79 test? ( dev-util/cppunit )"
80
81 S="${WORKDIR}"/${PN}-${MY_PV}
82
83 src_configure() {
84 econf $(use_with dbus) $(use_enable nls locales) \
85 --disable-autoupdatecheck || die "econf failed"
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "emake install failed"
90
91 doicon src/interface/resources/48x48/${PN}.png || die "doicon failed"
92
93 dodoc AUTHORS ChangeLog NEWS
94 }