blob: 60c91507a6dda1149c46ce38666a25889b4761cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/faac/faac-1.24.ebuild,v 1.20 2005/10/16 18:14:14 flameeyes Exp $
inherit libtool eutils autotools
DESCRIPTION="Free MPEG-4 audio codecs by AudioCoding.com"
HOMEPAGE="http://www.audiocoding.com/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc-macos ppc64 sparc x86"
IUSE=""
RDEPEND=">=media-libs/libsndfile-1.0.0"
DEPEND="${RDEPEND}
>=sys-devel/libtool-1.3.5
sys-devel/automake
!<media-libs/faad2-2.0-r3"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
eautoreconf
elibtoolize
epunt_cxx
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO docs/libfaac.pdf
}
|