summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Crête <tester@gentoo.org>2009-01-05 23:58:47 +0000
committerOlivier Crête <tester@gentoo.org>2009-01-05 23:58:47 +0000
commit11624cfe653e8fd17eab54e722ed378a207a0697 (patch)
treec3474c0f52421ff2854ab31375ef95215f22205b /net-libs/sofia-sip
parentversions bump (diff)
downloadgentoo-2-11624cfe653e8fd17eab54e722ed378a207a0697.tar.gz
gentoo-2-11624cfe653e8fd17eab54e722ed378a207a0697.tar.bz2
gentoo-2-11624cfe653e8fd17eab54e722ed378a207a0697.zip
Version bump
(Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r7 i686)
Diffstat (limited to 'net-libs/sofia-sip')
-rw-r--r--net-libs/sofia-sip/ChangeLog9
-rw-r--r--net-libs/sofia-sip/sofia-sip-1.12.10.ebuild27
2 files changed, 34 insertions, 2 deletions
diff --git a/net-libs/sofia-sip/ChangeLog b/net-libs/sofia-sip/ChangeLog
index 8fe6cb2b6638..b2d362b1f3db 100644
--- a/net-libs/sofia-sip/ChangeLog
+++ b/net-libs/sofia-sip/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-libs/sofia-sip
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/sofia-sip/ChangeLog,v 1.6 2008/07/26 01:05:44 tester Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/sofia-sip/ChangeLog,v 1.7 2009/01/05 23:58:47 tester Exp $
+
+*sofia-sip-1.12.10 (06 Jan 2009)
+
+ 06 Jan 2009; Olivier Crête <tester@gentoo.org> +sofia-sip-1.12.10.ebuild:
+ Version bump
*sofia-sip-1.12.9 (26 Jul 2008)
diff --git a/net-libs/sofia-sip/sofia-sip-1.12.10.ebuild b/net-libs/sofia-sip/sofia-sip-1.12.10.ebuild
new file mode 100644
index 000000000000..266e8240e5c4
--- /dev/null
+++ b/net-libs/sofia-sip/sofia-sip-1.12.10.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/sofia-sip/sofia-sip-1.12.10.ebuild,v 1.1 2009/01/05 23:58:47 tester Exp $
+
+DESCRIPTION="RFC3261 compliant SIP User-Agent library"
+HOMEPAGE="http://sofia-sip.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="LGPL-2.1"
+KEYWORDS="~amd64 ~x86"
+IUSE="ssl"
+
+RDEPEND="dev-libs/glib
+ ssl? ( dev-libs/openssl )"
+DEPEND="${RDEPEND}"
+
+src_compile() {
+ econf $(use_with ssl openssl) || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+
+ dodoc ChangeLog COPYRIGHTS README TODO
+}