diff options
author | Christoph Mende <angelos@gentoo.org> | 2011-03-20 19:14:32 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2011-03-20 19:14:32 +0000 |
commit | c6ca16398f6f2d55213abe0b4d057de74900383a (patch) | |
tree | 38251fb6994187723ab0d01ccb0d1aaea684a2e5 /dev-libs/argtable | |
parent | Version bump (diff) | |
download | gentoo-2-c6ca16398f6f2d55213abe0b4d057de74900383a.tar.gz gentoo-2-c6ca16398f6f2d55213abe0b4d057de74900383a.tar.bz2 gentoo-2-c6ca16398f6f2d55213abe0b4d057de74900383a.zip |
Make building of static libraries optional
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/argtable')
-rw-r--r-- | dev-libs/argtable/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/argtable/argtable-2.13.ebuild | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/dev-libs/argtable/ChangeLog b/dev-libs/argtable/ChangeLog index 937a529a3d44..0fc383b20faa 100644 --- a/dev-libs/argtable/ChangeLog +++ b/dev-libs/argtable/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/argtable # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/ChangeLog,v 1.33 2011/03/20 19:08:20 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/ChangeLog,v 1.34 2011/03/20 19:14:32 angelos Exp $ + + 20 Mar 2011; Christoph Mende <angelos@gentoo.org> argtable-2.13.ebuild: + Make building of static libraries optional 20 Mar 2011; Christoph Mende <angelos@gentoo.org> argtable-2.13.ebuild: Added several die statements and removed .la files diff --git a/dev-libs/argtable/argtable-2.13.ebuild b/dev-libs/argtable/argtable-2.13.ebuild index e033d8887d90..7c7e193933c3 100644 --- a/dev-libs/argtable/argtable-2.13.ebuild +++ b/dev-libs/argtable/argtable-2.13.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/argtable-2.13.ebuild,v 1.2 2011/03/20 19:08:20 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/argtable-2.13.ebuild,v 1.3 2011/03/20 19:14:32 angelos Exp $ EAPI=3 inherit versionator @@ -16,12 +16,14 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="doc debug examples" +IUSE="doc debug examples static-libs" S="${WORKDIR}/${MY_P}" src_configure() { - econf $(use_enable debug) + econf \ + $(use_enable debug) \ + $(use_enable static-libs static) } src_install() { |