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