summaryrefslogtreecommitdiff
blob: b3392103e277b16e66863034e13f7e0ddad2af9b (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libeXosip/libeXosip-2.2.2.ebuild,v 1.2 2006/01/14 13:56:39 genstef Exp $

inherit flag-o-matic

MY_P=${PN}2-${PV/_/-}
DESCRIPTION="eXosip is a library that hides the complexity of using the SIP protocol for multimedia session establishement."
HOMEPAGE="http://savannah.nongnu.org/projects/exosip/"
SRC_URI="http://www.antisip.com/download/${MY_P}.tar.gz"

SLOT="0"
KEYWORDS="~x86 ~ppc"
LICENSE="GPL-2"
IUSE=""
DEPEND=">=net-libs/libosip-2.2.1"
#		josua? ( >=net-libs/ortp-0.7.1 )"
S=${WORKDIR}/${MY_P}

src_compile() {
	append-cflags "-I/usr/include/glib-2.0"
	econf --disable-josua || die # $(use_enable josua) || die
	emake || die
}

src_install() {
	emake DESTDIR=${D} install || die
	dodoc README ChangeLog AUTHORS NEWS eXosip_addidentity.sh
}