summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-12-12 04:38:23 +0000
committerMike Frysinger <vapier@gentoo.org>2008-12-12 04:38:23 +0000
commit2cfcf597dae07e094a1f1a318ac7bad144038aaf (patch)
treee40f6031d74cb4abf2ca082a64263b607c8c8b9f /net-libs/libeXosip/libeXosip-3.2.0.ebuild
parentInitial commit, bug 214297, thanks to Jiri Tyr for original ebuilds (diff)
downloadhistorical-2cfcf597dae07e094a1f1a318ac7bad144038aaf.tar.gz
historical-2cfcf597dae07e094a1f1a318ac7bad144038aaf.tar.bz2
historical-2cfcf597dae07e094a1f1a318ac7bad144038aaf.zip
Version bump.
Package-Manager: portage-2.2_rc17/cvs/Linux 2.6.27.8 x86_64
Diffstat (limited to 'net-libs/libeXosip/libeXosip-3.2.0.ebuild')
-rw-r--r--net-libs/libeXosip/libeXosip-3.2.0.ebuild31
1 files changed, 31 insertions, 0 deletions
diff --git a/net-libs/libeXosip/libeXosip-3.2.0.ebuild b/net-libs/libeXosip/libeXosip-3.2.0.ebuild
new file mode 100644
index 000000000000..4ee1e645f862
--- /dev/null
+++ b/net-libs/libeXosip/libeXosip-3.2.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libeXosip/libeXosip-3.2.0.ebuild,v 1.1 2008/12/12 04:38:23 vapier Exp $
+
+MY_PV=${PV%.?}-${PV##*.}
+MY_PV=${PV}
+MY_P=${PN}2-${MY_PV}
+DESCRIPTION="library that hides the complexity of using the SIP protocol for multimedia session establishement"
+HOMEPAGE="http://savannah.nongnu.org/projects/exosip/"
+SRC_URI="http://download.savannah.nongnu.org/releases/exosip/${MY_P}.tar.gz"
+
+KEYWORDS="~amd64 ~ppc ~x86"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE=""
+
+# josua? ( >=net-libs/ortp-0.7.1 )"
+DEPEND=">=net-libs/libosip-3.2.0"
+
+S=${WORKDIR}/${MY_P}
+
+src_compile() {
+ # $(use_enable josua)
+ econf --disable-josua || die
+ emake || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS ChangeLog NEWS README
+}