From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 414681382C5 for ; Sun, 4 Mar 2018 08:04:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81C44E08A5; Sun, 4 Mar 2018 08:04:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F9CFE08A5 for ; Sun, 4 Mar 2018 08:04:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EF8CA335C2E for ; Sun, 4 Mar 2018 08:04:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC0F41F0 for ; Sun, 4 Mar 2018 08:04:27 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1520150092.ade0980cf5912477c6172223d6ff9b679b0da700.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libsodium/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libsodium/libsodium-1.0.16-r1.ebuild X-VCS-Directories: dev-libs/libsodium/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ade0980cf5912477c6172223d6ff9b679b0da700 X-VCS-Branch: master Date: Sun, 4 Mar 2018 08:04:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0ca5e80a-7a6d-4f6f-b461-8b4e171fbca1 X-Archives-Hash: 2f4da8bf8562236b144de8072ec359bf commit: ade0980cf5912477c6172223d6ff9b679b0da700 Author: Conrad Kostecki bl4ckb0x de> AuthorDate: Sat Mar 3 22:07:03 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Mar 4 07:54:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ade0980c dev-libs/libsodium: add multilib support Closes: https://bugs.gentoo.org/622140 Closes: https://github.com/gentoo/gentoo/pull/7310 dev-libs/libsodium/libsodium-1.0.16-r1.ebuild | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) 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 00000000000..dd260ff32ea --- /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 +}