diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-08-10 19:09:34 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-08-10 19:09:34 +0000 |
commit | b74ea79304f49eec91500c2c4b36637c70690084 (patch) | |
tree | a8ca2b1178f82bd120e1e0b6e579cdc350dc5dd8 /media-libs/a52dec | |
parent | Version bump and fix pkgconfig dep. (diff) | |
download | gentoo-2-b74ea79304f49eec91500c2c4b36637c70690084.tar.gz gentoo-2-b74ea79304f49eec91500c2c4b36637c70690084.tar.bz2 gentoo-2-b74ea79304f49eec91500c2c4b36637c70690084.zip |
Convert to multilib, stop installing a52_internal that shouldnt be needed nor used, stack it for medialibs r9
(Portage version: 2.2.0_alpha196/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/a52dec')
-rw-r--r-- | media-libs/a52dec/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/a52dec/a52dec-0.7.4-r7.ebuild | 62 |
2 files changed, 69 insertions, 1 deletions
diff --git a/media-libs/a52dec/ChangeLog b/media-libs/a52dec/ChangeLog index 7e1ad9634814..463b6b66793d 100644 --- a/media-libs/a52dec/ChangeLog +++ b/media-libs/a52dec/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/a52dec # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/ChangeLog,v 1.67 2013/05/02 04:09:12 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/a52dec/ChangeLog,v 1.68 2013/08/10 19:09:34 aballier Exp $ + +*a52dec-0.7.4-r7 (10 Aug 2013) + + 10 Aug 2013; Alexis Ballier <aballier@gentoo.org> +a52dec-0.7.4-r7.ebuild: + Convert to multilib, stop installing a52_internal that shouldnt be needed nor + used, stack it for medialibs r9 02 May 2013; Samuli Suominen <ssuominen@gentoo.org> a52dec-0.7.4-r6.ebuild: Fix automake-1.13 compability wrt #466978 by Alphat-PC and Thomas. Remove diff --git a/media-libs/a52dec/a52dec-0.7.4-r7.ebuild b/media-libs/a52dec/a52dec-0.7.4-r7.ebuild new file mode 100644 index 000000000000..95b1c78b6df4 --- /dev/null +++ b/media-libs/a52dec/a52dec-0.7.4-r7.ebuild @@ -0,0 +1,62 @@ +# 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-r7.ebuild,v 1.1 2013/08/10 19:09:34 aballier Exp $ + +EAPI=5 +inherit autotools eutils flag-o-matic multilib-minimal + +DESCRIPTION="library for decoding ATSC A/52 streams used in DVD" +HOMEPAGE="http://liba52.sourceforge.net/" +SRC_URI="http://liba52.sourceforge.net/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="djbfft oss static-libs" + +RDEPEND="djbfft? ( sci-libs/djbfft[${MULTILIB_USEDEP}] ) + abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r8 + !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )" +DEPEND="${RDEPEND}" +DOCS=( AUTHORS ChangeLog HISTORY NEWS README TODO doc/liba52.txt ) + +src_prepare() { + epatch \ + "${FILESDIR}"/${P}-build.patch \ + "${FILESDIR}"/${P}-freebsd.patch \ + "${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 + + filter-flags -fprefetch-loop-arrays +} + +multilib_src_configure() { + local myconf + use oss || myconf="${myconf} --disable-oss" + + ECONF_SOURCE="${S}" econf \ + --enable-shared \ + $(use_enable static-libs static) \ + $(use_enable djbfft) \ + ${myconf} + + # remove useless subdirs + if ! multilib_is_native_abi ; then + sed -i \ + -e 's/ src//' \ + -e 's/ libao//' \ + Makefile || die + fi +} + +multilib_src_compile() { + emake CFLAGS="${CFLAGS}" +} + +multilib_src_install_all() { + prune_libtool_files --all +} |