# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libsodium/libsodium-0.4.2.ebuild,v 0.4.2 2013/08/09 11:47:52 xmw Exp $ EAPI=5 DESCRIPTION="New easy-to-use high-speed software library for network communication, encryption, decryption, signatures, etc." HOMEPAGE="https://github.com/jedisct1/libsodium/" if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="git://github.com/jedisct1/libsodium.git" DOCS=( README ) inherit git-2 autotools else SRC_URI="https://download.libsodium.org/libsodium/releases/${P}.tar.gz" DOCS=( NEWS README ) fi LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" src_prepare() { if [[ ${PV} == *9999* ]]; then eautoreconf fi } src_configure() { econf \ $(use_enable test) }