blob: 8b199600c8afba0d46e961868d8449d59ca9dfbf (
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
|
# 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_pre20050818.ebuild,v 1.1 2005/08/19 19:00:02 stkn Exp $
inherit eutils
## TODO:
#
# - bristuff (waiting for next upstream release...)
#
IUSE=""
#BRI_VERSION="0.2.0-RC8h"
DESCRIPTION="Primary Rate ISDN (PRI) library"
HOMEPAGE="http://www.asterisk.org/"
SRC_URI="http://www.netdomination.org/pub/asterisk/${P}.tar.bz2"
# bri? ( http://www.junghanns.net/asterisk/downloads/bristuff-${BRI_VERSION}.tar.gz )"
S="${WORKDIR}/${PN}"
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
}
|