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.3.4.1.ebuild ChangeLog
Date: Thu, 19 Aug 2010 19:14:43
Message-Id: 20100819191439.7B7952004C@flycatcher.gentoo.org
1 voyageur 10/08/19 19:14:39
2
3 Modified: ChangeLog
4 Added: filezilla-3.3.4.1.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.69 net-ftp/filezilla/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.69&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.69&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.68&r2=1.69
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
19 retrieving revision 1.68
20 retrieving revision 1.69
21 diff -u -r1.68 -r1.69
22 --- ChangeLog 19 Aug 2010 19:00:02 -0000 1.68
23 +++ ChangeLog 19 Aug 2010 19:14:39 -0000 1.69
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-ftp/filezilla
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.68 2010/08/19 19:00:02 voyageur Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.69 2010/08/19 19:14:39 voyageur Exp $
29 +
30 +*filezilla-3.3.4.1 (19 Aug 2010)
31 +
32 + 19 Aug 2010; Bernard Cafarelli <voyageur@g.o>
33 + +filezilla-3.3.4.1.ebuild:
34 + Version bump
35
36 19 Aug 2010; Bernard Cafarelli <voyageur@g.o>
37 -files/filezilla-3.2.4.1-gnutls-2.7.patch, filezilla-3.3.0.1.ebuild,
38
39
40
41 1.1 net-ftp/filezilla/filezilla-3.3.4.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.3.4.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.3.4.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: filezilla-3.3.4.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.3.4.1.ebuild,v 1.1 2010/08/19 19:14:39 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=">=app-admin/eselect-wxwidgets-0.7-r1
71 net-dns/libidn
72 >=net-libs/gnutls-2.8.3
73 >=x11-libs/wxGTK-2.8.9:2.8[X]
74 dbus? ( sys-apps/dbus )"
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig
77 >=sys-devel/libtool-1.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 --with-tinyxml=builtin \
86 --disable-autoupdatecheck || die "econf failed"
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die "emake install failed"
91
92 doicon src/interface/resources/48x48/${PN}.png || die "doicon failed"
93
94 dodoc AUTHORS ChangeLog NEWS
95 }