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.7.ebuild
@ 2010-02-18 19:08 Peter Volkov (pva)
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Volkov (pva) @ 2010-02-18 19:08 UTC (permalink / raw
  To: gentoo-commits

pva         10/02/18 19:08:39

  Modified:             ChangeLog
  Added:                opal-3.6.7.ebuild
  Log:
  Version bump.
  (Portage version: 2.1.7.17/cvs/Linux x86_64)

Revision  Changes    Path
1.60                 net-libs/opal/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	17 Dec 2009 16:38:09 -0000	1.59
+++ ChangeLog	18 Feb 2010 19:08:39 -0000	1.60
@@ -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.59 2009/12/17 16:38:09 armin76 Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.60 2010/02/18 19:08:39 pva Exp $
+
+*opal-3.6.7 (18 Feb 2010)
+
+  18 Feb 2010; Peter Volkov <pva@gentoo.org> +opal-3.6.7.ebuild:
+  Version bump.
 
   17 Dec 2009; Raúl Porcel <armin76@gentoo.org> opal-3.6.4.ebuild,
   opal-3.6.4-r1.ebuild, opal-3.6.6.ebuild:



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

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

Index: opal-3.6.7.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v 1.1 2010/02/18 19:08:39 pva Exp $

EAPI="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/"
SRC_URI="mirror://sourceforge/opalvoip/${P}.tar.bz2
	doc? ( mirror://sourceforge/opalvoip/${P}-htmldoc.tar.bz2 )"

LICENSE="MPL-1.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~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.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] )
	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() {
	# workaround for bug 282838
	append-flags "-fno-visibility-inlines-hidden"

	# 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.7.ebuild
@ 2010-02-25  0:22 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 4+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-02-25  0:22 UTC (permalink / raw
  To: gentoo-commits

robbat2     10/02/25 00:22:31

  Modified:             ChangeLog opal-3.6.7.ebuild
  Log:
  Latest opal requires a new ptlib during configure phase: Package requirements (ptlib >= 2.6.6) were not met.
  (Portage version: 2.2_rc63/cvs/Linux x86_64)

Revision  Changes    Path
1.61                 net-libs/opal/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -p -w -b -B -u -u -r1.60 -r1.61
--- ChangeLog	18 Feb 2010 19:08:39 -0000	1.60
+++ ChangeLog	25 Feb 2010 00:22:30 -0000	1.61
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/opal
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.60 2010/02/18 19:08:39 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.61 2010/02/25 00:22:30 robbat2 Exp $
+
+  25 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> opal-3.6.7.ebuild:
+  Latest opal requires a new ptlib during configure phase: Package
+  requirements (ptlib >= 2.6.6) were not met.
 
 *opal-3.6.7 (18 Feb 2010)
 



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

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

Index: opal-3.6.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -p -w -b -B -u -u -r1.1 -r1.2
--- opal-3.6.7.ebuild	18 Feb 2010 19:08:39 -0000	1.1
+++ opal-3.6.7.ebuild	25 Feb 2010 00:22:30 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v 1.1 2010/02/18 19:08:39 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v 1.2 2010/02/25 00:22:30 robbat2 Exp $
 
 EAPI="2"
 
@@ -18,7 +18,7 @@ IUSE="+audio capi celt debug doc dtmf ex
 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.6.4[stun,debug=,audio?,dtmf?,ipv6?,ldap?,ssl?,video?,vxml?,wav?,xml?]
+RDEPEND=">=net-libs/ptlib-2.6.6[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

* [gentoo-commits] gentoo-x86 commit in net-libs/opal: ChangeLog opal-3.6.7.ebuild
@ 2010-02-28 10:43 Peter Volkov (pva)
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Volkov (pva) @ 2010-02-28 10:43 UTC (permalink / raw
  To: gentoo-commits

pva         10/02/28 10:43:10

  Modified:             ChangeLog opal-3.6.7.ebuild
  Log:
  Fixed build issue with newer celt codec, #300629 thank Matti Nykyri for report and Stefan Knoblich for this fix. Updated ptlib dep, bug #306141, thank Andrey Grozin for report.
  (Portage version: 2.1.7.17/cvs/Linux x86_64)

Revision  Changes    Path
1.62                 net-libs/opal/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	25 Feb 2010 00:22:30 -0000	1.61
+++ ChangeLog	28 Feb 2010 10:43:09 -0000	1.62
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/opal
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.61 2010/02/25 00:22:30 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.62 2010/02/28 10:43:09 pva Exp $
+
+  28 Feb 2010; Peter Volkov <pva@gentoo.org> opal-3.6.7.ebuild,
+  +files/opal-3.6.7-celt-0.7-update.patch:
+  Fixed build issue with newer celt codec, #300629 thank Matti Nykyri for
+  report and Stefan Knoblich for this fix. Updated ptlib dep, bug #306141,
+  thank Andrey Grozin for report.
 
   25 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> opal-3.6.7.ebuild:
   Latest opal requires a new ptlib during configure phase: Package



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

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

Index: opal-3.6.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- opal-3.6.7.ebuild	25 Feb 2010 00:22:30 -0000	1.2
+++ opal-3.6.7.ebuild	28 Feb 2010 10:43:09 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v 1.2 2010/02/25 00:22:30 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v 1.3 2010/02/28 10:43:09 pva Exp $
 
 EAPI="2"
 
@@ -87,6 +87,8 @@
 	# upstream patch 2808915
 	epatch "${FILESDIR}"/${PN}-3.6.4-jdkroot.patch
 
+	epatch "${FILESDIR}/${P}-celt-0.7-update.patch"
+
 	# h224 really needs h323 ?
 	# TODO: get a confirmation in ml
 	sed -i -e "s:\(.*HAS_H224.*\), \[OPAL_H323\]:\1:" configure.ac \






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

* [gentoo-commits] gentoo-x86 commit in net-libs/opal: ChangeLog opal-3.6.7.ebuild
@ 2010-06-21 12:48 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-06-21 12:48 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/06/21 12:48:05

  Modified:             ChangeLog opal-3.6.7.ebuild
  Log:
  Fix building with FFmpeg >= 0.6 wrt #324323 by Alexis Ballier.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.63                 net-libs/opal/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/opal/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/opal/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/opal/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	28 Feb 2010 10:43:09 -0000	1.62
+++ ChangeLog	21 Jun 2010 12:48:05 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/opal
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.62 2010/02/28 10:43:09 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/ChangeLog,v 1.63 2010/06/21 12:48:05 ssuominen Exp $
+
+  21 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> opal-3.6.7.ebuild:
+  Fix building with FFmpeg >= 0.6 wrt #324323 by Alexis Ballier.
 
   28 Feb 2010; Peter Volkov <pva@gentoo.org> opal-3.6.7.ebuild,
   +files/opal-3.6.7-celt-0.7-update.patch:



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

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

Index: opal-3.6.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- opal-3.6.7.ebuild	28 Feb 2010 10:43:09 -0000	1.3
+++ opal-3.6.7.ebuild	21 Jun 2010 12:48:05 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v 1.3 2010/02/28 10:43:09 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/opal/opal-3.6.7.ebuild,v 1.4 2010/06/21 12:48:05 ssuominen Exp $
 
 EAPI="2"
 
@@ -55,6 +55,8 @@
 	# workaround for bug 282838
 	append-flags "-fno-visibility-inlines-hidden"
 
+	append-flags -D__STDC_CONSTANT_MACROS #324323
+
 	# 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

end of thread, other threads:[~2010-06-21 12:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-18 19:08 [gentoo-commits] gentoo-x86 commit in net-libs/opal: ChangeLog opal-3.6.7.ebuild Peter Volkov (pva)
  -- strict thread matches above, loose matches on Subject: below --
2010-02-25  0:22 Robin H. Johnson (robbat2)
2010-02-28 10:43 Peter Volkov (pva)
2010-06-21 12:48 Samuli Suominen (ssuominen)

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