X-Git-Url: https://git.bzium.org/embe/overlay.git/blobdiff_plain/bbb7ecf9d7645422f0b2d03acc6e6612786c913e..30292967dce6a6922688c094841c24ebc0dceb5e:/dev-libs/libgcrypt/libgcrypt-1.5.0.ebuild?ds=inline diff --git a/dev-libs/libgcrypt/libgcrypt-1.5.0.ebuild b/dev-libs/libgcrypt/libgcrypt-1.5.0.ebuild new file mode 100644 index 0000000..947a99d --- /dev/null +++ b/dev-libs/libgcrypt/libgcrypt-1.5.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.5.0.ebuild,v 1.1 2011/07/01 21:49:52 hwoarang Exp $ + +EAPI="3" + +DESCRIPTION="General purpose crypto library based on the code used in GnuPG" +HOMEPAGE="http://www.gnupg.org/" +SRC_URI="mirror://gnupg/libgcrypt/${P}.tar.bz2 + ftp://ftp.gnupg.org/gcrypt/${PN}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86-macos ~x64-macos" +IUSE="static-libs" + +RDEPEND=">=dev-libs/libgpg-error-1.8" +DEPEND="${RDEPEND}" + +src_configure() { + # --disable-padlock-support for bug #201917 + econf \ + --disable-padlock-support \ + --disable-dependency-tracking \ + --with-pic \ + --enable-noexecstack \ + --disable-O-flag-munging \ + $(use_enable static-libs static) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README* THANKS TODO || die "dodoc failed" +}