diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-11-28 02:21:05 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-11-28 02:21:05 +0000 |
commit | 4293bccd039310b924fc0094494c3da503b14a00 (patch) | |
tree | 9df64238a267ce9a6813b1f6c4b9aeb12448d07d /dev-libs/libcdio | |
parent | Version bumped. (diff) | |
download | gentoo-2-4293bccd039310b924fc0094494c3da503b14a00.tar.gz gentoo-2-4293bccd039310b924fc0094494c3da503b14a00.tar.bz2 gentoo-2-4293bccd039310b924fc0094494c3da503b14a00.zip |
Fix autotools-utils usage (bug #392175).
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libcdio')
-rw-r--r-- | dev-libs/libcdio/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libcdio/libcdio-0.83.ebuild | 33 |
2 files changed, 21 insertions, 17 deletions
diff --git a/dev-libs/libcdio/ChangeLog b/dev-libs/libcdio/ChangeLog index 3a904032d5eb..e7209f99e240 100644 --- a/dev-libs/libcdio/ChangeLog +++ b/dev-libs/libcdio/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libcdio # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/ChangeLog,v 1.120 2011/11/26 01:07:23 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/ChangeLog,v 1.121 2011/11/28 02:21:05 radhermit Exp $ + + 28 Nov 2011; Tim Harder <radhermit@gentoo.org> libcdio-0.83.ebuild: + Fix autotools-utils usage (bug #392175). 26 Nov 2011; Tim Harder <radhermit@gentoo.org> libcdio-0.83.ebuild: Build in the source tree. diff --git a/dev-libs/libcdio/libcdio-0.83.ebuild b/dev-libs/libcdio/libcdio-0.83.ebuild index f1a617a200fc..4898f22ac6d2 100644 --- a/dev-libs/libcdio/libcdio-0.83.ebuild +++ b/dev-libs/libcdio/libcdio-0.83.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/libcdio/libcdio-0.83.ebuild,v 1.2 2011/11/26 01:07:23 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcdio/libcdio-0.83.ebuild,v 1.3 2011/11/28 02:21:05 radhermit Exp $ EAPI=4 @@ -26,22 +26,23 @@ AUTOTOOLS_IN_SOURCE_BUILD=1 DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) src_configure() { - econf \ - $(use_enable cddb) \ - $(use_enable static-libs static) \ - $(use_with !minimal cd-drive) \ - $(use_with !minimal cd-info) \ - $(use_with !minimal cd-paranoia) \ - $(use_with !minimal cdda-player) \ - $(use_with !minimal cd-read) \ - $(use_with !minimal iso-info) \ - $(use_with !minimal iso-read) \ - $(use_enable cxx) \ - --disable-example-progs \ - --disable-cpp-progs \ - --with-cd-paranoia-name=libcdio-paranoia \ - --disable-vcd-info \ + local myeconfargs=( + $(use_enable cddb) + $(use_enable cxx) + $(use_with !minimal cd-drive) + $(use_with !minimal cd-info) + $(use_with !minimal cd-paranoia) + $(use_with !minimal cdda-player) + $(use_with !minimal cd-read) + $(use_with !minimal iso-info) + $(use_with !minimal iso-read) + --disable-example-progs + --disable-cpp-progs + --with-cd-paranoia-name=libcdio-paranoia + --disable-vcd-info --disable-maintainer-mode + ) + autotools-utils_src_configure } pkg_postinst() { |