mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 12:58:16 -07:00
36 lines
826 B
Bash
36 lines
826 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils
|
|
|
|
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/18"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="+asm minimal static-libs +urandom"
|
|
|
|
src_configure() {
|
|
local myconf
|
|
|
|
# --disable-pie needed on x86, bug #512734
|
|
use x86 && myconf="${myconf} --disable-pie"
|
|
|
|
econf \
|
|
$(use_enable asm) \
|
|
$(use_enable minimal) \
|
|
$(use_enable !urandom blocking-random) \
|
|
$(use_enable static-libs static) \
|
|
${myconf}
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
prune_libtool_files
|
|
}
|