blob: 06728b45f67be7a8dc4cd72ae70cc9b9786b3183 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
if [[ ${PV} == 9999 ]] ; then
SCM="autotools git-2"
EGIT_REPO_URI="git://github.com/lu-zero/libilbc.git"
SRC_URI=""
KEYWORDS=""
else
SRC_URI="http://dev.gentoo.org/~lu_zero/${PN}/${P}.tar.xz"
KEYWORDS="~amd64"
fi
inherit eutils multilib ${SCM}
DESCRIPTION="Packaged version of iLBC codec from the WebRTC project"
HOMEPAGE="https://github.com/dekkers/libilbc"
LICENSE="BSD"
SLOT="0"
IUSE=""
src_prepare() {
[[ ${PV} == *9999 ]] && eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die
find "${D}"usr/$(get_libdir) -name '*.la' -delete
}
|