diff options
author | Conrad Kostecki <ck+gentoo@bl4ckb0x.de> | 2018-03-03 23:07:03 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-03-04 08:54:52 +0100 |
commit | ade0980cf5912477c6172223d6ff9b679b0da700 (patch) | |
tree | 2ba5058977ffcf7e33d085b6243e1b3ffd6cc27d /dev-libs/libsodium | |
parent | dev-python/multidict: don't enable coverage for tests (diff) | |
download | gentoo-ade0980cf5912477c6172223d6ff9b679b0da700.tar.gz gentoo-ade0980cf5912477c6172223d6ff9b679b0da700.tar.bz2 gentoo-ade0980cf5912477c6172223d6ff9b679b0da700.zip |
dev-libs/libsodium: add multilib support
Closes: https://bugs.gentoo.org/622140
Closes: https://github.com/gentoo/gentoo/pull/7310
Diffstat (limited to 'dev-libs/libsodium')
-rw-r--r-- | dev-libs/libsodium/libsodium-1.0.16-r1.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-libs/libsodium/libsodium-1.0.16-r1.ebuild b/dev-libs/libsodium/libsodium-1.0.16-r1.ebuild new file mode 100644 index 000000000000..dd260ff32ea3 --- /dev/null +++ b/dev-libs/libsodium/libsodium-1.0.16-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools multilib-minimal + +DESCRIPTION="A portable fork of NaCl, a higher-level cryptographic library" +HOMEPAGE="https://github.com/jedisct1/libsodium" +SRC_URI="http://download.libsodium.org/${PN}/releases/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0/23" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux" +IUSE="+asm minimal static-libs +urandom cpu_flags_x86_sse4_1 cpu_flags_x86_aes" + +PATCHES=( "${FILESDIR}"/${PN}-1.0.10-cpuflags.patch ) + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + local ECONF_SOURCE="${S}" + local myconf + + # --disable-pie is needed on x86, see bug #512734 + if [[ "${MULTILIB_ABI_FLAG}" == "abi_x86_32" ]]; then + myconf="${myconf} --disable-pie" + fi + + econf \ + $(use_enable asm) \ + $(use_enable minimal) \ + $(use_enable !urandom blocking-random) \ + $(use_enable static-libs static) \ + $(use_enable cpu_flags_x86_sse4_1 sse4_1) \ + $(use_enable cpu_flags_x86_aes aesni) \ + ${myconf} +} + +multilib_src_install_all() { + einstalldocs + find "${D}" -name "*.la" -delete || die +} |