blob: 12a461af9dafc7aeab2b39d4c42357531091142b (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2009 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-r6.ebuild,v 1.8 2009/06/11 15:04:47 armin76 Exp $
WANT_AUTOCONF=latest
WANT_AUTOMAKE=latest
inherit eutils flag-o-matic libtool autotools
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 ~x86-fbsd"
IUSE="oss djbfft"
RDEPEND="djbfft? ( sci-libs/djbfft )"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-build.patch"
epatch "${FILESDIR}/${P}-freebsd.patch"
epatch "${FILESDIR}/${P}-tests-optional.patch"
eautoreconf
epunt_cxx
}
src_compile() {
filter-flags -fprefetch-loop-arrays
local myconf="--enable-shared"
use oss || myconf="${myconf} --disable-oss"
econf \
$(use_enable djbfft) \
${myconf} || die
emake CFLAGS="${CFLAGS}" || die "emake failed"
}
src_test() {
filter-flags -fPIE
emake check || die "emake check failed"
}
src_install() {
make DESTDIR="${D}" docdir=/usr/share/doc/${PF}/html install || die
insinto /usr/include/a52dec
doins "${S}"/liba52/a52_internal.h
dodoc AUTHORS ChangeLog HISTORY NEWS README TODO doc/liba52.txt
}
|