38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
|
# Copyright 1999-2010 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/faad2/faad2-2.7-r2.ebuild,v 1.1 2010/04/29 15:13:58 ssuominen Exp $
|
||
|
|
||
|
EAPI=2
|
||
|
inherit autotools eutils multilib-native flag-o-matic
|
||
|
|
||
|
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"
|
||
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
|
||
|
IUSE="digitalradio"
|
||
|
|
||
|
multilib-native_src_prepare_internal() {
|
||
|
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
|
||
|
}
|
||
|
|
||
|
multilib-native_src_configure_internal() {
|
||
|
append-flags "-DHAVE_LRINTF"
|
||
|
econf \
|
||
|
$(use_with digitalradio drm) \
|
||
|
--without-xmms
|
||
|
}
|
||
|
|
||
|
multilib-native_src_install_internal() {
|
||
|
emake DESTDIR="${D}" install || die
|
||
|
dodoc AUTHORS ChangeLog NEWS README README.linux TODO
|
||
|
}
|