summaryrefslogtreecommitdiff
blob: 6de8b90d1457a9ceee7aaaee14f915c56300695d (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.3.ebuild,v 1.1 2006/06/08 07:12:57 dragonheart 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() {
	make DESTDIR=${D} install || die
	dodoc README ChangeLog AUTHORS NEWS eXosip_addidentity.sh
}