diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-11-28 03:30:13 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-11-28 03:30:13 +0000 |
commit | 9acd26024e5930aabf86479c1620c38470359a90 (patch) | |
tree | 8e00a92fdf867af7f6285a36661a9d8f1302b5c3 /dev-libs/libtasn1 | |
parent | Fix autotools-utils usage (bug #392147). (diff) | |
download | gentoo-2-9acd26024e5930aabf86479c1620c38470359a90.tar.gz gentoo-2-9acd26024e5930aabf86479c1620c38470359a90.tar.bz2 gentoo-2-9acd26024e5930aabf86479c1620c38470359a90.zip |
Fix autotools-utils usage (bug #392145).
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libtasn1')
-rw-r--r-- | dev-libs/libtasn1/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libtasn1/libtasn1-2.10.ebuild | 16 |
2 files changed, 9 insertions, 12 deletions
diff --git a/dev-libs/libtasn1/ChangeLog b/dev-libs/libtasn1/ChangeLog index 60ca9e1e6b0c..518077cdc665 100644 --- a/dev-libs/libtasn1/ChangeLog +++ b/dev-libs/libtasn1/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libtasn1 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.147 2011/11/27 03:54:49 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.148 2011/11/28 03:30:13 radhermit Exp $ + + 28 Nov 2011; Tim Harder <radhermit@gentoo.org> libtasn1-2.10.ebuild: + Fix autotools-utils usage (bug #392145). 27 Nov 2011; Tim Harder <radhermit@gentoo.org> libtasn1-2.10.ebuild: Build in the source tree. diff --git a/dev-libs/libtasn1/libtasn1-2.10.ebuild b/dev-libs/libtasn1/libtasn1-2.10.ebuild index 9378c59ae379..4b461e05a05f 100644 --- a/dev-libs/libtasn1/libtasn1-2.10.ebuild +++ b/dev-libs/libtasn1/libtasn1-2.10.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/libtasn1/libtasn1-2.10.ebuild,v 1.2 2011/11/27 03:54:49 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-2.10.ebuild,v 1.3 2011/11/28 03:30:13 radhermit Exp $ EAPI=4 @@ -20,20 +20,14 @@ DEPEND=">=dev-lang/perl-5.6 DOCS=( AUTHORS ChangeLog NEWS README THANKS ) -AUTOTOOLS_IN_SOURCE_BUILD=1 - src_configure(){ - local myconf - [[ "${VALGRIND_TESTS}" == "0" ]] && myconf+=" --disable-valgrind-tests" - - econf \ - $(use_enable static-libs static) \ - ${myconf} + local myeconfargs + [[ "${VALGRIND_TESTS}" == "0" ]] && myeconfargs+=" --disable-valgrind-tests" + autotools-utils_src_configure } src_install() { - default - remove_libtool_files + autotools-utils_src_install if use doc ; then dodoc doc/libtasn1.pdf |