44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
# Copyright 1999-2012 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-r1.ebuild,v 1.2 2012/05/21 18:52:09 xarthisius Exp $
|
|
|
|
EAPI="4"
|
|
|
|
inherit autotools eutils
|
|
|
|
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="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
|
|
IUSE="static-libs"
|
|
|
|
RDEPEND=">=dev-libs/libgpg-error-1.8"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-uscore.patch
|
|
epatch "${FILESDIR}"/${PN}-multilib-syspath.patch
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# --disable-padlock-support for bug #201917
|
|
econf \
|
|
--disable-padlock-support \
|
|
--disable-dependency-tracking \
|
|
--enable-noexecstack \
|
|
--disable-O-flag-munging \
|
|
$(use_enable static-libs static)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
use static-libs || find "${D}" -name '*.la' -delete
|
|
}
|