diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-05-02 04:09:12 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-05-02 04:09:12 +0000 |
commit | 6eb0f3c29b423d08c9e5087917be3bb03f5c3e99 (patch) | |
tree | e9cdbb72f06ed1cd59c73daf50002514cd8e96aa /media-libs/a52dec/a52dec-0.7.4-r6.ebuild | |
parent | Version bump. Remove old. Removed proxy-maint. (diff) | |
download | gentoo-2-6eb0f3c29b423d08c9e5087917be3bb03f5c3e99.tar.gz gentoo-2-6eb0f3c29b423d08c9e5087917be3bb03f5c3e99.tar.bz2 gentoo-2-6eb0f3c29b423d08c9e5087917be3bb03f5c3e99.zip |
Fix automake-1.13 compability wrt #466978 by Alphat-PC and Thomas. Remove unnecessary epunt_cxx call (unnecessary when eautoreconf is executed to modernize files)
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-libs/a52dec/a52dec-0.7.4-r6.ebuild')
-rw-r--r-- | media-libs/a52dec/a52dec-0.7.4-r6.ebuild | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/media-libs/a52dec/a52dec-0.7.4-r6.ebuild b/media-libs/a52dec/a52dec-0.7.4-r6.ebuild index aade08031544..1cb0dc469c53 100644 --- a/media-libs/a52dec/a52dec-0.7.4-r6.ebuild +++ b/media-libs/a52dec/a52dec-0.7.4-r6.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r6.ebuild,v 1.18 2012/05/17 13:55:59 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/a52dec-0.7.4-r6.ebuild,v 1.19 2013/05/02 04:09:12 ssuominen Exp $ -EAPI=3 +EAPI=5 inherit autotools eutils flag-o-matic DESCRIPTION="library for decoding ATSC A/52 streams used in DVD" @@ -24,8 +24,11 @@ src_prepare() { "${FILESDIR}"/${P}-tests-optional.patch \ "${FILESDIR}"/${P}-test-hidden-symbols.patch + sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die #466978 + eautoreconf - epunt_cxx +# epunt_cxx is not required with eautoreconf wrt #458298 +# epunt_cxx } src_configure() { @@ -42,16 +45,16 @@ src_configure() { } src_compile() { - emake CFLAGS="${CFLAGS}" || die + emake CFLAGS="${CFLAGS}" } src_install() { - emake DESTDIR="${D}" install || die + emake DESTDIR="${D}" install insinto /usr/include/a52dec - doins liba52/a52_internal.h || die + doins liba52/a52_internal.h dodoc AUTHORS ChangeLog HISTORY NEWS README TODO doc/liba52.txt - find "${ED}" -name '*.la' -exec rm -f {} + + prune_libtool_files --all } |