2012-05-18 09:45:27 +04:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
2012-02-06 16:39:49 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2012-05-18 09:45:27 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/faad2/faad2-2.7-r2.ebuild,v 1.10 2012/05/17 14:07:55 aballier Exp $
|
2012-02-06 16:39:49 +04:00
|
|
|
|
|
|
|
EAPI=3
|
|
|
|
inherit autotools eutils
|
|
|
|
|
|
|
|
DESCRIPTION="AAC audio decoding library"
|
|
|
|
HOMEPAGE="http://www.audiocoding.com/faad2.html"
|
|
|
|
SRC_URI="mirror://sourceforge/faac/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2012-05-18 09:45:27 +04:00
|
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
|
2012-02-06 16:39:49 +04:00
|
|
|
IUSE="digitalradio static-libs"
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}"/${P}-libmp4ff-shared-lib.patch \
|
|
|
|
"${FILESDIR}"/${P}-libmp4ff-install-mp4ff_int_types_h.patch \
|
|
|
|
"${FILESDIR}"/${P}-man1_MANS.patch
|
|
|
|
|
|
|
|
sed -i -e 's:iquote :I:' libfaad/Makefile.am || die
|
|
|
|
|
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
econf \
|
|
|
|
$(use_enable static-libs static) \
|
|
|
|
--disable-dependency-tracking \
|
|
|
|
$(use_with digitalradio drm) \
|
|
|
|
--without-xmms
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake DESTDIR="${D}" install || die
|
|
|
|
dodoc AUTHORS ChangeLog NEWS README README.linux TODO
|
|
|
|
find "${ED}" -name '*.la' -exec rm -f '{}' +
|
|
|
|
}
|