diff options
Diffstat (limited to 'net-libs/libeXosip/libeXosip-2.2.2.ebuild')
-rw-r--r-- | net-libs/libeXosip/libeXosip-2.2.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net-libs/libeXosip/libeXosip-2.2.2.ebuild b/net-libs/libeXosip/libeXosip-2.2.2.ebuild new file mode 100644 index 000000000000..2db979988784 --- /dev/null +++ b/net-libs/libeXosip/libeXosip-2.2.2.ebuild @@ -0,0 +1,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.1 2006/01/09 07:34:46 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 || die # $(use_enable josua) || die + emake || die +} + +src_install() { + emake DESTDIR=${D} install || die + dodoc README ChangeLog AUTHORS NEWS eXosip_addidentity.sh +} |