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.11.0.2.ebuild ChangeLog
Date: Wed, 03 Jun 2015 11:39:41
Message-Id: 20150603113934.EF2ACA1C@oystercatcher.gentoo.org
1 voyageur 15/06/03 11:39:34
2
3 Modified: ChangeLog
4 Added: filezilla-3.11.0.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 00F7AB331B0F097F)
9
10 Revision Changes Path
11 1.126 net-ftp/filezilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.126&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.126&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.125&r2=1.126
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
20 retrieving revision 1.125
21 retrieving revision 1.126
22 diff -u -r1.125 -r1.126
23 --- ChangeLog 22 May 2015 15:45:33 -0000 1.125
24 +++ ChangeLog 3 Jun 2015 11:39:34 -0000 1.126
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-ftp/filezilla
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.125 2015/05/22 15:45:33 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.126 2015/06/03 11:39:34 voyageur Exp $
30 +
31 +*filezilla-3.11.0.2 (03 Jun 2015)
32 +
33 + 03 Jun 2015; Bernard Cafarelli <voyageur@g.o>
34 + +filezilla-3.11.0.2.ebuild:
35 + Version bump
36
37 *filezilla-3.11.0.1 (22 May 2015)
38
39
40
41
42 1.1 net-ftp/filezilla/filezilla-3.11.0.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.11.0.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.11.0.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: filezilla-3.11.0.2.ebuild
48 ===================================================================
49 # Copyright 1999-2015 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.11.0.2.ebuild,v 1.1 2015/06/03 11:39:34 voyageur Exp $
52
53 EAPI=5
54
55 WX_GTK_VER="3.0"
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 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
69 IUSE="aqua dbus nls test"
70
71 RDEPEND=">=app-eselect/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-3.1.12
76 aqua? ( >=x11-libs/wxGTK-3.0.2.0-r1:3.0[aqua] )
77 !aqua? ( >=x11-libs/wxGTK-3.0.2.0-r1:3.0[X] x11-misc/xdg-utils )
78 dbus? ( sys-apps/dbus )"
79 DEPEND="${RDEPEND}
80 virtual/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.10.2-debug.patch
89 append-cppflags -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
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install
101
102 doicon src/interface/resources/48x48/${PN}.png
103
104 dodoc AUTHORS ChangeLog NEWS
105
106 if use aqua ; then
107 cat > "${T}/${PN}" <<-EOF
108 #!${EPREFIX}/bin/bash
109 open "${EPREFIX}"/Applications/FileZilla.app
110 EOF
111 rm "${ED}/usr/bin/${PN}" || die
112 dobin "${T}/${PN}"
113 insinto /Applications
114 doins -r "${S}"/FileZilla.app
115 fi
116 }