forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
celt-0.11.3.ebuild
45 lines (35 loc) · 1.05 KB
/
celt-0.11.3.ebuild
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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools eutils multilib-minimal
DESCRIPTION="CELT is a very low delay audio codec designed for high-quality communications"
HOMEPAGE="http://www.celt-codec.org/"
SRC_URI="http://downloads.us.xiph.org/releases/${PN}/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="ogg static-libs test"
DEPEND="ogg? ( media-libs/libogg )"
RDEPEND="${DEPEND}"
DOCS=( README TODO )
src_prepare() {
default
if use test ; then
# tandem tests fail:
# https://thr3ads.net/opus/2012/09/2124778-CELT-0.11.3-tandem-test-fails
sed '/^TESTS/s@ tandem-test@@' -i tests/Makefile.am || die
eautoreconf
fi
}
multilib_src_configure() {
# ogg is for the binaries
local myconf="--without-ogg"
multilib_is_native_abi && myconf="$(use_with ogg ogg /usr)"
ECONF_SOURCE="${S}" econf \
$(use_enable static-libs static) \
${myconf}
}
multilib_src_install_all() {
prune_libtool_files
einstalldocs
}