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