diff options
author | Sam James <sam@gentoo.org> | 2022-08-20 06:10:18 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-08-20 06:10:57 +0100 |
commit | 6019a8883acfa44c2eec32836a440ada46cf918c (patch) | |
tree | 60b351ad6d9411123c614137ba7754c65d456a59 /dev-libs/libxml2 | |
parent | app-editors/emacs: Stabilize 28.1-r2 sparc, #865817 (diff) | |
download | gentoo-6019a8883acfa44c2eec32836a440ada46cf918c.tar.gz gentoo-6019a8883acfa44c2eec32836a440ada46cf918c.tar.bz2 gentoo-6019a8883acfa44c2eec32836a440ada46cf918c.zip |
dev-libs/libxml2: add USE=ftp
FTP support was disabled by default in 2.10.0 but at least
libxmlsec needs it.
Closes: https://bugs.gentoo.org/865843
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libxml2')
-rw-r--r-- | dev-libs/libxml2/libxml2-2.10.0-r1.ebuild (renamed from dev-libs/libxml2/libxml2-2.10.0.ebuild) | 3 | ||||
-rw-r--r-- | dev-libs/libxml2/libxml2-9999.ebuild | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/dev-libs/libxml2/libxml2-2.10.0.ebuild b/dev-libs/libxml2/libxml2-2.10.0-r1.ebuild index d9eb0d19172a..713da438e12c 100644 --- a/dev-libs/libxml2/libxml2-2.10.0.ebuild +++ b/dev-libs/libxml2/libxml2-2.10.0-r1.ebuild @@ -36,7 +36,7 @@ S="${WORKDIR}/${PN}-${PV%_rc*}" LICENSE="MIT" SLOT="2" -IUSE="debug examples icu lzma +python readline static-libs test" +IUSE="debug examples +ftp icu lzma +python readline static-libs test" RESTRICT="!test? ( test )" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -111,6 +111,7 @@ multilib_src_configure() { libxml2_configure() { ECONF_SOURCE="${S}" econf \ --enable-ipv6 \ + $(use_with ftp) \ $(use_with debug run-debug) \ $(use_with icu) \ $(use_with lzma) \ diff --git a/dev-libs/libxml2/libxml2-9999.ebuild b/dev-libs/libxml2/libxml2-9999.ebuild index 0fe269e46054..1c24959ee8b4 100644 --- a/dev-libs/libxml2/libxml2-9999.ebuild +++ b/dev-libs/libxml2/libxml2-9999.ebuild @@ -36,7 +36,7 @@ S="${WORKDIR}/${PN}-${PV%_rc*}" LICENSE="MIT" SLOT="2" -IUSE="debug examples icu lzma +python readline static-libs test" +IUSE="debug examples +ftp icu lzma +python readline static-libs test" RESTRICT="!test? ( test )" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -106,6 +106,7 @@ multilib_src_configure() { libxml2_configure() { ECONF_SOURCE="${S}" econf \ --enable-ipv6 \ + $(use_with ftp) \ $(use_with debug run-debug) \ $(use_with icu) \ $(use_with lzma) \ |