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.6.0.2.ebuild
Date: Fri, 30 Nov 2012 16:32:38
Message-Id: 20121130163228.3427C20C65@flycatcher.gentoo.org
1 voyageur 12/11/30 16:32:28
2
3 Modified: ChangeLog
4 Added: filezilla-3.6.0.2.ebuild
5 Log:
6 Version bump, fixes problems with stalling FTP over TLS uploads, maybe finally fixing bug #431404
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
9
10 Revision Changes Path
11 1.94 net-ftp/filezilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.94&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.94&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.93&r2=1.94
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
20 retrieving revision 1.93
21 retrieving revision 1.94
22 diff -u -r1.93 -r1.94
23 --- ChangeLog 19 Nov 2012 09:48:18 -0000 1.93
24 +++ ChangeLog 30 Nov 2012 16:32:28 -0000 1.94
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-ftp/filezilla
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.93 2012/11/19 09:48:18 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.94 2012/11/30 16:32:28 voyageur Exp $
30 +
31 +*filezilla-3.6.0.2 (30 Nov 2012)
32 +
33 + 30 Nov 2012; Bernard Cafarelli <voyageur@g.o>
34 + +filezilla-3.6.0.2.ebuild:
35 + Version bump, fixes problems with stalling FTP over TLS uploads, maybe
36 + finally fixing bug #431404
37
38 *filezilla-3.6.0.1 (19 Nov 2012)
39
40
41
42
43 1.1 net-ftp/filezilla/filezilla-3.6.0.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.6.0.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.6.0.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: filezilla-3.6.0.2.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/filezilla-3.6.0.2.ebuild,v 1.1 2012/11/30 16:32:28 voyageur Exp $
53
54 EAPI=5
55
56 WX_GTK_VER="2.8"
57
58 inherit autotools eutils flag-o-matic multilib wxwidgets
59
60 MY_PV=${PV/_/-}
61 MY_P="FileZilla_${MY_PV}"
62
63 DESCRIPTION="FTP client with lots of useful features and an intuitive interface"
64 HOMEPAGE="http://filezilla-project.org/"
65 SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tar.bz2"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
70 IUSE="dbus nls test"
71
72 RDEPEND=">=app-admin/eselect-wxwidgets-0.7-r1
73 >=dev-db/sqlite-3.7
74 >=dev-libs/tinyxml-2.6.1-r1[stl]
75 net-dns/libidn
76 >=net-libs/gnutls-3.1
77 >=x11-libs/wxGTK-2.8.12:2.8[X]
78 x11-misc/xdg-utils
79 dbus? ( sys-apps/dbus )"
80 DEPEND="${RDEPEND}
81 virtual/pkgconfig
82 >=sys-devel/libtool-1.4
83 nls? ( >=sys-devel/gettext-0.11 )
84 test? ( dev-util/cppunit )"
85
86 S="${WORKDIR}"/${PN}-${MY_PV}
87
88 src_prepare() {
89 epatch "${FILESDIR}"/${PN}-3.3.5.1-debug.patch
90 append-cppflags -DTIXML_USE_STL
91 eautoreconf
92 }
93
94 src_configure() {
95 econf $(use_with dbus) $(use_enable nls locales) \
96 --with-tinyxml=system \
97 --disable-autoupdatecheck
98 }
99
100 src_install() {
101 emake DESTDIR="${D}" install
102
103 doicon src/interface/resources/48x48/${PN}.png
104
105 dodoc AUTHORS ChangeLog NEWS
106 }