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.7.4.ebuild
Date: Mon, 10 Feb 2014 00:06:57
Message-Id: 20140210000652.8B6772004C@flycatcher.gentoo.org
1 voyageur 14/02/10 00:06:52
2
3 Modified: ChangeLog
4 Added: filezilla-3.7.4.ebuild
5 Log:
6 Version bump, adds SOCKS4 support
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
9
10 Revision Changes Path
11 1.113 net-ftp/filezilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.113&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.113&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.112&r2=1.113
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
20 retrieving revision 1.112
21 retrieving revision 1.113
22 diff -u -r1.112 -r1.113
23 --- ChangeLog 21 Sep 2013 16:18:46 -0000 1.112
24 +++ ChangeLog 10 Feb 2014 00:06:52 -0000 1.113
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-ftp/filezilla
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.112 2013/09/21 16:18:46 grobian Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.113 2014/02/10 00:06:52 voyageur Exp $
31 +
32 +*filezilla-3.7.4 (10 Feb 2014)
33 +
34 + 10 Feb 2014; Bernard Cafarelli <voyageur@g.o> +filezilla-3.7.4.ebuild,
35 + +files/filezilla-3.7.4-debug.patch:
36 + Version bump, adds SOCKS4 support
37
38 21 Sep 2013; Fabian Groffen <grobian@g.o> filezilla-3.7.3.ebuild:
39 Fix doins call, .app is bundle (directory)
40
41
42
43 1.1 net-ftp/filezilla/filezilla-3.7.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.7.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.7.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: filezilla-3.7.4.ebuild
49 ===================================================================
50 # Copyright 1999-2014 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.7.4.ebuild,v 1.1 2014/02/10 00:06:52 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 ~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-2.8.3
77 aqua? ( >=x11-libs/wxGTK-2.8.12:2.8[aqua] )
78 !aqua? ( >=x11-libs/wxGTK-2.8.12:2.8[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 }