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.10.1.1.ebuild ChangeLog
Date: Tue, 03 Feb 2015 00:09:04
Message-Id: 20150203000859.A691C10ECE@oystercatcher.gentoo.org
1 voyageur 15/02/03 00:08:59
2
3 Modified: ChangeLog
4 Added: filezilla-3.10.1.1.ebuild
5 Log:
6 Version bump, bug #538530
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
9
10 Revision Changes Path
11 1.120 net-ftp/filezilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.120&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.120&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.119&r2=1.120
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
20 retrieving revision 1.119
21 retrieving revision 1.120
22 diff -u -r1.119 -r1.120
23 --- ChangeLog 20 Oct 2014 08:54:22 -0000 1.119
24 +++ ChangeLog 3 Feb 2015 00:08:59 -0000 1.120
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-ftp/filezilla
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.119 2014/10/20 08:54:22 voyageur Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.120 2015/02/03 00:08:59 voyageur Exp $
31 +
32 +*filezilla-3.10.1.1 (02 Feb 2015)
33 +
34 + 02 Feb 2015; Bernard Cafarelli <voyageur@g.o>
35 + +filezilla-3.10.1.1.ebuild:
36 + Version bump, bug #538530
37
38 *filezilla-3.9.0.6 (20 Oct 2014)
39
40
41
42
43 1.1 net-ftp/filezilla/filezilla-3.10.1.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.10.1.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.10.1.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: filezilla-3.10.1.1.ebuild
49 ===================================================================
50 # Copyright 1999-2015 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.10.1.1.ebuild,v 1.1 2015/02/03 00:08:59 voyageur Exp $
53
54 EAPI=5
55
56 WX_GTK_VER="3.0"
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 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
70 IUSE="aqua 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.12
77 aqua? ( >=x11-libs/wxGTK-3.0.2.0-r1:3.0[aqua] )
78 !aqua? ( >=x11-libs/wxGTK-3.0.2.0-r1:3.0[X] 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.7.4-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
107 if use aqua ; then
108 cat > "${T}/${PN}" <<-EOF
109 #!${EPREFIX}/bin/bash
110 open "${EPREFIX}"/Applications/FileZilla.app
111 EOF
112 rm "${ED}/usr/bin/${PN}" || die
113 dobin "${T}/${PN}"
114 insinto /Applications
115 doins -r "${S}"/FileZilla.app
116 fi
117 }