blob: 8635f894b1fa80c45ba29088316b83e42303d3f1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/iax/iax-0.2.2.ebuild,v 1.5 2004/07/01 22:25:02 eradicator Exp $
IUSE=""
DESCRIPTION="IAX (Inter Asterisk eXchange) Library"
HOMEPAGE="http://www.digium.com/"
LICENSE="LGPL-2"
DEPEND="virtual/libc"
RDEPEND="virtual/libc"
SLOT="0"
SRC_URI="http://www.digium.com/pub/libiax/${P}.tar.gz"
S=${WORKDIR}/${P}
D_PREFIX=/usr
KEYWORDS="x86 ~ppc"
src_compile() {
./configure --prefix=${D_PREFIX} --enable-autoupdate
export UCFLAGS="${CFLAGS}"
emake || die
}
src_install () {
make prefix=${D}/${D_PREFIX} install
dodoc NEWS COPYING AUTHORS README
}
|