diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-11-28 02:16:13 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-11-28 02:16:13 +0000 |
commit | b206aaa02889a748d9bc60a765efe231d2aaa0b5 (patch) | |
tree | c23022fdf9483b04bcf99a0e32a8546a7937d9f4 /media-gfx/potrace | |
parent | Version bump (diff) | |
download | gentoo-2-b206aaa02889a748d9bc60a765efe231d2aaa0b5.tar.gz gentoo-2-b206aaa02889a748d9bc60a765efe231d2aaa0b5.tar.bz2 gentoo-2-b206aaa02889a748d9bc60a765efe231d2aaa0b5.zip |
Fix autotools-utils usage (bug #392183).
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/potrace')
-rw-r--r-- | media-gfx/potrace/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/potrace/potrace-1.10-r1.ebuild | 21 |
2 files changed, 14 insertions, 12 deletions
diff --git a/media-gfx/potrace/ChangeLog b/media-gfx/potrace/ChangeLog index 29caf45c0a66..2ec916916a16 100644 --- a/media-gfx/potrace/ChangeLog +++ b/media-gfx/potrace/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/potrace # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/potrace/ChangeLog,v 1.34 2011/11/27 04:03:24 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/potrace/ChangeLog,v 1.35 2011/11/28 02:16:13 radhermit Exp $ + + 28 Nov 2011; Tim Harder <radhermit@gentoo.org> potrace-1.10-r1.ebuild: + Fix autotools-utils usage (bug #392183). 27 Nov 2011; Tim Harder <radhermit@gentoo.org> potrace-1.10-r1.ebuild: Build in the source tree. diff --git a/media-gfx/potrace/potrace-1.10-r1.ebuild b/media-gfx/potrace/potrace-1.10-r1.ebuild index 80b7ea59bcfc..8d8b1ed05988 100644 --- a/media-gfx/potrace/potrace-1.10-r1.ebuild +++ b/media-gfx/potrace/potrace-1.10-r1.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/media-gfx/potrace/potrace-1.10-r1.ebuild,v 1.5 2011/11/27 04:03:24 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/potrace/potrace-1.10-r1.ebuild,v 1.6 2011/11/28 02:16:13 radhermit Exp $ EAPI="4" @@ -15,19 +15,18 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" IUSE="metric static-libs" -DOCS=( AUTHORS ChangeLog NEWS README ) - RDEPEND="sys-libs/zlib" DEPEND="${RDEPEND}" -AUTOTOOLS_IN_SOURCE_BUILD=1 +DOCS=( AUTHORS ChangeLog NEWS README ) src_configure() { - econf \ - --docdir="${EPREFIX}"/usr/share/doc/${PF} \ - --enable-zlib \ - --with-libpotrace \ - $(use_enable metric a4) \ - $(use_enable metric) \ - $(use_enable static-libs static) + local myeconfargs=( + --docdir="${EPREFIX}"/usr/share/doc/${PF} + --enable-zlib + --with-libpotrace + $(use_enable metric a4) + $(use_enable metric) + ) + autotools-utils_src_configure } |