You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/nettle/nettle-1.15.ebuild

45 lines
1.1 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/nettle/nettle-1.15.ebuild,v 1.10 2012/07/24 18:42:35 flameeyes Exp $
inherit eutils autotools
DESCRIPTION="cryptographic library that is designed to fit easily in any context"
HOMEPAGE="http://www.lysator.liu.se/~nisse/nettle/"
SRC_URI="http://www.lysator.liu.se/~nisse/archive/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc s390 sparc x86 ~x86-fbsd"
IUSE="gmp ssl"
DEPEND="gmp? ( dev-libs/gmp )
ssl? ( dev-libs/openssl )
"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-1.14-make-as-needed.patch"
epatch "${FILESDIR}"/${PN}-2.0-binutils-2.22.patch #bug 396659
sed -i \
-e '/CFLAGS/s:-ggdb3::' \
configure.ac || die
eautoreconf
}
src_compile() {
econf \
--enable-shared \
$(use_enable ssl openssl) \
$(use_enable gmp public-key) \
|| die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README
}