Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/filezilla/
Date: Thu, 04 Jan 2018 18:34:21
Message-Id: 1515090306.0ffabd8a829678d345536111cb228c5afbb89899.voyageur@gentoo
1 commit: 0ffabd8a829678d345536111cb228c5afbb89899
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 18:11:34 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 18:25:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ffabd8a
7
8 net-ftp/filezilla: masked gtk3 3.29.0 version
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 net-ftp/filezilla/filezilla-3.29.0-r300.ebuild | 76 ++++++++++++++++++++++++++
13 1 file changed, 76 insertions(+)
14
15 diff --git a/net-ftp/filezilla/filezilla-3.29.0-r300.ebuild b/net-ftp/filezilla/filezilla-3.29.0-r300.ebuild
16 new file mode 100644
17 index 00000000000..e8d4a166ca0
18 --- /dev/null
19 +++ b/net-ftp/filezilla/filezilla-3.29.0-r300.ebuild
20 @@ -0,0 +1,76 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +WX_GTK_VER="3.0-gtk3"
27 +
28 +inherit autotools eutils flag-o-matic gnome2-utils multilib wxwidgets
29 +
30 +MY_PV=${PV/_/-}
31 +MY_P="FileZilla_${MY_PV}"
32 +
33 +DESCRIPTION="FTP client with lots of useful features and an intuitive interface"
34 +HOMEPAGE="http://filezilla-project.org/"
35 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tar.bz2"
36 +
37 +LICENSE="GPL-2"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
40 +IUSE="dbus nls test"
41 +
42 +# pugixml 1.7 minimal dependency is for c++11 proper configuration
43 +RDEPEND=">=app-eselect/eselect-wxwidgets-0.7-r1
44 + >=dev-libs/nettle-3.1:=
45 + >=dev-db/sqlite-3.7
46 + >=dev-libs/libfilezilla-0.10.0
47 + >=dev-libs/pugixml-1.7
48 + net-dns/libidn
49 + >=net-libs/gnutls-3.4.0
50 + >=x11-libs/wxGTK-3.0.3:${WX_GTK_VER}[X]
51 + x11-misc/xdg-utils
52 + dbus? ( sys-apps/dbus )"
53 +DEPEND="${RDEPEND}
54 + virtual/pkgconfig
55 + >=sys-devel/libtool-1.4
56 + nls? ( >=sys-devel/gettext-0.11 )
57 + test? ( dev-util/cppunit )"
58 +
59 +S="${WORKDIR}"/${PN}-${MY_PV}
60 +
61 +DOCS=(AUTHORS ChangeLog NEWS )
62 +
63 +PATCHES=(
64 + "${FILESDIR}"/${PN}-3.22.1-debug.patch
65 +)
66 +
67 +pkg_pretend() {
68 + if [[ ${MERGE_TYPE} != binary ]]; then
69 + if ! test-flag-CXX -std=c++14; then
70 + eerror "${P} requires C++14-capable C++ compiler. Your current compiler"
71 + eerror "does not seem to support -std=c++14 option. Please upgrade your compiler"
72 + eerror "to gcc-4.9 or an equivalent version supporting C++14."
73 + die "Currently active compiler does not support -std=c++14"
74 + fi
75 + fi
76 +}
77 +
78 +src_prepare() {
79 + setup-wxwidgets
80 + default
81 + eautoreconf
82 +}
83 +
84 +src_configure() {
85 + econf $(use_with dbus) $(use_enable nls locales) \
86 + --with-pugixml=system \
87 + --disable-autoupdatecheck
88 +}
89 +
90 +pkg_postinst() {
91 + gnome2_icon_cache_update
92 +}
93 +
94 +pkg_postrm() {
95 + gnome2_icon_cache_update
96 +}