public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/sndpeek: ChangeLog sndpeek-1.3-r1.ebuild
@ 2008-06-28 10:45 Cedric Krier (cedk)
  0 siblings, 0 replies; 4+ messages in thread
From: Cedric Krier (cedk) @ 2008-06-28 10:45 UTC (permalink / raw
  To: gentoo-commits

cedk        08/06/28 10:45:42

  Modified:             ChangeLog
  Added:                sndpeek-1.3-r1.ebuild
  Log:
  Add patch for gcc-4.3 for bug #229211
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.3                  media-sound/sndpeek/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	5 Apr 2008 10:41:09 -0000	1.2
+++ ChangeLog	28 Jun 2008 10:45:42 -0000	1.3
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/sndpeek
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.2 2008/04/05 10:41:09 cedk Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.3 2008/06/28 10:45:42 cedk Exp $
+
+*sndpeek-1.3-r1 (28 Jun 2008)
+
+  28 Jun 2008; Cédric Krier <cedk@gentoo.org>
+  +files/sndpeek-1.3-gcc-4.3.patch, +sndpeek-1.3-r1.ebuild:
+  Add patch for gcc-4.3 for bug #229211
 
   05 Apr 2008; Cédric Krier <cedk@gentoo.org>
   files/sndpeek-1.3-makefile.patch:



1.1                  media-sound/sndpeek/sndpeek-1.3-r1.ebuild

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

Index: sndpeek-1.3-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/sndpeek-1.3-r1.ebuild,v 1.1 2008/06/28 10:45:42 cedk Exp $

inherit eutils toolchain-funcs

DESCRIPTION="real-time audio visualization"
HOMEPAGE="http://soundlab.cs.princeton.edu/software/sndpeek/"
SRC_URI="http://soundlab.cs.princeton.edu/software/${PN}/files/${P}.tgz"

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

DEPEND="virtual/glut
	virtual/opengl
	virtual/glu
	x11-libs/libXmu
	x11-libs/libX11
	x11-libs/libXext
	jack? ( media-sound/jack-audio-connection-kit )
	alsa? ( media-libs/alsa-lib )"
RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}/${P}-makefile.patch"
	epatch "${FILESDIR}/${P}-gcc-4.3.patch"
}

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_compile() {
	cd "${S}/src/sndpeek"

	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}"
	emake -f "makefile.${backend}" CC=$(tc-getCC) CXX=$(tc-getCXX) || die "emake failed"
}

src_install() {
	dobin src/sndpeek/sndpeek

	dodoc AUTHORS README THANKS TODO VERSIONS
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in media-sound/sndpeek: ChangeLog sndpeek-1.3-r1.ebuild
@ 2009-06-06  7:57 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-06-06  7:57 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/06/06 07:57:49

  Modified:             ChangeLog sndpeek-1.3-r1.ebuild
  Log:
  Fix building with GCC 4.4 and keyword ~amd64 wrt #272377.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  media-sound/sndpeek/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	28 Jun 2008 10:45:42 -0000	1.3
+++ ChangeLog	6 Jun 2009 07:57:49 -0000	1.4
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/sndpeek
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.3 2008/06/28 10:45:42 cedk Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.4 2009/06/06 07:57:49 ssuominen Exp $
+
+  06 Jun 2009; Samuli Suominen <ssuominen@gentoo.org> sndpeek-1.3-r1.ebuild,
+  +files/sndpeek-1.3-gcc-4.4.patch:
+  Fix building with GCC 4.4 and keyword ~amd64 wrt #272377.
 
 *sndpeek-1.3-r1 (28 Jun 2008)
 



1.2                  media-sound/sndpeek/sndpeek-1.3-r1.ebuild

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

Index: sndpeek-1.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sndpeek/sndpeek-1.3-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sndpeek-1.3-r1.ebuild	28 Jun 2008 10:45:42 -0000	1.1
+++ sndpeek-1.3-r1.ebuild	6 Jun 2009 07:57:49 -0000	1.2
@@ -1,7 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/sndpeek-1.3-r1.ebuild,v 1.1 2008/06/28 10:45:42 cedk Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/sndpeek-1.3-r1.ebuild,v 1.2 2009/06/06 07:57:49 ssuominen Exp $
 
+EAPI=2
 inherit eutils toolchain-funcs
 
 DESCRIPTION="real-time audio visualization"
@@ -10,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="oss jack alsa"
 
 DEPEND="virtual/glut
@@ -23,11 +24,10 @@
 	alsa? ( media-libs/alsa-lib )"
 RDEPEND="${DEPEND}"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	epatch "${FILESDIR}/${P}-makefile.patch"
-	epatch "${FILESDIR}/${P}-gcc-4.3.patch"
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-makefile.patch \
+		"${FILESDIR}"/${P}-gcc-4.3.patch \
+		"${FILESDIR}"/${P}-gcc-4.4.patch
 }
 
 pkg_setup() {
@@ -55,11 +55,11 @@
 		backend="oss"
 	fi
 	einfo "Compiling against ${backend}"
-	emake -f "makefile.${backend}" CC=$(tc-getCC) CXX=$(tc-getCXX) || die "emake failed"
+	emake -f "makefile.${backend}" CC=$(tc-getCC) \
+		CXX=$(tc-getCXX) || die "emake failed"
 }
 
 src_install() {
-	dobin src/sndpeek/sndpeek
-
+	dobin src/sndpeek/sndpeek || die "dobin failed"
 	dodoc AUTHORS README THANKS TODO VERSIONS
 }






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

