summaryrefslogtreecommitdiff
path: root/net-ftp
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-08-23 03:05:11 -0500
committerroot <root@alpha.trunkmasters.com>2026-08-23 03:05:11 -0500
commit3ac897312b1982e0855eb4251695765d57976b18 (patch)
treede724eaf058f93ccde102686c5cfa892db689bcc /net-ftp
parentc114e634dd0a3dc03826f3462610f6304ae294a8 (diff)
downloadbaldeagleos-repo-3ac897312b1982e0855eb4251695765d57976b18.tar.gz
baldeagleos-repo-3ac897312b1982e0855eb4251695765d57976b18.tar.xz
baldeagleos-repo-3ac897312b1982e0855eb4251695765d57976b18.zip
Adding metadata
Diffstat (limited to 'net-ftp')
-rw-r--r--net-ftp/filezilla/Manifest1
-rw-r--r--net-ftp/filezilla/filezilla-3.71.0.ebuild78
2 files changed, 79 insertions, 0 deletions
diff --git a/net-ftp/filezilla/Manifest b/net-ftp/filezilla/Manifest
index c3cbbd88c63f..eb6116a33d6c 100644
--- a/net-ftp/filezilla/Manifest
+++ b/net-ftp/filezilla/Manifest
@@ -3,3 +3,4 @@ DIST FileZilla_3.69.6_src.tar.xz 4166148 BLAKE2B 7e2c229f688879a773f7b45ce530eff
DIST FileZilla_3.70.4_src.tar.xz 3564240 BLAKE2B d4ef89ee55bd1f3e4605fc3e923a1d52ed76b59f78639f30f1e0d6343857db68188316033cf4d09cea8decdd713e396971d2b714ff3f36ec1dc16bbb4b928f09 SHA512 26f95f28fd0c8687ab35cea975d6994a9c61b3fed542ae406ce945b41db43db83858e8341968c44babebebcc9c6b98719e1b3f7671aca6060e087065b548147a
DIST FileZilla_3.70.5_src.tar.xz 3566656 BLAKE2B fc64a73c4512955a6a75529eb708d1e62a49c51dc00613a996eab6c5baa3156a3f11617e334d11b748e3100211ce5034a574cdffad2405be89d4879e487a6352 SHA512 09e7b924d0aa5ebdc078b2ba0ce579a229612be8a4b46581bc9688825c6be2fac2897f9041c88e6710fb08873f13691dff30bd607e56aca79758897fb7494296
DIST FileZilla_3.70.6_src.tar.xz 3577776 BLAKE2B 9024f57074c4d2bcf778f69701ed786ce1ff72c0c294bca87a893d66d6e848056aec007c2150c675c09079c3f07bf16e2fe706da00216c068205d597da2ac492 SHA512 22c8315adc4ba43868c2b0d4fdfc49ff063e3fd4817907cc5f53aa3837158ca58fd516280db406699daed5b07f16d52bc47f7034f6c32252063bec4316f8a154
+DIST FileZilla_3.71.0_src.tar.xz 3582360 BLAKE2B 3ab47bd49e84e51653137c3b4666d6f7de185e59ebc65172ef914ceb3f2d2232a11b6e349e92d09999739e094df9dc29a98365bbafe6e4ae27c71db31b085635 SHA512 91051b16fb871b2fcf169db908a7a136d90d79b1cb00adfd87d1c52836d52be0014119d4dd206c533f5ec8560f821ce5c00335c2f36ba404ba42bd545a1d87ae
diff --git a/net-ftp/filezilla/filezilla-3.71.0.ebuild b/net-ftp/filezilla/filezilla-3.71.0.ebuild
new file mode 100644
index 000000000000..79a41581cc9f
--- /dev/null
+++ b/net-ftp/filezilla/filezilla-3.71.0.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+WX_GTK_VER="3.2-gtk3"
+
+inherit autotools flag-o-matic wxwidgets xdg
+
+MY_PV="${PV/_/-}"
+MY_P="FileZilla_${MY_PV}"
+
+DESCRIPTION="FTP client with lots of useful features and an intuitive interface"
+HOMEPAGE="https://filezilla-project.org/"
+# Broken URL behind CDN
+SRC_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}/${MY_P}_src.tar.xz"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="cpu_flags_x86_sse2 dbus nls test"
+RESTRICT="!test? ( test )"
+
+# pugixml 1.7 minimal dependency is for c++11 proper configuration
+RDEPEND="
+ >=dev-libs/nettle-3.1:=
+ >=dev-db/sqlite-3.7
+ >=dev-libs/boost-1.76.0:=
+ >=dev-libs/libfilezilla-0.57.0:=
+ >=dev-libs/pugixml-1.7
+ >=net-libs/fzssh-1.4.0:=
+ >=net-libs/gnutls-3.5.7
+ x11-libs/wxGTK:${WX_GTK_VER}=[X]
+ x11-misc/xdg-utils
+ dbus? ( sys-apps/dbus )"
+DEPEND="${RDEPEND}
+ test? ( >=dev-util/cppunit-1.13.0 )"
+BDEPEND="
+ virtual/pkgconfig
+ >=dev-build/libtool-1.4
+ nls? ( >=sys-devel/gettext-0.11 )"
+
+PATCHES=(
+ "${FILESDIR}"/${PN}-3.22.1-debug.patch
+ "${FILESDIR}"/${PN}-3.47.0-metainfo.patch
+ "${FILESDIR}"/${PN}-3.47.0-disable-shellext_conf.patch
+ "${FILESDIR}"/${PN}-3.70.4-slibtool.patch
+ "${FILESDIR}"/${PN}-3.60.1-desktop.patch
+)
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ if use x86 && ! use cpu_flags_x86_sse2; then
+ append-cppflags -D_FORCE_SOFTWARE_SHA
+ fi
+ setup-wxwidgets
+
+ local myeconfargs=(
+ --disable-autoupdatecheck
+ --with-pugixml=system
+ $(use_enable nls locales)
+ $(use_with dbus)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+
+ # no static archives
+ find "${ED}" -name '*.la' -delete || die
+}