summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-01-16 19:47:50 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2011-01-16 19:47:50 +0000
commitfea9714d19f7f5616ed151616fe6b4d421ae39af (patch)
tree0ba6b1bf6122daa48e17d41eb2069e7b4db98f28 /dev-libs/libgcrypt
parentppc stable wrt #349061 (diff)
downloadgentoo-2-fea9714d19f7f5616ed151616fe6b4d421ae39af.tar.gz
gentoo-2-fea9714d19f7f5616ed151616fe6b4d421ae39af.tar.bz2
gentoo-2-fea9714d19f7f5616ed151616fe6b4d421ae39af.zip
Add "static-libs" USE flag.
(Portage version: 2.2.0_alpha15_p10/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libgcrypt')
-rw-r--r--dev-libs/libgcrypt/ChangeLog8
-rw-r--r--dev-libs/libgcrypt/libgcrypt-1.4.6.ebuild15
2 files changed, 14 insertions, 9 deletions
diff --git a/dev-libs/libgcrypt/ChangeLog b/dev-libs/libgcrypt/ChangeLog
index ae947597be45..21cab24d38fb 100644
--- a/dev-libs/libgcrypt/ChangeLog
+++ b/dev-libs/libgcrypt/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/libgcrypt
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/ChangeLog,v 1.142 2010/10/16 15:43:31 arfrever Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/ChangeLog,v 1.143 2011/01/16 19:47:50 arfrever Exp $
+
+ 16 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ libgcrypt-1.4.6.ebuild:
+ Add "static-libs" USE flag.
16 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-libgcrypt-1.4.5.ebuild:
diff --git a/dev-libs/libgcrypt/libgcrypt-1.4.6.ebuild b/dev-libs/libgcrypt/libgcrypt-1.4.6.ebuild
index 720d2e49a7be..4353378b991d 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.4.6.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.4.6.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2010 Gentoo Foundation
+# 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.4.6.ebuild,v 1.9 2010/10/16 15:16:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.4.6.ebuild,v 1.10 2011/01/16 19:47:50 arfrever Exp $
-EAPI="2"
+EAPI="3"
-inherit autotools eutils flag-o-matic toolchain-funcs
+inherit autotools eutils
DESCRIPTION="General purpose crypto library based on the code used in GnuPG"
HOMEPAGE="http://www.gnupg.org/"
@@ -14,7 +14,7 @@ SRC_URI="mirror://gnupg/libgcrypt/${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=""
+IUSE="static-libs"
RDEPEND=">=dev-libs/libgpg-error-1.5"
DEPEND="${RDEPEND}"
@@ -32,10 +32,11 @@ src_configure() {
--disable-padlock-support \
--disable-dependency-tracking \
--with-pic \
- --enable-noexecstack
+ --enable-noexecstack \
+ $(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README* THANKS TODO
+ dodoc AUTHORS ChangeLog NEWS README* THANKS TODO || die "dodoc failed"
}