blob: 38611651bac861fa17b19b25a1484be890f7121f (
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
|
# Copyright 1999-2004 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.ebuild,v 1.19 2004/10/04 08:37:13 eradicator Exp $
inherit flag-o-matic
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="x86 ppc sparc alpha hppa amd64 ia64 arm"
IUSE="oss static"
DEPEND=">=sys-devel/autoconf-2.52d-r1"
RDEPEND="virtual/libc"
src_compile() {
append-flags -fPIC
filter-flags -fprefetch-loop-arrays
local myconf="--enable-shared"
use oss || myconf="${myconf} --disable-oss"
econf $(use_enable static) \
${myconf} || die
emake || die "emake failed"
}
src_install() {
einstall docdir=${D}/usr/share/doc/${PF}/html || die
dodoc AUTHORS ChangeLog HISTORY NEWS README TODO doc/liba52.txt
}
|