blob: e541f95d67397601fdb6c43e5b8a97fc8d37cb24 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdts/libdts-0.0.2-r4.ebuild,v 1.1 2006/06/17 18:29:25 flameeyes Exp $
inherit eutils toolchain-funcs autotools
DESCRIPTION="library for decoding DTS Coherent Acoustics streams used in DVD"
HOMEPAGE="http://www.videolan.org/dtsdec.html"
SRC_URI="http://www.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="oss debug"
RESTRICT="test"
src_unpack() {
unpack ${A}
cd "${S}"
mkdir "${S}/m4"
epatch "${FILESDIR}/${P}-strict-aliasing.patch"
epatch "${FILESDIR}/${P}-libtool.patch"
epatch "${FILESDIR}/${P}-freebsd.patch"
[[ $(gcc-major-version)$(gcc-minor-version) -ge 41 ]] && \
epatch "${FILESDIR}/${P}-visibility.patch"
AT_M4DIR="m4" eautoreconf
}
src_compile() {
econf $(use_enable oss) $(use_enable debug) || die
emake OPT_CFLAGS="" || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO doc/libdts.txt
}
|