public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-util/joystick: joystick-20060731.ebuild ChangeLog
@ 2009-01-29  8:24 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-01-29  8:24 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/01/29 08:24:46

  Modified:             joystick-20060731.ebuild ChangeLog
  Log:
  EAPI=2; respect CC
  (Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)

Revision  Changes    Path
1.4                  games-util/joystick/joystick-20060731.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?r1=1.3&r2=1.4

Index: joystick-20060731.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-20060731.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- joystick-20060731.ebuild	19 Apr 2007 22:32:10 -0000	1.3
+++ joystick-20060731.ebuild	29 Jan 2009 08:24:46 -0000	1.4
@@ -1,8 +1,9 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-20060731.ebuild,v 1.3 2007/04/19 22:32:10 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-20060731.ebuild,v 1.4 2009/01/29 08:24:46 mr_bones_ Exp $
 
-inherit eutils
+EAPI=2
+inherit eutils toolchain-funcs
 
 DESCRIPTION="joystick testing utilities"
 HOMEPAGE="http://atrey.karlin.mff.cuni.cz/~vojtech/input/"
@@ -17,16 +18,19 @@
 
 S=${WORKDIR}/utils
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
+src_prepare() {
 	epatch \
 		"${FILESDIR}"/joystick-MCS-defines.patch \
 		"${FILESDIR}"/joystick-jstest-segv.patch
+	sed -i \
+		-e '/^CC/d' \
+		Makefile \
+		|| die 'sed failed'
 }
 
 src_compile() {
 	local SDL
+	tc-export CC
 	use sdl && SDL=1 || SDL=0
 	emake SDL=${SDL} || die "emake failed"
 	emake inputattach || die "inputattach failed"



1.6                  games-util/joystick/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	10 Oct 2006 04:20:39 -0000	1.5
+++ ChangeLog	29 Jan 2009 08:24:46 -0000	1.6
@@ -1,6 +1,10 @@
 # ChangeLog for games-util/joystick
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.5 2006/10/10 04:20:39 dberkholz Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.6 2009/01/29 08:24:46 mr_bones_ Exp $
+
+  29 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  joystick-20060731.ebuild:
+  EAPI=2; respect CC
 
   10 Oct 2006; Donnie Berkholz <dberkholz@gentoo.org>;
   joystick-20060731.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in games-util/joystick: joystick-20060731.ebuild ChangeLog
@ 2009-08-14 17:01 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-08-14 17:01 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/08/14 17:01:26

  Modified:             joystick-20060731.ebuild ChangeLog
  Log:
  block x11-libs/tslib due to inputattach collision (bug #281456)
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.5                  games-util/joystick/joystick-20060731.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?r1=1.4&r2=1.5

Index: joystick-20060731.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-20060731.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- joystick-20060731.ebuild	29 Jan 2009 08:24:46 -0000	1.4
+++ joystick-20060731.ebuild	14 Aug 2009 17:01:26 -0000	1.5
@@ -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/games-util/joystick/joystick-20060731.ebuild,v 1.4 2009/01/29 08:24:46 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-20060731.ebuild,v 1.5 2009/08/14 17:01:26 mr_bones_ Exp $
 
 EAPI=2
 inherit eutils toolchain-funcs
@@ -14,7 +14,8 @@
 KEYWORDS="~amd64 ~ppc x86"
 IUSE="sdl"
 
-DEPEND="sdl? ( media-libs/libsdl )"
+DEPEND="sdl? ( media-libs/libsdl )
+	!x11-libs/tslib"
 
 S=${WORKDIR}/utils
 



1.7                  games-util/joystick/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	29 Jan 2009 08:24:46 -0000	1.6
+++ ChangeLog	14 Aug 2009 17:01:26 -0000	1.7
@@ -1,6 +1,10 @@
 # ChangeLog for games-util/joystick
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.6 2009/01/29 08:24:46 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.7 2009/08/14 17:01:26 mr_bones_ Exp $
+
+  14 Aug 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  joystick-20060731.ebuild:
+  block x11-libs/tslib due to inputattach collision (bug #281456)
 
   29 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org>
   joystick-20060731.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in games-util/joystick: joystick-20060731.ebuild ChangeLog
@ 2009-12-21 15:47 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 4+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-12-21 15:47 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/12/21 15:47:29

  Modified:             joystick-20060731.ebuild ChangeLog
  Log:
  Fix building with -Wl,--as-needed wrt #247514 by Kacper Kowalik.
  (Portage version: 2.2_rc59/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  games-util/joystick/joystick-20060731.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?r1=1.5&r2=1.6

Index: joystick-20060731.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-20060731.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- joystick-20060731.ebuild	14 Aug 2009 17:01:26 -0000	1.5
+++ joystick-20060731.ebuild	21 Dec 2009 15:47:29 -0000	1.6
@@ -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/games-util/joystick/joystick-20060731.ebuild,v 1.5 2009/08/14 17:01:26 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-20060731.ebuild,v 1.6 2009/12/21 15:47:29 ssuominen Exp $
 
 EAPI=2
 inherit eutils toolchain-funcs
@@ -22,7 +22,8 @@
 src_prepare() {
 	epatch \
 		"${FILESDIR}"/joystick-MCS-defines.patch \
-		"${FILESDIR}"/joystick-jstest-segv.patch
+		"${FILESDIR}"/joystick-jstest-segv.patch \
+		"${FILESDIR}"/${P}-asneeded.patch
 	sed -i \
 		-e '/^CC/d' \
 		Makefile \



1.8                  games-util/joystick/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	14 Aug 2009 17:01:26 -0000	1.7
+++ ChangeLog	21 Dec 2009 15:47:29 -0000	1.8
@@ -1,6 +1,10 @@
 # ChangeLog for games-util/joystick
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.7 2009/08/14 17:01:26 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.8 2009/12/21 15:47:29 ssuominen Exp $
+
+  21 Dec 2009; Samuli Suominen <ssuominen@gentoo.org>
+  joystick-20060731.ebuild, +files/joystick-20060731-asneeded.patch:
+  Fix building with -Wl,--as-needed wrt #247514 by Kacper Kowalik.
 
   14 Aug 2009; Michael Sterrett <mr_bones_@gentoo.org>
   joystick-20060731.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in games-util/joystick: joystick-20060731.ebuild ChangeLog
@ 2010-08-12 16:56 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-08-12 16:56 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    10/08/12 16:56:49

  Modified:             joystick-20060731.ebuild ChangeLog
  Log:
  Add libsdl use dep; respect LDFLAGS (bug #332459)
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.7                  games-util/joystick/joystick-20060731.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/joystick/joystick-20060731.ebuild?r1=1.6&r2=1.7

Index: joystick-20060731.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-20060731.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- joystick-20060731.ebuild	21 Dec 2009 15:47:29 -0000	1.6
+++ joystick-20060731.ebuild	12 Aug 2010 16:56:49 -0000	1.7
@@ -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/games-util/joystick/joystick-20060731.ebuild,v 1.6 2009/12/21 15:47:29 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-20060731.ebuild,v 1.7 2010/08/12 16:56:49 mr_bones_ Exp $
 
 EAPI=2
 inherit eutils toolchain-funcs
@@ -14,7 +14,7 @@
 KEYWORDS="~amd64 ~ppc x86"
 IUSE="sdl"
 
-DEPEND="sdl? ( media-libs/libsdl )
+DEPEND="sdl? ( media-libs/libsdl[video] )
 	!x11-libs/tslib"
 
 S=${WORKDIR}/utils



1.9                  games-util/joystick/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/joystick/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/joystick/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/joystick/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	21 Dec 2009 15:47:29 -0000	1.8
+++ ChangeLog	12 Aug 2010 16:56:49 -0000	1.9
@@ -1,6 +1,10 @@
 # ChangeLog for games-util/joystick
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.8 2009/12/21 15:47:29 ssuominen Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.9 2010/08/12 16:56:49 mr_bones_ Exp $
+
+  12 Aug 2010; Michael Sterrett <mr_bones_@gentoo.org>
+  joystick-20060731.ebuild, files/joystick-20060731-asneeded.patch:
+  Add libsdl use dep; respect LDFLAGS (bug #332459)
 
   21 Dec 2009; Samuli Suominen <ssuominen@gentoo.org>
   joystick-20060731.ebuild, +files/joystick-20060731-asneeded.patch:






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

end of thread, other threads:[~2010-08-12 16:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-14 17:01 [gentoo-commits] gentoo-x86 commit in games-util/joystick: joystick-20060731.ebuild ChangeLog Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2010-08-12 16:56 Michael Sterrett (mr_bones_)
2009-12-21 15:47 Samuli Suominen (ssuominen)
2009-01-29  8:24 Michael Sterrett (mr_bones_)

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