public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/tapestrea: ChangeLog tapestrea-0.1.0.5.ebuild
@ 2009-06-28 23:16 Mark Loeser (halcy0n)
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Loeser (halcy0n) @ 2009-06-28 23:16 UTC (permalink / raw
  To: gentoo-commits

halcy0n     09/06/28 23:16:25

  Modified:             ChangeLog
  Added:                tapestrea-0.1.0.5.ebuild
  Log:
  Version bump and patch by me to fix compilation with gcc-4.3 and 4.4; bug #251259
  (Portage version: 2.2_rc33/cvs/Linux i686)

Revision  Changes    Path
1.3                  media-sound/tapestrea/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/tapestrea/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/tapestrea/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/tapestrea/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/tapestrea/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	28 Apr 2008 15:36:43 -0000	1.2
+++ ChangeLog	28 Jun 2009 23:16:25 -0000	1.3
@@ -1,6 +1,13 @@
 # ChangeLog for media-sound/tapestrea
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/ChangeLog,v 1.2 2008/04/28 15:36:43 phreak Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/ChangeLog,v 1.3 2009/06/28 23:16:25 halcy0n Exp $
+
+*tapestrea-0.1.0.5 (27 Jun 2009)
+
+  27 Jun 2009; Mark Loeser <halcy0n@gentoo.org> +tapestrea-0.1.0.5.ebuild,
+  +files/tapestrea-0.1.0.5-gcc44.patch:
+  Version bump and patch by me to fix compilation with gcc-4.3 and 4.4; bug
+  #251259
 
   28 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml:
   Fix metadata.xml.



1.1                  media-sound/tapestrea/tapestrea-0.1.0.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild?rev=1.1&content-type=text/plain

Index: tapestrea-0.1.0.5.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild,v 1.1 2009/06/28 23:16:25 halcy0n Exp $

EAPI="1"

inherit eutils toolchain-funcs flag-o-matic

DESCRIPTION="Techniques + Paradigms for Expressive Synthesis, Transformation, Rendering of Environmental Audio"
HOMEPAGE="http://taps.cs.princeton.edu/"
SRC_URI="http://taps.cs.princeton.edu/release/files/${P}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="oss jack +alsa doc"

RDEPEND="jack? ( media-sound/jack-audio-connection-kit )
	alsa? ( >=media-libs/alsa-lib-0.9 )
	media-libs/libsndfile
	virtual/glut
	virtual/opengl
	virtual/glu
	>=x11-libs/gtk+-2"
DEPEND="${RDEPEND}
	sys-devel/bison
	sys-devel/flex"

pkg_setup() {
	local cnt=0
	use jack && cnt="$((${cnt} + 1))"
	use alsa && cnt="$((${cnt} + 1))"
	use oss && cnt="$((${cnt} + 1))"
	if [[ "${cnt}" -eq 0 ]] ; then
		eerror "One of the following USE flags is needed: jack, alsa or oss"
		die "Please set one audio engine type"
	elif [[ "${cnt}" -ne 1 ]] ; then
		ewarn "You have set ${P} to use multiple audio engine."
	fi
}

src_unpack() {
	unpack ${A}

	cd "${S}"
	epatch "${FILESDIR}/${P}-gcc44.patch"
}

src_compile() {
	local backend
	if use jack; then
		backend="jack"
	elif use alsa; then
		backend="alsa"
	elif use oss; then
		backend="oss"
	fi
	einfo "Compiling against ${backend}"

	# when compile with athlon or athlon-xp flags
	# chuck crashes on removing a shred with a double free or corruption
	# it happens in Chuck_VM_Stack::shutdown() on the line
	#   SAFE_DELETE_ARRAY( stack );
	replace-cpu-flags athlon athlon-xp i686

	cd "${S}/scripting/chuck-1.2.1.2/src"
	emake -f "makefile.${backend}" CC=$(tc-getCC) CXX=$(tc-getCXX) || die "emake failed"

	cd "${S}/src"
	emake -f "makefile.${backend}" CC=$(tc-getCC) CXX=$(tc-getCXX) || die "emake failed"
}

src_install() {
	dobin src/taps

	dodoc AUTHORS BUGS DEVELOPER PROGRAMMER QUICKSTART README THANKS TODO VERSIONS
	if use doc; then
		for dir in `find examples/* -type d -maxdepth 0`; do
			docinto $dir
			dodoc `find $dir/* -type f -maxdepth 0`
			for dir2 in `find $dir/* -type d -maxdepth 0`; do
				docinto $dir2
				dodoc `find $dir2/* -type f -maxdepth 0`
			done
		done
		docinto doc
		dodoc doc/*
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in media-sound/tapestrea: ChangeLog tapestrea-0.1.0.5.ebuild
@ 2010-09-16 17:18 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 3+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2010-09-16 17:18 UTC (permalink / raw
  To: gentoo-commits

scarabeus    10/09/16 17:18:45

  Modified:             ChangeLog tapestrea-0.1.0.5.ebuild
  Log:
  virtual/glut -> media-libs/glut
  
  (Portage version: 2.2_rc83/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  media-sound/tapestrea/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/tapestrea/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	28 Jun 2009 23:16:25 -0000	1.3
+++ ChangeLog	16 Sep 2010 17:18:45 -0000	1.4
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/tapestrea
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/ChangeLog,v 1.3 2009/06/28 23:16:25 halcy0n Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/ChangeLog,v 1.4 2010/09/16 17:18:45 scarabeus Exp $
+
+  16 Sep 2010; Tomáš Chvátal <scarabeus@gentoo.org>
+  tapestrea-0.1.0.5.ebuild:
+  virtual/glut -> media-libs/glut
 
 *tapestrea-0.1.0.5 (27 Jun 2009)
 



1.3                  media-sound/tapestrea/tapestrea-0.1.0.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild?r1=1.2&r2=1.3

Index: tapestrea-0.1.0.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tapestrea-0.1.0.5.ebuild	3 Aug 2009 13:10:07 -0000	1.2
+++ tapestrea-0.1.0.5.ebuild	16 Sep 2010 17:18:45 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild,v 1.2 2009/08/03 13:10:07 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild,v 1.3 2010/09/16 17:18:45 scarabeus Exp $
 
 EAPI="1"
 
@@ -18,7 +18,7 @@
 RDEPEND="jack? ( media-sound/jack-audio-connection-kit )
 	alsa? ( >=media-libs/alsa-lib-0.9 )
 	media-libs/libsndfile
-	virtual/glut
+	media-libs/freeglut
 	virtual/opengl
 	virtual/glu
 	>=x11-libs/gtk+-2"






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

* [gentoo-commits] gentoo-x86 commit in media-sound/tapestrea: ChangeLog tapestrea-0.1.0.5.ebuild
@ 2011-03-29 12:44 Christoph Mende (angelos)
  0 siblings, 0 replies; 3+ messages in thread
From: Christoph Mende (angelos) @ 2011-03-29 12:44 UTC (permalink / raw
  To: gentoo-commits

angelos     11/03/29 12:44:01

  Modified:             ChangeLog tapestrea-0.1.0.5.ebuild
  Log:
  Fix gtk+ slot deps
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  media-sound/tapestrea/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/tapestrea/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	16 Sep 2010 17:18:45 -0000	1.4
+++ ChangeLog	29 Mar 2011 12:44:01 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/tapestrea
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/ChangeLog,v 1.4 2010/09/16 17:18:45 scarabeus Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/ChangeLog,v 1.5 2011/03/29 12:44:01 angelos Exp $
+
+  29 Mar 2011; Christoph Mende <angelos@gentoo.org> tapestrea-0.1.0.5.ebuild:
+  Fix gtk+ slot deps
 
   16 Sep 2010; Tomáš Chvátal <scarabeus@gentoo.org>
   tapestrea-0.1.0.5.ebuild:



1.4                  media-sound/tapestrea/tapestrea-0.1.0.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild?r1=1.3&r2=1.4

Index: tapestrea-0.1.0.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tapestrea-0.1.0.5.ebuild	16 Sep 2010 17:18:45 -0000	1.3
+++ tapestrea-0.1.0.5.ebuild	29 Mar 2011 12:44:01 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild,v 1.3 2010/09/16 17:18:45 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/tapestrea/tapestrea-0.1.0.5.ebuild,v 1.4 2011/03/29 12:44:01 angelos Exp $
 
 EAPI="1"
 
@@ -21,7 +21,7 @@
 	media-libs/freeglut
 	virtual/opengl
 	virtual/glu
-	>=x11-libs/gtk+-2"
+	x11-libs/gtk+:2"
 DEPEND="${RDEPEND}
 	sys-devel/bison
 	sys-devel/flex"






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

end of thread, other threads:[~2011-03-29 12:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-28 23:16 [gentoo-commits] gentoo-x86 commit in media-sound/tapestrea: ChangeLog tapestrea-0.1.0.5.ebuild Mark Loeser (halcy0n)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-16 17:18 Tomas Chvatal (scarabeus)
2011-03-29 12:44 Christoph Mende (angelos)

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