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.8.0.ebuild
Date: Fri, 28 Mar 2014 16:53:13
Message-Id: 20140328165305.E641120051@flycatcher.gentoo.org
1 voyageur 14/03/28 16:53:05
2
3 Modified: ChangeLog
4 Added: filezilla-3.8.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
9
10 Revision Changes Path
11 1.115 net-ftp/filezilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.115&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?rev=1.115&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/ChangeLog?r1=1.114&r2=1.115
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v
20 retrieving revision 1.114
21 retrieving revision 1.115
22 diff -u -r1.114 -r1.115
23 --- ChangeLog 12 Feb 2014 09:02:12 -0000 1.114
24 +++ ChangeLog 28 Mar 2014 16:53:05 -0000 1.115
25 @@ -1,6 +1,11 @@
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.114 2014/02/12 09:02:12 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.115 2014/03/28 16:53:05 voyageur Exp $
30 +
31 +*filezilla-3.8.0 (28 Mar 2014)
32 +
33 + 28 Mar 2014; Bernard Cafarelli <voyageur@g.o> +filezilla-3.8.0.ebuild:
34 + Version bump
35
36 *filezilla-3.7.4.1 (12 Feb 2014)
37
38
39
40
41 1.1 net-ftp/filezilla/filezilla-3.8.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.8.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-ftp/filezilla/filezilla-3.8.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: filezilla-3.8.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.8.0.ebuild,v 1.1 2014/03/28 16:53:05 voyageur Exp $
51
52 EAPI=5
53
54 WX_GTK_VER="2.8"
55
56 inherit autotools eutils flag-o-matic 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 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
68 IUSE="aqua dbus nls test"
69
70 RDEPEND=">=app-admin/eselect-wxwidgets-0.7-r1
71 >=dev-db/sqlite-3.7
72 >=dev-libs/tinyxml-2.6.1-r1[stl]
73 net-dns/libidn
74 >=net-libs/gnutls-2.8.3
75 aqua? ( >=x11-libs/wxGTK-2.8.12:2.8[aqua] )
76 !aqua? ( >=x11-libs/wxGTK-2.8.12:2.8[X] x11-misc/xdg-utils )
77 dbus? ( sys-apps/dbus )"
78 DEPEND="${RDEPEND}
79 virtual/pkgconfig
80 >=sys-devel/libtool-1.4
81 nls? ( >=sys-devel/gettext-0.11 )
82 test? ( dev-util/cppunit )"
83
84 S="${WORKDIR}"/${PN}-${MY_PV}
85
86 src_prepare() {
87 epatch "${FILESDIR}"/${PN}-3.7.4-debug.patch
88 append-cppflags -DTIXML_USE_STL
89 eautoreconf
90 }
91
92 src_configure() {
93 econf $(use_with dbus) $(use_enable nls locales) \
94 --with-tinyxml=system \
95 --disable-autoupdatecheck
96 }
97
98 src_install() {
99 emake DESTDIR="${D}" install
100
101 doicon src/interface/resources/48x48/${PN}.png
102
103 dodoc AUTHORS ChangeLog NEWS
104
105 if use aqua ; then
106 cat > "${T}/${PN}" <<-EOF
107 #!${EPREFIX}/bin/bash
108 open "${EPREFIX}"/Applications/FileZilla.app
109 EOF
110 rm "${ED}/usr/bin/${PN}" || die
111 dobin "${T}/${PN}"
112 insinto /Applications
113 doins -r "${S}"/FileZilla.app
114 fi
115 }