blob: ee05dff9ec093125e8c969f06d98151af5714b17 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/opencore-amr/opencore-amr-0.1.1.ebuild,v 1.1 2009/07/03 19:27:06 aballier Exp $
EAPI=2
inherit toolchain-funcs eutils multilib
DESCRIPTION="Implementation of Adaptive Multi Rate Narrowband and Wideband speech codec"
HOMEPAGE="http://opencore-amr.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}/${P}-pic.patch"
epatch "${FILESDIR}/${P}-libdir.patch"
}
src_compile() {
tc-export CC CXX
emake || die
}
src_install() {
emake PREFIX=/usr DESTDIR="${D}" LIBDIR="$(get_libdir)" install || die
}
|