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.5.3.ebuild ChangeLog
Date: Mon, 09 Jan 2012 18:08:33
Message-Id: 20120109180824.7B8172004B@flycatcher.gentoo.org
1 voyageur 12/01/09 18:08:24
2
3 Modified: ChangeLog
4 Added: filezilla-3.5.3.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.84 net-ftp/filezilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.84&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.84&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.83&r2=1.84
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
20 retrieving revision 1.83
21 retrieving revision 1.84
22 diff -u -r1.83 -r1.84
23 --- ChangeLog 9 Nov 2011 16:56:46 -0000 1.83
24 +++ ChangeLog 9 Jan 2012 18:08:24 -0000 1.84
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-ftp/filezilla
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.83 2011/11/09 16:56:46 voyageur Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.84 2012/01/09 18:08:24 voyageur Exp $
31 +
32 +*filezilla-3.5.3 (09 Jan 2012)
33 +
34 + 09 Jan 2012; Bernard Cafarelli <voyageur@g.o> +filezilla-3.5.3.ebuild:
35 + Version bump
36
37 *filezilla-3.5.2 (09 Nov 2011)
38
39
40
41
42 1.1 net-ftp/filezilla/filezilla-3.5.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.5.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.5.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: filezilla-3.5.3.ebuild
48 ===================================================================
49 # Copyright 1999-2012 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.5.3.ebuild,v 1.1 2012/01/09 18:08:24 voyageur Exp $
52
53 EAPI=2
54
55 WX_GTK_VER="2.8"
56
57 inherit autotools eutils flag-o-matic 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=">=app-admin/eselect-wxwidgets-0.7-r1
72 >=dev-db/sqlite-3.7
73 >=dev-libs/tinyxml-2.6.1-r1[stl]
74 net-dns/libidn
75 >=net-libs/gnutls-2.8.3
76 >=x11-libs/wxGTK-2.8.9:2.8[X]
77 x11-misc/xdg-utils
78 dbus? ( sys-apps/dbus )"
79 DEPEND="${RDEPEND}
80 dev-util/pkgconfig
81 >=sys-devel/libtool-1.4
82 nls? ( >=sys-devel/gettext-0.11 )
83 test? ( dev-util/cppunit )"
84
85 S="${WORKDIR}"/${PN}-${MY_PV}
86
87 src_prepare() {
88 epatch "${FILESDIR}"/${PN}-3.3.5.1-debug.patch
89 append-flags -DTIXML_USE_STL
90 eautoreconf
91 }
92
93 src_configure() {
94 econf $(use_with dbus) $(use_enable nls locales) \
95 --with-tinyxml=system \
96 --disable-autoupdatecheck || die "econf failed"
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die "emake install failed"
101
102 doicon src/interface/resources/48x48/${PN}.png || die "doicon failed"
103
104 dodoc AUTHORS ChangeLog NEWS
105 }