diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-11-06 13:24:06 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-11-06 13:25:50 -0500 |
commit | 3efbb296a43137d0a3ffaadcc80801128bfca182 (patch) | |
tree | 50c0b03c48c969bbb93ce4361bacf5a62fe143a1 | |
parent | dev-libs/wayland-protocols: Version bump to 1.28 (diff) | |
download | gentoo-3efbb296a43137d0a3ffaadcc80801128bfca182.tar.gz gentoo-3efbb296a43137d0a3ffaadcc80801128bfca182.tar.bz2 gentoo-3efbb296a43137d0a3ffaadcc80801128bfca182.zip |
net-libs/libpsl: Use append-lfs-flags
Closes: https://bugs.gentoo.org/880077
Signed-off-by: Matt Turner <mattst88@gentoo.org>
-rw-r--r-- | net-libs/libpsl/libpsl-0.21.1-r1.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/net-libs/libpsl/libpsl-0.21.1-r1.ebuild b/net-libs/libpsl/libpsl-0.21.1-r1.ebuild new file mode 100644 index 000000000000..84d2fc762666 --- /dev/null +++ b/net-libs/libpsl/libpsl-0.21.1-r1.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit flag-o-matic multilib-minimal python-any-r1 + +DESCRIPTION="C library for the Public Suffix List" +HOMEPAGE="https://github.com/rockdaboot/libpsl" +SRC_URI="https://github.com/rockdaboot/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="icu +idn +man" + +RDEPEND=" + icu? ( !idn? ( dev-libs/icu:=[${MULTILIB_USEDEP}] ) ) + idn? ( + dev-libs/libunistring:=[${MULTILIB_USEDEP}] + net-dns/libidn2:=[${MULTILIB_USEDEP}] + ) +" +DEPEND="${RDEPEND}" +BDEPEND="${PYTHON_DEPS} + dev-util/gtk-doc-am + sys-devel/gettext + virtual/pkgconfig + man? ( dev-libs/libxslt ) +" + +pkg_pretend() { + if use icu && use idn ; then + ewarn "\"icu\" and \"idn\" USE flags are enabled." + ewarn "Using \"idn\"." + fi +} + +multilib_src_configure() { + append-lfs-flags # bug 880077 + + local myeconfargs=( + --disable-asan + --disable-cfi + --disable-ubsan + --disable-static + $(use_enable man) + ) + + # Prefer idn even if icu is in USE as well + if use idn ; then + myeconfargs+=( + --enable-builtin=libidn2 + --enable-runtime=libidn2 + ) + elif use icu ; then + myeconfargs+=( + --enable-builtin=libicu + --enable-runtime=libicu + ) + else + myeconfargs+=( --disable-runtime ) + fi + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_install() { + default + + find "${ED}" -type f -name "*.la" -delete || die +} |