blob: 3451f44104dfa5612f2628602f8d67646311e01a (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit multilib
MY_P="msilbc-${PV}"
DESCRIPTION="mediastreamer plugin: add iLBC support"
HOMEPAGE="http://www.linphone.org/"
SRC_URI="mirror://nongnu/linphone/plugins/sources/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm64 ppc ppc64 x86"
IUSE="20ms-frames"
RDEPEND="dev-libs/ilbc-rfc3951
>=media-libs/mediastreamer-2.0.0:="
DEPEND="${RDEPEND}"
S=${WORKDIR}/${MY_P}
src_configure() {
# dev-libs/ilbc-rfc3951 does not ship pkgconfig .pc file,
# so these variables should be set here to satisfy configure
ILBC_CFLAGS="/usr/include" ILBC_LIBS="/usr/include -lilbc" \
econf \
$(use_enable 20ms-frames)
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS ChangeLog NEWS README
}
|