public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/xwax: ChangeLog xwax-1.0.ebuild
@ 2011-08-31 21:25 Joe Sapp (nixphoeni)
  0 siblings, 0 replies; 4+ messages in thread
From: Joe Sapp (nixphoeni) @ 2011-08-31 21:25 UTC (permalink / raw
  To: gentoo-commits

nixphoeni    11/08/31 21:25:28

  Modified:             ChangeLog xwax-1.0.ebuild
  Log:
  Addressed the inadvertent use of git during compile
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

Revision  Changes    Path
1.35                 media-sound/xwax/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	4 Aug 2011 02:43:12 -0000	1.34
+++ ChangeLog	31 Aug 2011 21:25:28 -0000	1.35
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/xwax
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.34 2011/08/04 02:43:12 nixphoeni Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.35 2011/08/31 21:25:28 nixphoeni Exp $
+
+  31 Aug 2011; Joe Sapp <nixphoeni@gentoo.org> xwax-1.0.ebuild:
+  Compressed sed in src_prepare() and use it to really eliminate the dependency
+  on git. Combined with passing VERSION to emake, this sets the right version
+  without git.
 
 *xwax-1.0 (04 Aug 2011)
 



1.2                  media-sound/xwax/xwax-1.0.ebuild

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

Index: xwax-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xwax-1.0.ebuild	4 Aug 2011 02:43:12 -0000	1.1
+++ xwax-1.0.ebuild	31 Aug 2011 21:25:28 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v 1.1 2011/08/04 02:43:12 nixphoeni Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v 1.2 2011/08/31 21:25:28 nixphoeni Exp $
 
 EAPI=4
 inherit toolchain-funcs
@@ -16,7 +16,8 @@
 REQUIRED_USE="|| ( cdda mp3 fallback )
 	|| ( alsa jack oss )"
 
-RDEPEND="media-libs/libsdl
+RDEPEND="sys-libs/glibc
+	media-libs/libsdl
 	media-libs/sdl-ttf
 	media-fonts/dejavu
 	alsa? ( media-libs/alsa-lib )
@@ -31,10 +32,10 @@
 src_prepare() {
 	# Remove the forced optimization from 'CFLAGS' and 'LDFLAGS' in
 	# the Makefile
-	# Also replace VERSION so we don't have to depend on git...
-	sed -i -e 's:\(^CFLAGS.*\)-O[0-9]\(.*\):\1\2:' \
-		-e 's:\(^LDFLAGS.*\)-O[0-9]\(.*\):\1\2:' \
-		-e "s:\(^VERSION =\).*:\1 ${PV}:" \
+	# Also remove the dependency on the .version target so we don't need
+	# git just to build
+	sed -i -e 's/\(^\(LD\|C\)FLAGS.*\)-O[0-9]\(.*\)/\1\3/g' \
+		-e 's/^xwax\.o:.*\.version//' \
 		Makefile || die "sed failed"
 
 	# Replace any decoder commands in the import script, if necessary
@@ -66,7 +67,7 @@
 src_compile() {
 	# EXECDIR is the default directory in which xwax will look for
 	# the 'xwax-import' and 'xwax-scan' scripts
-	emake EXECDIR="${EROOT}usr/bin"
+	emake EXECDIR="\$(BINDIR)" VERSION="${PV}"
 }
 
 src_install() {






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/xwax: ChangeLog xwax-1.0.ebuild
@ 2012-01-27 15:41 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-01-27 15:41 UTC (permalink / raw
  To: gentoo-commits

ago         12/01/27 15:41:31

  Modified:             ChangeLog xwax-1.0.ebuild
  Log:
  Stable for amd64, wrt bug #400415
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.36                 media-sound/xwax/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	31 Aug 2011 21:25:28 -0000	1.35
+++ ChangeLog	27 Jan 2012 15:41:31 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/xwax
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.35 2011/08/31 21:25:28 nixphoeni Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.36 2012/01/27 15:41:31 ago Exp $
+
+  27 Jan 2012; Agostino Sarubbo <ago@gentoo.org> xwax-1.0.ebuild:
+  Stable for amd64, wrt bug #400415
 
   31 Aug 2011; Joe Sapp <nixphoeni@gentoo.org> xwax-1.0.ebuild:
   Compressed sed in src_prepare() and use it to really eliminate the dependency



1.3                  media-sound/xwax/xwax-1.0.ebuild

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

Index: xwax-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xwax-1.0.ebuild	31 Aug 2011 21:25:28 -0000	1.2
+++ xwax-1.0.ebuild	27 Jan 2012 15:41:31 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v 1.2 2011/08/31 21:25:28 nixphoeni Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v 1.3 2012/01/27 15:41:31 ago Exp $
 
 EAPI=4
 inherit toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE="alsa jack oss cdda mp3 +fallback"
 REQUIRED_USE="|| ( cdda mp3 fallback )
 	|| ( alsa jack oss )"






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/xwax: ChangeLog xwax-1.0.ebuild
@ 2012-01-28 14:44 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-01-28 14:44 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/01/28 14:44:54

  Modified:             ChangeLog xwax-1.0.ebuild
  Log:
  x86 stable wrt bug #400415
  
  (Portage version: 2.1.10.44/cvs/Linux i686)

Revision  Changes    Path
1.37                 media-sound/xwax/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	27 Jan 2012 15:41:31 -0000	1.36
+++ ChangeLog	28 Jan 2012 14:44:54 -0000	1.37
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/xwax
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.36 2012/01/27 15:41:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.37 2012/01/28 14:44:54 phajdan.jr Exp $
+
+  28 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> xwax-1.0.ebuild:
+  x86 stable wrt bug #400415
 
   27 Jan 2012; Agostino Sarubbo <ago@gentoo.org> xwax-1.0.ebuild:
   Stable for amd64, wrt bug #400415



1.4                  media-sound/xwax/xwax-1.0.ebuild

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

Index: xwax-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xwax-1.0.ebuild	27 Jan 2012 15:41:31 -0000	1.3
+++ xwax-1.0.ebuild	28 Jan 2012 14:44:54 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v 1.3 2012/01/27 15:41:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v 1.4 2012/01/28 14:44:54 phajdan.jr Exp $
 
 EAPI=4
 inherit toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="alsa jack oss cdda mp3 +fallback"
 REQUIRED_USE="|| ( cdda mp3 fallback )
 	|| ( alsa jack oss )"






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/xwax: ChangeLog xwax-1.0.ebuild
@ 2012-02-25 15:10 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-02-25 15:10 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/02/25 15:10:13

  Modified:             ChangeLog xwax-1.0.ebuild
  Log:
  ppc/ppc64 stable wrt #400415
  
  (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)

Revision  Changes    Path
1.39                 media-sound/xwax/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	30 Jan 2012 01:14:47 -0000	1.38
+++ ChangeLog	25 Feb 2012 15:10:13 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/xwax
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.38 2012/01/30 01:14:47 nixphoeni Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/ChangeLog,v 1.39 2012/02/25 15:10:13 ssuominen Exp $
+
+  25 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> xwax-1.0.ebuild:
+  ppc/ppc64 stable wrt #400415
 
 *xwax-1.1 (29 Jan 2012)
 



1.5                  media-sound/xwax/xwax-1.0.ebuild

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

Index: xwax-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xwax-1.0.ebuild	28 Jan 2012 14:44:54 -0000	1.4
+++ xwax-1.0.ebuild	25 Feb 2012 15:10:13 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v 1.4 2012/01/28 14:44:54 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/xwax/xwax-1.0.ebuild,v 1.5 2012/02/25 15:10:13 ssuominen Exp $
 
 EAPI=4
 inherit toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="alsa jack oss cdda mp3 +fallback"
 REQUIRED_USE="|| ( cdda mp3 fallback )
 	|| ( alsa jack oss )"






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

end of thread, other threads:[~2012-02-25 15:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-31 21:25 [gentoo-commits] gentoo-x86 commit in media-sound/xwax: ChangeLog xwax-1.0.ebuild Joe Sapp (nixphoeni)
  -- strict thread matches above, loose matches on Subject: below --
2012-01-27 15:41 Agostino Sarubbo (ago)
2012-01-28 14:44 PaweA Hajdan (phajdan.jr)
2012-02-25 15:10 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