blob: b40314f4f6e1fabd48741e1404a496b6d6cfd04c (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libpri/libpri-1.2.3.ebuild,v 1.2 2009/03/10 18:51:15 chainsaw Exp $
inherit eutils
## TODO:
#
# - bristuff (waiting for next upstream release...)
#
IUSE="bri"
MY_P="${P/_/-}"
BRI_VERSION="0.3.0-PRE-1p"
DESCRIPTION="Primary Rate ISDN (PRI) library"
HOMEPAGE="http://www.asterisk.org/"
SRC_URI="http://ftp.digium.com/pub/libpri/${MY_P}.tar.gz
bri? ( http://www.netdomination.org/pub/asterisk/libpri-${PV}-bristuff-${BRI_VERSION}.diff.gz )"
S="${WORKDIR}/${MY_P}"
S_BRI="${WORKDIR}/bristuff-${BRI_VERSION}"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-1.2.3-gentoo.diff"
if use bri; then
einfo "Patching libpri w/ BRI stuff (${BRI_VERSION})"
# fix a small clash in patches
sed -i -e "s:CFLAGS=:CFLAGS+=:" \
"${WORKDIR}/libpri-${PV}-bristuff-${BRI_VERSION}.diff"
epatch "${WORKDIR}/libpri-${PV}-bristuff-${BRI_VERSION}.diff"
fi
}
src_compile() {
emake || die
}
src_install() {
make INSTALL_PREFIX="${D}" install || die
dodoc ChangeLog README TODO
}
|