public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/opal: ChangeLog opal-3.6.6.ebuild
@ 2009-09-26 13:57 Mounir Lamouri (volkmar)
  0 siblings, 0 replies; 4+ messages in thread
From: Mounir Lamouri (volkmar) @ 2009-09-26 13:57 UTC (permalink / raw
  To: gentoo-commits

volkmar     09/09/26 13:57:09

  Modified:             ChangeLog
  Added:                opal-3.6.6.ebuild
  Log:
  Version bump to 3.6.6.
  (Portage version: 14103-svn/cvs/Linux ppc)

Revision  Changes    Path
1.54                 net-libs/opal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	12 Sep 2009 20:46:11 -0000	1.53
+++ ChangeLog	26 Sep 2009 13:57:09 -0000	1.54
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/opal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.53 2009/09/12 20:46:11 volkmar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.54 2009/09/26 13:57:09 volkmar Exp $
+
+*opal-3.6.6 (24 Sep 2009)
+
+  24 Sep 2009; Mounir Lamouri <volkmar@gentoo.org> +opal-3.6.6.ebuild:
+  Version bump to 3.6.6.
 
   12 Sep 2009; Mounir Lamouri <volkmar@gentoo.org> opal-3.6.4.ebuild,
   opal-3.6.4-r1.ebuild:



1.1                  net-libs/opal/opal-3.6.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?rev=1.1&content-type=text/plain

Index: opal-3.6.6.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v 1.1 2009/09/26 13:57:09 volkmar Exp $

EAPI="2"

inherit eutils autotools toolchain-funcs java-pkg-opt-2

DESCRIPTION="C++ class library normalising numerous telephony protocols"
HOMEPAGE="http://www.opalvoip.org/"
SRC_URI="mirror://sourceforge/opalvoip/${P}.tar.bz2
	doc? ( mirror://sourceforge/opalvoip/${P}-htmldoc.tar.bz2 )"

LICENSE="MPL-1.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="+audio capi celt debug doc dtmf examples fax ffmpeg h224 h281 h323 iax
ipv6 ivr ixj java ldap lid +plugins sbc sip sipim srtp ssl stats swig theora
+video vpb vxml wav x264 x264-static xml"

RDEPEND=">=net-libs/ptlib-2.0.0[stun,debug=,audio?,dtmf?,ipv6?,ldap?,ssl?,video?,vxml?,wav?,xml?]
	>=media-libs/speex-1.2_beta
	fax? ( net-libs/ptlib[asn] )
	h323? ( net-libs/ptlib[asn] )
	ivr? ( net-libs/ptlib[xml,vxml] )
	java? ( >=virtual/jre-1.4 )
	plugins? ( dev-libs/ilbc-rfc3951
		media-sound/gsm
		capi? ( net-dialup/capi4k-utils )
		celt? ( >=media-libs/celt-0.5.0 )
		ffmpeg? ( >=media-video/ffmpeg-0.5[encode] )
		ixj? ( sys-kernel/linux-headers )
		sbc? ( media-libs/libsamplerate )
		theora? ( media-libs/libtheora )
		x264? (	>=media-video/ffmpeg-0.4.7
			media-libs/x264 ) )
	srtp? ( net-libs/libsrtp )"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	>=sys-devel/gcc-3
	java? ( swig? ( || ( dev-lang/swig[java] >dev-lang/swig-1.3.36 ) )
		>=virtual/jdk-1.4 )"

# NOTES:
# ffmpeg[encode] is for h263 and mpeg4
# ssl, xml, vxml, ipv6, dtmf, ldap, audio, wav, and video are use flags
#   herited from ptlib: feature is enabled if ptlib has enabled it
#   however, disabling it if ptlib has it looks hard (coz of buildopts.h)
#   forcing ptlib to disable it for opal is not a solution too
#   atm, accepting the "auto-feature" looks like a good solution
#   (asn is used for fax and config _only_ for examples)
# OPALDIR should not be used anymore but if a package still need it, create it

pkg_setup() {
	# need >=gcc-3
	if [[ $(gcc-major-version) -lt 3 ]]; then
		eerror "You need to use gcc-3 at least."
		eerror "Please change gcc version with 'gcc-config'."
		die "You need to use gcc-3 at least."
	fi

	if use h281 && ! use h224; then
		ewarn "You have enabled h281 but h224 is disabled."
		ewarn "H.281 is over H.224 so you should enable h224 if you want h281."
	fi

	if use x264-static && ! use x264; then
		ewarn "You have enabled x264-static but x264 is disabled."
		ewarn "x264-static is going to be useless if x264 is not enabled."
	fi

	java-pkg-opt-2_pkg_setup
}

src_prepare() {
	# remove visual studio related files from samples/
	if use examples; then
		rm -f samples/*/*.vcproj
		rm -f samples/*/*.sln
		rm -f samples/*/*.dsp
		rm -f samples/*/*.dsw
	fi

	# upstream patch 2808915
	epatch "${FILESDIR}"/${PN}-3.6.4-jdkroot.patch

	# h224 really needs h323 ?
	# TODO: get a confirmation in ml
	sed -i -e "s:\(.*HAS_H224.*\), \[OPAL_H323\]:\1:" configure.ac \
		|| die "sed failed"

	eaclocal
	eautoconf

	# in plugins
	cd plugins/
	eaclocal
	eautoconf
	cd ..

	# disable srtp if srtp is not enabled (prevent auto magic dep)
	# upstream bug 2686485 (fixed in 3.7)
	if ! use srtp; then
		sed -i -e "s/OPAL_SRTP=yes/OPAL_SRTP=no/" configure \
			|| die "patching configure failed"
	fi

	# disable theora if theora is not enabled (prevent auto magic dep)
	# upstream bug 2686488 (fixed in 3.7)
	if ! use theora; then
		sed -i -e "s/HAVE_THEORA=yes/HAVE_THEORA=no/" plugins/configure \
			|| die "patching plugins/configure failed"
	fi

	# disable mpeg4 and h263p if ffmpeg is not enabled (prevent auto magic dep)
	# upstream bug 2686495 (fixed in 3.7)
	if ! use ffmpeg; then
		sed -i -e "s/HAVE_H263P=yes/HAVE_H263P=no/" plugins/configure \
			|| die "patching plugins/configure failed"
		sed -i -e "s/HAVE_MPEG4=yes/HAVE_MPEG4=no/" plugins/configure \
			|| die "patching plugins/configure failed"
	fi

	# disable celt if celt is not enabled (prevent auto magic dep)
	# already in repository
	if ! use celt; then
		sed -i -e "s/HAVE_CELT=yes/HAVE_CELT=no/" plugins/configure \
			|| die "sed failed"
	fi

	# fix gsm wav49 support check, upstream bug 2686500 (fixed in 3.7)
	if use plugins; then
		sed -i -e "s:gsm\.h:gsm/gsm.h:" plugins/configure \
			|| die "patching plugins/configure failed"
	fi

	# fix automatic swig detection, upstream bug 2712521 (upstream reject it)
	if ! use swig; then
		sed -i -e "/^SWIG=/d" configure || die "patching configure failed"
	fi

	java-pkg-opt-2_src_prepare
}

src_configure() {
	local forcedconf=""

	# fix bug 277233, upstream bug 2820939
	if use fax; then
		forcedconf="${forcedconf} --enable-statistics"
	fi

	# --with-libavcodec-source-dir should _not_ be set, it's for trunk sources
	# versioncheck: check for ptlib version
	# shared: should always be enabled for a lib
	# localspeex, localspeexdsp, localgsm, localilbc: never use bundled libs
	# samples: only build some samples, useless
	# libavcodec-stackalign-hack: prevent hack (default disable by upstream)
	# default-to-full-capabilties: default enable by upstream
	# aec: atm, only used when bundled speex, so it's painless for us
	# zrtp doesn't depend on net-libs/libzrtpcpp but on libzrtp from
	# 	http://zfoneproject.com/ wich is not in portage
	# msrp: highly experimental
	# spandsp: doesn't work with newest spandsp, upstream bug 2796047
	# g711plc: force enable
	# rfc4103: not really used, upstream bug 2795831
	# t38, spandsp: merged in fax
	# h450, h460, h501: merged in h323 (they are additional features of h323)
	econf \
		--enable-versioncheck \
		--enable-shared \
		--disable-zrtp \
		--disable-localspeex \
		--disable-localspeexdsp \
		--disable-localgsm \
		--disable-localilbc \
		--disable-samples \
		--disable-libavcodec-stackalign-hack \
		--enable-default-to-full-capabilties \
		--enable-aec \
		--disable-msrp \
		--disable-spandsp \
		--enable-g711plc \
		--enable-rfc4103 \
		$(use_enable debug) \
		$(use_enable capi) \
		$(use_enable fax) \
		$(use_enable fax t38) \
		$(use_enable h224) \
		$(use_enable h281) \
		$(use_enable h323) \
		$(use_enable h323 h450) \
		$(use_enable h323 h460) \
		$(use_enable h323 h501) \
		$(use_enable iax) \
		$(use_enable ivr) \
		$(use_enable ixj) \
		$(use_enable java) \
		$(use_enable lid) \
		$(use_enable plugins) \
		$(use_enable sbc) \
		$(use_enable sip) \
		$(use_enable sipim) \
		$(use_enable stats statistics) \
		$(use_enable video) $(use_enable video rfc4175) \
		$(use_enable vpb) \
		$(use_enable x264 h264) \
		$(use_enable x264-static x264-link-static) \
		${forcedconf}
}

src_compile() {
	local makeopts=""

	use debug && makeopts="debug"

	emake ${makeopts} || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	if use doc; then
		dohtml -r "${WORKDIR}"/html/* docs/* || die "dohtml failed"
	fi

	# ChangeLog is not standard
	dodoc ChangeLog-${PN}-v${PV//./_}.txt || die "dodoc failed"

	if use examples; then
		local exampledir="/usr/share/doc/${PF}/examples"
		local basedir="samples"
		local sampledirs="`ls ${basedir} --hide=configure* \
			--hide=opal_samples.mak.in`"

		# first, install files
		insinto ${exampledir}/
		doins ${basedir}/{configure*,opal_samples*} \
			|| die "doins failed"

		# now, all examples
		for x in ${sampledirs}; do
			insinto ${exampledir}/${x}/
			doins ${basedir}/${x}/* || die "doins failed"
		done

		# some examples need version.h
		insinto "/usr/share/doc/${PF}/"
		doins version.h || die "doins failed"
	fi
}

pkg_postinst() {
	if use examples; then
		ewarn "All examples have been installed, some of them will not work on your system"
		ewarn "it will depend of the enabled USE flags in ptlib and opal"
	fi

	if ! use plugins || ! use audio || ! use video; then
		ewarn "You have disabled audio, video or plugins USE flags."
		ewarn "Most audio/video features or plugins have been disabled silently"
		ewarn "even if enabled via USE flags."
		ewarn "Having a feature enabled via USE flag but disabled can lead to issues."
	fi
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/opal: ChangeLog opal-3.6.6.ebuild
@ 2009-09-29 17:42 Mounir Lamouri (volkmar)
  0 siblings, 0 replies; 4+ messages in thread
From: Mounir Lamouri (volkmar) @ 2009-09-29 17:42 UTC (permalink / raw
  To: gentoo-commits

volkmar     09/09/29 17:42:38

  Modified:             ChangeLog opal-3.6.6.ebuild
  Log:
  Filter -fvisibility-inlines-hidden as a workaround for bug 282838.
  (Portage version: 14420-svn/cvs/Linux ppc)

Revision  Changes    Path
1.55                 net-libs/opal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?r1=1.54&r2=1.55

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	26 Sep 2009 13:57:09 -0000	1.54
+++ ChangeLog	29 Sep 2009 17:42:38 -0000	1.55
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/opal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.54 2009/09/26 13:57:09 volkmar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.55 2009/09/29 17:42:38 volkmar Exp $
+
+  29 Sep 2009; Mounir Lamouri <volkmar@gentoo.org> opal-3.6.6.ebuild:
+  Filter -fvisibility-inlines-hidden as a workaround for bug 282838
 
 *opal-3.6.6 (24 Sep 2009)
 



1.2                  net-libs/opal/opal-3.6.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?r1=1.1&r2=1.2

Index: opal-3.6.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- opal-3.6.6.ebuild	26 Sep 2009 13:57:09 -0000	1.1
+++ opal-3.6.6.ebuild	29 Sep 2009 17:42:38 -0000	1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v 1.1 2009/09/26 13:57:09 volkmar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v 1.2 2009/09/29 17:42:38 volkmar Exp $
 
 EAPI="2"
 
-inherit eutils autotools toolchain-funcs java-pkg-opt-2
+inherit eutils autotools toolchain-funcs java-pkg-opt-2 flag-o-matic
 
 DESCRIPTION="C++ class library normalising numerous telephony protocols"
 HOMEPAGE="http://www.opalvoip.org/"
@@ -52,6 +52,9 @@
 # OPALDIR should not be used anymore but if a package still need it, create it
 
 pkg_setup() {
+	# workaround for bug 282838
+	filter-flags "-fvisibility-inlines-hidden"
+
 	# need >=gcc-3
 	if [[ $(gcc-major-version) -lt 3 ]]; then
 		eerror "You need to use gcc-3 at least."






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/opal: ChangeLog opal-3.6.6.ebuild
@ 2009-09-29 18:03 Mounir Lamouri (volkmar)
  0 siblings, 0 replies; 4+ messages in thread
From: Mounir Lamouri (volkmar) @ 2009-09-29 18:03 UTC (permalink / raw
  To: gentoo-commits

volkmar     09/09/29 18:03:39

  Modified:             ChangeLog opal-3.6.6.ebuild
  Log:
  Changing filter-flags to append-flags after ssuominen advice.
  (Portage version: 14420-svn/cvs/Linux ppc)

Revision  Changes    Path
1.57                 net-libs/opal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?r1=1.56&r2=1.57

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	29 Sep 2009 17:51:30 -0000	1.56
+++ ChangeLog	29 Sep 2009 18:03:39 -0000	1.57
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/opal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.56 2009/09/29 17:51:30 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.57 2009/09/29 18:03:39 volkmar Exp $
+
+  29 Sep 2009; Mounir Lamouri <volkmar@gentoo.org> opal-3.6.6.ebuild:
+  Changing filter-flags to append-flags after ssuominen advice.
 
   29 Sep 2009; Tobias Klausmann <klausman@gentoo.org> opal-3.6.4-r1.ebuild:
   Keyworded on alpha, bug #276355



1.3                  net-libs/opal/opal-3.6.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?r1=1.2&r2=1.3

Index: opal-3.6.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- opal-3.6.6.ebuild	29 Sep 2009 17:42:38 -0000	1.2
+++ opal-3.6.6.ebuild	29 Sep 2009 18:03:39 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v 1.2 2009/09/29 17:42:38 volkmar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v 1.3 2009/09/29 18:03:39 volkmar Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="MPL-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86"
 IUSE="+audio capi celt debug doc dtmf examples fax ffmpeg h224 h281 h323 iax
 ipv6 ivr ixj java ldap lid +plugins sbc sip sipim srtp ssl stats swig theora
 +video vpb vxml wav x264 x264-static xml"
@@ -53,7 +53,7 @@
 
 pkg_setup() {
 	# workaround for bug 282838
-	filter-flags "-fvisibility-inlines-hidden"
+	append-flags "-fno-visibility-inlines-hidden"
 
 	# need >=gcc-3
 	if [[ $(gcc-major-version) -lt 3 ]]; then






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-libs/opal: ChangeLog opal-3.6.6.ebuild
@ 2009-10-11 12:42 Paul de Vrieze (pauldv)
  0 siblings, 0 replies; 4+ messages in thread
From: Paul de Vrieze (pauldv) @ 2009-10-11 12:42 UTC (permalink / raw
  To: gentoo-commits

pauldv      09/10/11 12:42:29

  Modified:             ChangeLog opal-3.6.6.ebuild
  Log:
  Update ptlib dependency to require a version bigger than 2.6.2 which breaks compilation
  (Portage version: 2.2_rc44/cvs/Linux i686)

Revision  Changes    Path
1.58                 net-libs/opal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?rev=1.58&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?rev=1.58&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/ChangeLog?r1=1.57&r2=1.58

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	29 Sep 2009 18:03:39 -0000	1.57
+++ ChangeLog	11 Oct 2009 12:42:28 -0000	1.58
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/opal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.57 2009/09/29 18:03:39 volkmar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.58 2009/10/11 12:42:28 pauldv Exp $
+
+  11 Oct 2009; Paul de Vrieze <pauldv@gentoo.org> opal-3.6.6.ebuild:
+  Update version dependency for ptlib. Version 2.6.2 is certainly broken.
+  While this version is no longer in the tree people can still have it
+  installed. Set the minimal version to 2.6.4 as that is in the tree, and 
+  the actual required version is not clear.
 
   29 Sep 2009; Mounir Lamouri <volkmar@gentoo.org> opal-3.6.6.ebuild:
   Changing filter-flags to append-flags after ssuominen advice.



1.4                  net-libs/opal/opal-3.6.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild?r1=1.3&r2=1.4

Index: opal-3.6.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- opal-3.6.6.ebuild	29 Sep 2009 18:03:39 -0000	1.3
+++ opal-3.6.6.ebuild	11 Oct 2009 12:42:28 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v 1.3 2009/09/29 18:03:39 volkmar Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.6.ebuild,v 1.4 2009/10/11 12:42:28 pauldv Exp $
 
 EAPI="2"
 
@@ -18,7 +18,7 @@
 ipv6 ivr ixj java ldap lid +plugins sbc sip sipim srtp ssl stats swig theora
 +video vpb vxml wav x264 x264-static xml"
 
-RDEPEND=">=net-libs/ptlib-2.0.0[stun,debug=,audio?,dtmf?,ipv6?,ldap?,ssl?,video?,vxml?,wav?,xml?]
+RDEPEND=">=net-libs/ptlib-2.6.4[stun,debug=,audio?,dtmf?,ipv6?,ldap?,ssl?,video?,vxml?,wav?,xml?]
 	>=media-libs/speex-1.2_beta
 	fax? ( net-libs/ptlib[asn] )
 	h323? ( net-libs/ptlib[asn] )






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-10-11 12:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-29 18:03 [gentoo-commits] gentoo-x86 commit in net-libs/opal: ChangeLog opal-3.6.6.ebuild Mounir Lamouri (volkmar)
  -- strict thread matches above, loose matches on Subject: below --
2009-10-11 12:42 Paul de Vrieze (pauldv)
2009-09-29 17:42 Mounir Lamouri (volkmar)
2009-09-26 13:57 Mounir Lamouri (volkmar)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox