diff options
-rw-r--r-- | net-libs/ortp/ChangeLog | 11 | ||||
-rw-r--r-- | net-libs/ortp/metadata.xml | 3 | ||||
-rw-r--r-- | net-libs/ortp/ortp-0.15.0.ebuild | 79 |
3 files changed, 91 insertions, 2 deletions
diff --git a/net-libs/ortp/ChangeLog b/net-libs/ortp/ChangeLog index bf16ae296b87..88c4d42be0ff 100644 --- a/net-libs/ortp/ChangeLog +++ b/net-libs/ortp/ChangeLog @@ -1,8 +1,15 @@ # ChangeLog for net-libs/ortp # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/ortp/ChangeLog,v 1.33 2009/04/15 02:55:45 volkmar Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/ortp/ChangeLog,v 1.34 2009/04/15 04:59:55 volkmar Exp $ - 15 Apr 2009; Mounir Lamouri <volkmar@gentoo.org> ortp-0.13.1-r1.ebuild: +*ortp-0.15.0 (15 Apr 2009) + + 15 Apr 2009; Mounir Lamouri <volkmar@gentoo.org> metadata.xml, + +ortp-0.15.0.ebuild: + Version bump to 0.15.0. See bug 257798. + + 15 Apr 2009; Mounir Lamouri <volkmar@gentoo.org> metadata.xml, + ortp-0.13.1-r1.ebuild: Fix examples management. See bug 226247. 15 Apr 2009; Mounir Lamouri <volkmar@gentoo.org> ortp-0.7.1-r1.ebuild: diff --git a/net-libs/ortp/metadata.xml b/net-libs/ortp/metadata.xml index 8d1e4dd4a5b8..c4384f969511 100644 --- a/net-libs/ortp/metadata.xml +++ b/net-libs/ortp/metadata.xml @@ -2,4 +2,7 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>voip</herd> + <use> + <flag name='srtp'>Add support for Secure RTP</flag> + </use> </pkgmetadata> diff --git a/net-libs/ortp/ortp-0.15.0.ebuild b/net-libs/ortp/ortp-0.15.0.ebuild new file mode 100644 index 000000000000..9cbdb1b7ae2b --- /dev/null +++ b/net-libs/ortp/ortp-0.15.0.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/ortp/ortp-0.15.0.ebuild,v 1.1 2009/04/15 04:59:55 volkmar Exp $ + +EAPI="2" + +DESCRIPTION="Open Real-time Transport Protocol (RTP, RFC3550) stack" +HOMEPAGE="http://www.linphone.org/index.php/eng/code_review/ortp/" +SRC_URI="http://download.savannah.nongnu.org/releases/linphone/${PN}/sources/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="debug doc examples ipv6 minimal srtp ssl" + +RDEPEND="srtp? ( net-libs/libsrtp ) + ssl? ( dev-libs/openssl )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +src_prepare() { + # to be sure doc is not builded nor installed w/ -doc and doxygen installed + if ! use doc; then + sed -i -e 's/test $DOXYGEN != //' configure \ + || die "patching configure failed" + fi + + # to authorize -srtp even with libsrtp installed + if ! use srtp; then + sed -i -e 's/$have_srtp_headers$have_srtp_lib//' configure \ + || die "patching configure failed" + fi + + # to authorize -ssl even with openssl installed + if ! use ssl; then + sed -i -e 's/SSL_LIBS=".*"/SSL_LIBS=""/' \ + -e 's/openssl\/.*.h/poll.h/' configure \ + || die "patching configure failed" + fi + + # do not build examples programs, see bug 226247 + sed -i -e 's/SUBDIRS = . tests/SUBDIRS = ./' src/Makefile.in \ + || die "patching src/Makefile.in failed" + + # ${P} is added after ${docdir} + if use doc; then + sed -i -e 's/$(docdir)\/$(PACKAGE)-$(VERSION)/$(docdir)/' Makefile.in \ + || die "patching Makefile.in failed" + fi +} + +src_configure() { + # force docdir to standard Gentoo doc directory + # memcheck is for HP-UX only + # mode64bit adds +DA2.0W +DS2.0 CFLAGS wich are needed for HP-UX + # strict adds -Werror, don't want it + econf \ + --docdir=/usr/share/doc/${PF} \ + --disable-memcheck \ + --disable-mode64bit \ + --disable-strict \ + --disable-dependency-tracking \ + --enable-fast-install \ + --enable-libtool-lock \ + $(use_enable debug) \ + $(use_enable ipv6) \ + $(use_enable minimal perf) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed" + + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins src/tests/*.c || die "doins failed" + fi +} |