* [gentoo-commits] gentoo-x86 commit in media-sound/sndpeek: ChangeLog sndpeek-1.3-r1.ebuild
@ 2009-07-13 20:36 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-07-13 20:36 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/07/13 20:36:07

  Modified:             ChangeLog sndpeek-1.3-r1.ebuild
  Log:
  Missing libsndfile dep wrt #277543, thanks to Dave Curtis for reporting.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  media-sound/sndpeek/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	6 Jun 2009 07:57:49 -0000	1.4
+++ ChangeLog	13 Jul 2009 20:36:07 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/sndpeek
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.4 2009/06/06 07:57:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.5 2009/07/13 20:36:07 ssuominen Exp $
+
+  13 Jul 2009; Samuli Suominen <ssuominen@gentoo.org> sndpeek-1.3-r1.ebuild:
+  Missing libsndfile dep wrt #277543, thanks to Dave Curtis for reporting.
 
   06 Jun 2009; Samuli Suominen <ssuominen@gentoo.org> sndpeek-1.3-r1.ebuild,
   +files/sndpeek-1.3-gcc-4.4.patch:



1.3                  media-sound/sndpeek/sndpeek-1.3-r1.ebuild

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

Index: sndpeek-1.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sndpeek/sndpeek-1.3-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sndpeek-1.3-r1.ebuild	6 Jun 2009 07:57:49 -0000	1.2
+++ sndpeek-1.3-r1.ebuild	13 Jul 2009 20:36:07 -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/media-sound/sndpeek/sndpeek-1.3-r1.ebuild,v 1.2 2009/06/06 07:57:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/sndpeek-1.3-r1.ebuild,v 1.3 2009/07/13 20:36:07 ssuominen Exp $
 
 EAPI=2
 inherit eutils toolchain-funcs
@@ -14,15 +14,16 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="oss jack alsa"
 
-DEPEND="virtual/glut
+RDEPEND="virtual/glut
 	virtual/opengl
 	virtual/glu
 	x11-libs/libXmu
 	x11-libs/libX11
 	x11-libs/libXext
+	media-libs/libsndfile
 	jack? ( media-sound/jack-audio-connection-kit )
 	alsa? ( media-libs/alsa-lib )"
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}"
 
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-makefile.patch \






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

* [gentoo-commits] gentoo-x86 commit in media-sound/sndpeek: ChangeLog sndpeek-1.3-r1.ebuild
@ 2009-08-09 10:45 Cedric Krier (cedk)
  0 siblings, 0 replies; 4+ messages in thread
From: Cedric Krier (cedk) @ 2009-08-09 10:45 UTC (permalink / raw
  To: gentoo-commits

cedk        09/08/09 10:45:37

  Modified:             ChangeLog
  Removed:              sndpeek-1.3-r1.ebuild
  Log:
  Remove old
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.8                  media-sound/sndpeek/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	9 Aug 2009 10:43:12 -0000	1.7
+++ ChangeLog	9 Aug 2009 10:45:37 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/sndpeek
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.7 2009/08/09 10:43:12 cedk Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.8 2009/08/09 10:45:37 cedk Exp $
+
+  09 Aug 2009; Cédric Krier <cedk@gentoo.org> -sndpeek-1.3-r1.ebuild:
+  Remove old
 
   09 Aug 2009; Cédric Krier <cedk@gentoo.org> sndpeek-1.3-r2.ebuild:
   Add einfo for eselect update and use backend's Makefile to clean up






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

end of thread, other threads:[~2009-08-09 10:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-13 20:36 [gentoo-commits] gentoo-x86 commit in media-sound/sndpeek: ChangeLog sndpeek-1.3-r1.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2009-08-09 10:45 Cedric Krier (cedk)
2009-06-06  7:57 Samuli Suominen (ssuominen)
2008-06-28 10:45 Cedric Krier (cedk)

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