blob: 5e5ecd6865e28484a2a1f193d1b62b207d4dfb9a (
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools eutils flag-o-matic multilib multilib-minimal git-r3
DESCRIPTION="library for decoding DTS Coherent Acoustics streams used in DVD"
HOMEPAGE="http://www.videolan.org/developers/libdca.html"
SRC_URI=""
EGIT_REPO_URI="https://code.videolan.org/videolan/libdca"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug oss static-libs"
RDEPEND="!media-libs/libdts
abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r3
!app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )"
DEPEND="${RDEPEND}"
DOCS=( AUTHORS ChangeLog NEWS README TODO doc/${PN}.txt )
src_prepare() {
epatch "${FILESDIR}"/${P}-cflags.patch \
"${FILESDIR}"/${P}-tests-optional.patch \
eautoreconf
}
multilib_src_configure() {
append-lfs-flags #328875
ECONF_SOURCE="${S}" econf \
--disable-dependency-tracking \
$(use_enable debug) \
$(use_enable static-libs static) \
$(use_enable oss)
# Those are thrown away afterwards, don't build them in the first place
if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
sed -i -e 's/ libao src//' Makefile || die
fi
}
multilib_src_compile() {
emake OPT_CFLAGS="" || die
}
multilib_src_install() {
emake DESTDIR="${D}" install || die
find "${ED}" -name '*.la' -exec rm -f '{}' +
rm -f "${ED}"/usr/$(get_libdir)/libdts.a
}
|