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:20
Message-Id: 1515090305.a99d055eac9a39c8151393c77f474eca61948bed.voyageur@gentoo
1 commit: a99d055eac9a39c8151393c77f474eca61948bed
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 4 18:02:55 2018 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 4 18:25:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a99d055e
7
8 net-ftp/filezilla: drop old -gtk3 version
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 net-ftp/filezilla/filezilla-3.25.2-r1.ebuild | 76 ----------------------------
13 1 file changed, 76 deletions(-)
14
15 diff --git a/net-ftp/filezilla/filezilla-3.25.2-r1.ebuild b/net-ftp/filezilla/filezilla-3.25.2-r1.ebuild
16 deleted file mode 100644
17 index a39e198691d..00000000000
18 --- a/net-ftp/filezilla/filezilla-3.25.2-r1.ebuild
19 +++ /dev/null
20 @@ -1,76 +0,0 @@
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.9.1
47 - >=dev-libs/pugixml-1.7
48 - net-dns/libidn
49 - >=net-libs/gnutls-3.4.0
50 - >=x11-libs/wxGTK-3.0.2.0-r1:${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 -}