blob: 7006318302710d594fca4f01b2464e0bef586738 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libpri/libpri-1.2.0_beta1.ebuild,v 1.1 2005/08/27 17:58:05 stkn Exp $
inherit eutils
## TODO:
#
# - bristuff (waiting for next upstream release...)
#
IUSE=""
MY_P="${P/_/-}"
#BRI_VERSION="0.2.0-RC8h"
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.junghanns.net/asterisk/downloads/bristuff-${BRI_VERSION}.tar.gz )"
S="${WORKDIR}/${MY_P}"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.diff
# if use bri; then
# einfo "Patching libpri w/ BRI stuff (${BRI_VERSION})"
# epatch ${WORKDIR}/bristuff-${BRI_VERSION}/patches/libpri.patch
# fi
}
src_compile() {
emake || die
}
src_install() {
make INSTALL_PREFIX=${D} install || die
dodoc ChangeLog README TODO LICENSE
}
|