net-ftp/filezilla: Bump to version 3.18.0

Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
Lars Wendler
2016-05-27 23:28:12 +02:00
parent 9d6aca4816
commit c6fe32cf61
2 changed files with 70 additions and 0 deletions

View File

@@ -4,3 +4,4 @@ DIST FileZilla_3.15.0.2_src.tar.bz2 4404751 SHA256 333c46709506b2777047556aa9ee7
DIST FileZilla_3.16.1_src.tar.bz2 4406617 SHA256 3b046f854cea17f9c14d6a12aa5d2e027908c6535f44a068cfed5da9eddddda8 SHA512 0b8098e5b48254c92a0954ad43b4fad168d98cf095f78fe7e030a6287117d5000f8e499e09f356021f2bbd32c5b9637a86016ff8d444cc1ecaede5c716ff752c WHIRLPOOL f5a36bc5fe003de1b853a349961398efea31137ff2384e68f862fcb1e7d2a378f1c0dbcb0c28eeb24b76332a1f51ff0538e5ccca82ba9092c8e1be68e3fbd53e
DIST FileZilla_3.17.0.1_src.tar.bz2 4399744 SHA256 47914f9c8935e5497871642540b250a09b7e4ea4f6944d37add20fed2d50232a SHA512 429c14a1df5dcb7b0b6e9881800b396d9b2a5f97549444193c7a72b34dde22431c62d15c5833db9a91ca7e590ad4a9d5e73cd7143f3ddd47dea85f357a0b2585 WHIRLPOOL 694ffddf9dc2c2f2ad67acaa36be8ada3b2ef1199cc05b68061b86886a7dbfbba129317cf7325e3ae0b1a5b1a87644b551a90d022cf83b45b06d78e13fa6d3b4
DIST FileZilla_3.17.0_src.tar.bz2 4399584 SHA256 3763cd5cf833b43d9d3da763bfea6561cabf6a63e9fc698f02d101b82ffe656d SHA512 05f0f1bc2a457cdbe19ecb3b56a12ea709214571fdb24d5d428ca0b21cecfd038826da608393f7383ba6f47c82ca0c3a9826f359295cb7229ffe1532c1b6e7bd WHIRLPOOL 3dbd832fac6c99042aa6e0ac5f0b4f200210dcccfa42aabdfaa3f485b8c2648c6557f171c2ccee68cef220812d6a3137b486a92315dbb7f09c43b0432cb04316
DIST FileZilla_3.18.0_src.tar.bz2 4398706 SHA256 37646c7198b9a98806069a32d785c58f51695589cec0d86812251364445fd7e2 SHA512 3d0e2efa89b892d4f8953f3304485c854114dfb6ee1d8ff42a86fa6422fd04484c81f81b8b823130ca5de89ab4022e7ae92de3881676c0f067b05e5dbd137536 WHIRLPOOL 7104650a0d6f333be63e05e97e5dcf45b77678f07e03757cd463dc4162fae6d4ef25e773c1da966d554ac7fd0ceb1ce6fa1680b861d32d958e5848b3bb82e2fe

View File

@@ -0,0 +1,69 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
WX_GTK_VER="3.0"
inherit autotools eutils flag-o-matic multilib wxwidgets
MY_PV=${PV/_/-}
MY_P="FileZilla_${MY_PV}"
DESCRIPTION="FTP client with lots of useful features and an intuitive interface"
HOMEPAGE="http://filezilla-project.org/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}_src.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="dbus nls test"
# pugixml 1.7 minimal dependency is for c++11 proper configuration
RDEPEND=">=app-eselect/eselect-wxwidgets-0.7-r1
>=dev-libs/nettle-3.1:=
>=dev-db/sqlite-3.7
>=dev-libs/libfilezilla-0.5.2
>=dev-libs/pugixml-1.7
net-dns/libidn
>=net-libs/gnutls-3.1.12
>=x11-libs/wxGTK-3.0.2.0-r1:3.0[X] x11-misc/xdg-utils
dbus? ( sys-apps/dbus )"
DEPEND="${RDEPEND}
virtual/pkgconfig
>=sys-devel/libtool-1.4
nls? ( >=sys-devel/gettext-0.11 )
test? ( dev-util/cppunit )"
S="${WORKDIR}"/${PN}-${MY_PV}
pkg_pretend() {
if [[ ${MERGE_TYPE} != binary ]]; then
if ! test-flag-CXX -std=c++14; then
eerror "${P} requires C++14-capable C++ compiler. Your current compiler"
eerror "does not seem to support -std=c++14 option. Please upgrade your compiler"
eerror "to gcc-4.9 or an equivalent version supporting C++14."
die "Currently active compiler does not support -std=c++14"
fi
fi
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-3.10.2-debug.patch
eautoreconf
}
src_configure() {
econf $(use_with dbus) $(use_enable nls locales) \
--with-pugixml=system \
--disable-autoupdatecheck
}
src_install() {
emake DESTDIR="${D}" install
doicon src/interface/resources/48x48/${PN}.png
dodoc AUTHORS ChangeLog NEWS
}