* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-01-04 17:13 Azamat H. Hackimov
0 siblings, 0 replies; 12+ messages in thread
From: Azamat H. Hackimov @ 2013-01-04 17:13 UTC (permalink / raw
To: gentoo-commits
commit: 6e403f169708b196fc6c8ed6cc01552914401997
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Fri Jan 4 17:12:46 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Fri Jan 4 17:12:46 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=6e403f16
[media-libs/libsdl] Experimental ebuild for 2.0
Package-Manager: portage-2.1.11.31
Manifest-Sign-Key: A018DE8C
---
media-libs/libsdl/ChangeLog | 9 ++-
media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild | 109 +++++++++++++++++++++++++
media-libs/libsdl/metadata.xml | 3 +
3 files changed, 119 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsdl/ChangeLog b/media-libs/libsdl/ChangeLog
index a04de89..1b8d853 100644
--- a/media-libs/libsdl/ChangeLog
+++ b/media-libs/libsdl/ChangeLog
@@ -1,7 +1,13 @@
# ChangeLog for media-libs/libsdl
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*libsdl-2.0.0_pre6799 (04 Jan 2013)
+
+ 04 Jan 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
+ +libsdl-2.0.0_pre6799.ebuild, metadata.xml:
+ [media-libs/libsdl] Experimental ebuild for 2.0
+
*libsdl-1.2.14-r3 (01 Jul 2010)
01 Jul 2010; Locke Shinseiko <wizzleby@gmail.com>
@@ -13,4 +19,3 @@
patch tracker,
fixes the bug introduced by libsdl-1.2.14-click.patch (also from
debian)
-
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild
new file mode 100644
index 0000000..fd8640f
--- /dev/null
+++ b/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild
@@ -0,0 +1,109 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils mercurial
+
+DESCRIPTION="Simple Direct Media Layer"
+HOMEPAGE="http://www.libsdl.org/"
+#SRC_URI=""
+EHG_REPO_URI="http://hg.libsdl.org/SDL/"
+EHG_REVISION=6799
+
+LICENSE="ZLIB"
+SLOT="2"
+KEYWORDS="~amd64 ~x86"
+IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib +video X xinerama xscreensaver"
+
+#FIXME: Replace "gles" deps with "virtual/opengles", after hitting Portage.
+RDEPEND="
+ nas? (
+ media-libs/nas
+ x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXt
+ )
+ X? (
+ x11-libs/libX11
+ x11-libs/libXcursor
+ x11-libs/libXext
+ x11-libs/libXi
+ x11-libs/libXt
+ x11-libs/libXrandr
+ x11-libs/libXrender
+ x11-libs/libXxf86vm
+ )
+ xinerama? ( x11-libs/libXinerama )
+ xscreensaver? ( x11-libs/libXScrnSaver )
+ alsa? ( media-libs/alsa-lib )
+ fusionsound? ( >=media-libs/FusionSound-1.1.1 )
+ pulseaudio? ( >=media-sound/pulseaudio-0.9 )
+ gles? ( || ( media-libs/mesa[gles2] media-libs/mesa[gles] ) )
+ opengl? ( virtual/opengl )
+ tslib? ( x11-libs/tslib )
+"
+
+DEPEND="${RDEPEND}
+ nas? (
+ x11-proto/xextproto
+ x11-proto/xproto
+ )
+ X? (
+ x11-proto/inputproto
+ x11-proto/xextproto
+ x11-proto/xf86vidmodeproto
+ x11-proto/xproto
+ x11-proto/randrproto
+ x11-proto/renderproto
+ )
+ xinerama? ( x11-proto/xineramaproto )
+ xscreensaver? ( x11-proto/scrnsaverproto )
+"
+
+DOCS=( BUGS CREDITS README README.HG README-SDL.txt TODO WhatsNew )
+
+src_configure() {
+ mycmakeargs=(
+ # Disable assertion tests.
+ -DASSERTIONS=disabled
+ # Avoid hard-coding RPATH entries into dynamically linked SDL libraries.
+ -DRPATH=NO
+ # Disable obsolete and/or inapplicable libraries.
+ -DARTS=NO
+ -DESD=NO
+ $(cmake-utils_use 3dnow 3DNOW)
+ $(cmake-utils_use alsa ALSA)
+ $(cmake-utils_use altivec ALTIVEC)
+ $(cmake-utils_use asm ASSEMBLY)
+ $(cmake-utils_use aqua VIDEO_COCOA)
+ $(cmake-utils_use fusionsound FUSIONSOUND)
+ $(cmake-utils_use gles VIDEO_OPENGLES)
+ $(cmake-utils_use mmx MMX)
+ $(cmake-utils_use nas NAS)
+ $(cmake-utils_use opengl VIDEO_OPENGL)
+ $(cmake-utils_use oss OSS)
+ $(cmake-utils_use pulseaudio PULSEAUDIO)
+ $(cmake-utils_use threads PTHREADS)
+ $(cmake-utils_use sse SSE)
+ $(cmake-utils_use sse SSEMATH)
+ $(cmake-utils_use sse2 SSE2)
+ $(cmake-utils_use static-libs SDL_STATIC)
+ $(cmake-utils_use tslib INPUT_TSLIB)
+ $(cmake-utils_use video VIDEO_DUMMY)
+ $(cmake-utils_use X VIDEO_X11)
+ $(cmake-utils_use xcursor VIDEO_X11_XCURSOR)
+ $(cmake-utils_use xinerama VIDEO_X11_XINERAMA)
+ $(cmake-utils_use xinput VIDEO_X11_XINPUT)
+ $(cmake-utils_use xrandr VIDEO_X11_XRANDR)
+ $(cmake-utils_use xscreensaver VIDEO_X11_XSCRNSAVER)
+ $(cmake-utils_use xvidmode VIDEO_X11_XVM)
+ #$(cmake-utils_use joystick SDL_JOYSTICK)
+ )
+ cmake-utils_src_configure
+}
+
+src_install() {
+ cmake-utils_src_install
+}
diff --git a/media-libs/libsdl/metadata.xml b/media-libs/libsdl/metadata.xml
index 0ee2113..6f6b34d 100644
--- a/media-libs/libsdl/metadata.xml
+++ b/media-libs/libsdl/metadata.xml
@@ -20,6 +20,9 @@ PHP, Pike, Python, and Ruby.
</longdescription>
<use>
<flag name="audio">Control audio support (disable at your own risk)</flag>
+ <flag name="asm">Enable assembly for optimization (3dnow, mmx, sse, sse2)</flag>
+ <flag name="fusionsound">Enable FusionSound support</flag>
+ <flag name="gles">Enable OpenGL ES support</flag>
<flag name="joystick">Control joystick support (disable at your own risk)</flag>
<flag name="ps3">Build the PS3 video driver</flag>
<flag name="tslib">Build with tslib support for touchscreen devices</flag>
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-01-07 23:58 Sergey Popov
0 siblings, 0 replies; 12+ messages in thread
From: Sergey Popov @ 2013-01-07 23:58 UTC (permalink / raw
To: gentoo-commits
commit: 6d8938e9a728ebe6c551c03ee6b11de772292dfb
Author: Sergey Popov <admin <AT> pinkbyte <DOT> ru>
AuthorDate: Mon Jan 7 23:57:53 2013 +0000
Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Mon Jan 7 23:57:53 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=6d8938e9
media-libs/libsdl: Use versionator eclass for getting revision
Package-Manager: portage-2.2.0_alpha149
---
media-libs/libsdl/ChangeLog | 3 +++
media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild | 6 ++++--
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/media-libs/libsdl/ChangeLog b/media-libs/libsdl/ChangeLog
index 1b8d853..74bf865 100644
--- a/media-libs/libsdl/ChangeLog
+++ b/media-libs/libsdl/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 07 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> libsdl-2.0.0_pre6799.ebuild:
+ Use versionator eclass for getting revision
+
*libsdl-2.0.0_pre6799 (04 Jan 2013)
04 Jan 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild
index fd8640f..4f24119 100644
--- a/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild
+++ b/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild
@@ -4,13 +4,15 @@
EAPI=5
-inherit cmake-utils mercurial
+inherit cmake-utils mercurial versionator
+
+REV="$(get_version_component_range 4)"
DESCRIPTION="Simple Direct Media Layer"
HOMEPAGE="http://www.libsdl.org/"
#SRC_URI=""
EHG_REPO_URI="http://hg.libsdl.org/SDL/"
-EHG_REVISION=6799
+EHG_REVISION="${REV/pre/}"
LICENSE="ZLIB"
SLOT="2"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-01-09 7:49 Ash Harley
0 siblings, 0 replies; 12+ messages in thread
From: Ash Harley @ 2013-01-09 7:49 UTC (permalink / raw
To: gentoo-commits
commit: ad13aa52cefa3c2c24307b1e477aa53729d62223
Author: Heather <Heather <AT> cynede <DOT> net>
AuthorDate: Wed Jan 9 07:53:13 2013 +0000
Commit: Ash Harley <cynede <AT> outlook <DOT> com>
CommitDate: Wed Jan 9 07:53:13 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=ad13aa52
fix libsdl 2.0.0_pre6799 add xvidmode xinput xrandr xcursor to IUSE
---
media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild
index 4f24119..fcae24b 100644
--- a/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild
+++ b/media-libs/libsdl/libsdl-2.0.0_pre6799.ebuild
@@ -17,7 +17,7 @@ EHG_REVISION="${REV/pre/}"
LICENSE="ZLIB"
SLOT="2"
KEYWORDS="~amd64 ~x86"
-IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib +video X xinerama xscreensaver"
+IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib +video X +xcursor +xinput xinerama xscreensaver xrandr xvidmode"
#FIXME: Replace "gles" deps with "virtual/opengles", after hitting Portage.
RDEPEND="
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-03-11 17:36 Azamat H. Hackimov
0 siblings, 0 replies; 12+ messages in thread
From: Azamat H. Hackimov @ 2013-03-11 17:36 UTC (permalink / raw
To: gentoo-commits
commit: 5a318feee9768a6695eac17384220b3ddc9af11b
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Mar 11 17:36:09 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Mon Mar 11 17:36:09 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=5a318fee
[media-libs/libsdl] Playing with multilib eclass.
Package-Manager: portage-2.1.11.52
Manifest-Sign-Key: A018DE8C
---
media-libs/libsdl/ChangeLog | 6 ++++++
...e6963.ebuild => libsdl-2.0.0_pre6963-r1.ebuild} | 6 +++---
2 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/media-libs/libsdl/ChangeLog b/media-libs/libsdl/ChangeLog
index 60b8f6a..eaeefae 100644
--- a/media-libs/libsdl/ChangeLog
+++ b/media-libs/libsdl/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*libsdl-2.0.0_pre6963-r1 (11 Mar 2013)
+
+ 11 Mar 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
+ +libsdl-2.0.0_pre6963-r1.ebuild, -libsdl-2.0.0_pre6963.ebuild:
+ [media-libs/libsdl] Playing with multilib eclass.
+
*libsdl-2.0.0_pre6963 (05 Mar 2013)
05 Mar 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre6963.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre6963-r1.ebuild
similarity index 96%
rename from media-libs/libsdl/libsdl-2.0.0_pre6963.ebuild
rename to media-libs/libsdl/libsdl-2.0.0_pre6963-r1.ebuild
index 0ec7027..6342422 100644
--- a/media-libs/libsdl/libsdl-2.0.0_pre6963.ebuild
+++ b/media-libs/libsdl/libsdl-2.0.0_pre6963-r1.ebuild
@@ -4,7 +4,7 @@
EAPI=5
-inherit cmake-utils mercurial versionator
+inherit cmake-multilib mercurial versionator
REV="$(get_version_component_range 4)"
@@ -103,9 +103,9 @@ src_configure() {
$(cmake-utils_use X VIDEO_X11_XVM)
#$(cmake-utils_use joystick SDL_JOYSTICK)
)
- cmake-utils_src_configure
+ cmake-multilib_src_configure
}
src_install() {
- cmake-utils_src_install
+ cmake-multilib_src_install
}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-03-14 15:13 Azamat H. Hackimov
0 siblings, 0 replies; 12+ messages in thread
From: Azamat H. Hackimov @ 2013-03-14 15:13 UTC (permalink / raw
To: gentoo-commits
commit: 58ba100a69f36c4f2b2050ad9286ca5c99b9d90a
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Thu Mar 14 15:12:43 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Thu Mar 14 15:12:43 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=58ba100a
[media-libs/libsdl] 7001 revision for Steam dependency.
Package-Manager: portage-2.1.11.52
Manifest-Sign-Key: A018DE8C
---
media-libs/libsdl/ChangeLog | 6 ++++++
...e6963-r2.ebuild => libsdl-2.0.0_pre7001.ebuild} | 0
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/media-libs/libsdl/ChangeLog b/media-libs/libsdl/ChangeLog
index 1ad8f0d..bd66cbf 100644
--- a/media-libs/libsdl/ChangeLog
+++ b/media-libs/libsdl/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*libsdl-2.0.0_pre7001 (14 Mar 2013)
+
+ 14 Mar 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
+ +libsdl-2.0.0_pre7001.ebuild, -libsdl-2.0.0_pre6963-r2.ebuild:
+ [media-libs/libsdl] 7001 revision for Steam dependency.
+
*libsdl-2.0.0_pre6963-r2 (12 Mar 2013)
12 Mar 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre6963-r2.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre7001.ebuild
similarity index 100%
rename from media-libs/libsdl/libsdl-2.0.0_pre6963-r2.ebuild
rename to media-libs/libsdl/libsdl-2.0.0_pre7001.ebuild
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-04-01 16:40 Azamat H. Hackimov
0 siblings, 0 replies; 12+ messages in thread
From: Azamat H. Hackimov @ 2013-04-01 16:40 UTC (permalink / raw
To: gentoo-commits
commit: 48a73992399bd548e34f2ebe27f0b8492b7a2539
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Apr 1 16:40:01 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Mon Apr 1 16:40:01 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=48a73992
[media-libs/libsdl] Bump to 2.0.0_pre7024, remove old.
Now we have tarballs, go away, mercurial.eclass!
Package-Manager: portage-2.1.11.55
Manifest-Sign-Key: A018DE8C
---
media-libs/libsdl/ChangeLog | 8 ++
media-libs/libsdl/libsdl-2.0.0_pre6963-r1.ebuild | 111 ------------------
media-libs/libsdl/libsdl-2.0.0_pre7001.ebuild | 119 --------------------
...e7001-r1.ebuild => libsdl-2.0.0_pre7024.ebuild} | 17 ++--
4 files changed, 17 insertions(+), 238 deletions(-)
diff --git a/media-libs/libsdl/ChangeLog b/media-libs/libsdl/ChangeLog
index 6407ed9..45877ed 100644
--- a/media-libs/libsdl/ChangeLog
+++ b/media-libs/libsdl/ChangeLog
@@ -2,6 +2,14 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*libsdl-2.0.0_pre7024 (01 Apr 2013)
+
+ 01 Apr 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
+ +libsdl-2.0.0_pre7024.ebuild, -libsdl-2.0.0_pre6963-r1.ebuild,
+ -libsdl-2.0.0_pre7001-r1.ebuild, -libsdl-2.0.0_pre7001.ebuild:
+ [media-libs/libsdl] Bump to 2.0.0_pre7024, remove old. Now we have tarballs,
+ go away, mercurial.eclass!
+
*libsdl-2.0.0_pre7001-r1 (18 Mar 2013)
18 Mar 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com>
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre6963-r1.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre6963-r1.ebuild
deleted file mode 100644
index 6342422..0000000
--- a/media-libs/libsdl/libsdl-2.0.0_pre6963-r1.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit cmake-multilib mercurial versionator
-
-REV="$(get_version_component_range 4)"
-
-DESCRIPTION="Simple Direct Media Layer"
-HOMEPAGE="http://www.libsdl.org/"
-#SRC_URI=""
-EHG_REPO_URI="http://hg.libsdl.org/SDL/"
-EHG_REVISION="${REV/pre/}"
-
-LICENSE="ZLIB"
-SLOT="2"
-KEYWORDS="~amd64 ~x86"
-IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib +video X xinerama xscreensaver"
-
-#FIXME: Replace "gles" deps with "virtual/opengles", after hitting Portage.
-RDEPEND="
- nas? (
- media-libs/nas
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXt
- )
- X? (
- x11-libs/libX11
- x11-libs/libXcursor
- x11-libs/libXext
- x11-libs/libXi
- x11-libs/libXt
- x11-libs/libXrandr
- x11-libs/libXrender
- x11-libs/libXxf86vm
- )
- xinerama? ( x11-libs/libXinerama )
- xscreensaver? ( x11-libs/libXScrnSaver )
- alsa? ( media-libs/alsa-lib )
- fusionsound? ( >=media-libs/FusionSound-1.1.1 )
- pulseaudio? ( >=media-sound/pulseaudio-0.9 )
- gles? ( || ( media-libs/mesa[gles2] media-libs/mesa[gles] ) )
- opengl? ( virtual/opengl )
- tslib? ( x11-libs/tslib )
-"
-
-DEPEND="${RDEPEND}
- nas? (
- x11-proto/xextproto
- x11-proto/xproto
- )
- X? (
- x11-proto/inputproto
- x11-proto/xextproto
- x11-proto/xf86vidmodeproto
- x11-proto/xproto
- x11-proto/randrproto
- x11-proto/renderproto
- )
- xinerama? ( x11-proto/xineramaproto )
- xscreensaver? ( x11-proto/scrnsaverproto )
-"
-
-DOCS=( BUGS CREDITS README README.HG README-SDL.txt TODO WhatsNew )
-
-src_configure() {
- mycmakeargs=(
- # Disable assertion tests.
- -DASSERTIONS=disabled
- # Avoid hard-coding RPATH entries into dynamically linked SDL libraries.
- -DRPATH=NO
- # Disable obsolete and/or inapplicable libraries.
- -DARTS=NO
- -DESD=NO
- $(cmake-utils_use 3dnow 3DNOW)
- $(cmake-utils_use alsa ALSA)
- $(cmake-utils_use altivec ALTIVEC)
- $(cmake-utils_use asm ASSEMBLY)
- $(cmake-utils_use aqua VIDEO_COCOA)
- $(cmake-utils_use fusionsound FUSIONSOUND)
- $(cmake-utils_use gles VIDEO_OPENGLES)
- $(cmake-utils_use mmx MMX)
- $(cmake-utils_use nas NAS)
- $(cmake-utils_use opengl VIDEO_OPENGL)
- $(cmake-utils_use oss OSS)
- $(cmake-utils_use pulseaudio PULSEAUDIO)
- $(cmake-utils_use threads PTHREADS)
- $(cmake-utils_use sse SSE)
- $(cmake-utils_use sse SSEMATH)
- $(cmake-utils_use sse2 SSE2)
- $(cmake-utils_use static-libs SDL_STATIC)
- $(cmake-utils_use tslib INPUT_TSLIB)
- $(cmake-utils_use video VIDEO_DUMMY)
- $(cmake-utils_use X VIDEO_X11)
- $(cmake-utils_use X VIDEO_X11_XCURSOR)
- $(cmake-utils_use X VIDEO_X11_XINERAMA)
- $(cmake-utils_use X VIDEO_X11_XINPUT)
- $(cmake-utils_use X VIDEO_X11_XRANDR)
- $(cmake-utils_use xscreensaver VIDEO_X11_XSCRNSAVER)
- $(cmake-utils_use X VIDEO_X11_XVM)
- #$(cmake-utils_use joystick SDL_JOYSTICK)
- )
- cmake-multilib_src_configure
-}
-
-src_install() {
- cmake-multilib_src_install
-}
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre7001.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre7001.ebuild
deleted file mode 100644
index 6563793..0000000
--- a/media-libs/libsdl/libsdl-2.0.0_pre7001.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit cmake-multilib mercurial versionator
-
-REV="$(get_version_component_range 4)"
-
-DESCRIPTION="Simple Direct Media Layer"
-HOMEPAGE="http://www.libsdl.org/"
-#SRC_URI=""
-EHG_REPO_URI="http://hg.libsdl.org/SDL/"
-EHG_REVISION="${REV/pre/}"
-
-LICENSE="ZLIB"
-SLOT="2"
-KEYWORDS="~amd64 ~x86"
-IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib +video X xinerama xscreensaver"
-
-#FIXME: Replace "gles" deps with "virtual/opengles", after hitting Portage.
-RDEPEND="
- nas? (
- media-libs/nas
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXt
- )
- X? (
- x11-libs/libX11
- x11-libs/libXcursor
- x11-libs/libXext
- x11-libs/libXi
- x11-libs/libXt
- x11-libs/libXrandr
- x11-libs/libXrender
- x11-libs/libXxf86vm
- )
- xinerama? ( x11-libs/libXinerama )
- xscreensaver? ( x11-libs/libXScrnSaver )
- alsa? ( media-libs/alsa-lib )
- fusionsound? ( >=media-libs/FusionSound-1.1.1 )
- pulseaudio? ( >=media-sound/pulseaudio-0.9 )
- gles? ( || ( media-libs/mesa[gles2] media-libs/mesa[gles] ) )
- opengl? ( virtual/opengl )
- tslib? ( x11-libs/tslib )
-"
-
-DEPEND="${RDEPEND}
- nas? (
- x11-proto/xextproto
- x11-proto/xproto
- )
- X? (
- x11-proto/inputproto
- x11-proto/xextproto
- x11-proto/xf86vidmodeproto
- x11-proto/xproto
- x11-proto/randrproto
- x11-proto/renderproto
- )
- xinerama? ( x11-proto/xineramaproto )
- xscreensaver? ( x11-proto/scrnsaverproto )
-"
-
-DOCS=( BUGS CREDITS README README.HG README-SDL.txt TODO WhatsNew )
-
-src_prepare() {
- # Currently cmake produce libsdl2.so targets,
- # but libtool libsdl2-2.0.so, so many applications (e.g. Steam) fails to
- # find system libsdl. This patch workaround this problem.
- # See http://bugzilla.libsdl.org/show_bug.cgi?id=1743
- epatch "${FILESDIR}/${PN}-add-libtool-export-cmake-v2.patch"
-}
-
-src_configure() {
- mycmakeargs=(
- # Disable assertion tests.
- -DASSERTIONS=disabled
- # Avoid hard-coding RPATH entries into dynamically linked SDL libraries.
- -DRPATH=NO
- # Disable obsolete and/or inapplicable libraries.
- -DARTS=NO
- -DESD=NO
- $(cmake-utils_use 3dnow 3DNOW)
- $(cmake-utils_use alsa ALSA)
- $(cmake-utils_use altivec ALTIVEC)
- $(cmake-utils_use asm ASSEMBLY)
- $(cmake-utils_use aqua VIDEO_COCOA)
- $(cmake-utils_use fusionsound FUSIONSOUND)
- $(cmake-utils_use gles VIDEO_OPENGLES)
- $(cmake-utils_use mmx MMX)
- $(cmake-utils_use nas NAS)
- $(cmake-utils_use opengl VIDEO_OPENGL)
- $(cmake-utils_use oss OSS)
- $(cmake-utils_use pulseaudio PULSEAUDIO)
- $(cmake-utils_use threads PTHREADS)
- $(cmake-utils_use sse SSE)
- $(cmake-utils_use sse SSEMATH)
- $(cmake-utils_use sse2 SSE2)
- $(cmake-utils_use static-libs SDL_STATIC)
- $(cmake-utils_use tslib INPUT_TSLIB)
- $(cmake-utils_use video VIDEO_DUMMY)
- $(cmake-utils_use X VIDEO_X11)
- $(cmake-utils_use X VIDEO_X11_XCURSOR)
- $(cmake-utils_use X VIDEO_X11_XINERAMA)
- $(cmake-utils_use X VIDEO_X11_XINPUT)
- $(cmake-utils_use X VIDEO_X11_XRANDR)
- $(cmake-utils_use xscreensaver VIDEO_X11_XSCRNSAVER)
- $(cmake-utils_use X VIDEO_X11_XVM)
- #$(cmake-utils_use joystick SDL_JOYSTICK)
- )
- cmake-multilib_src_configure
-}
-
-src_install() {
- cmake-multilib_src_install
-}
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre7001-r1.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre7024.ebuild
similarity index 92%
rename from media-libs/libsdl/libsdl-2.0.0_pre7001-r1.ebuild
rename to media-libs/libsdl/libsdl-2.0.0_pre7024.ebuild
index 5a52e14..bf335b3 100644
--- a/media-libs/libsdl/libsdl-2.0.0_pre7001-r1.ebuild
+++ b/media-libs/libsdl/libsdl-2.0.0_pre7024.ebuild
@@ -4,15 +4,13 @@
EAPI=5
-inherit cmake-multilib mercurial versionator
+inherit cmake-multilib
-REV="$(get_version_component_range 4)"
+MY_PV=${PV/_pre/-}
DESCRIPTION="Simple Direct Media Layer"
HOMEPAGE="http://www.libsdl.org/"
-#SRC_URI=""
-EHG_REPO_URI="http://hg.libsdl.org/SDL/"
-EHG_REVISION="${REV/pre/}"
+SRC_URI="http://www.libsdl.org/tmp/SDL-${MY_PV}.tar.gz"
LICENSE="ZLIB"
SLOT="2"
@@ -21,6 +19,7 @@ IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudi
#FIXME: Replace "gles" deps with "virtual/opengles", after hitting Portage.
#FIXME: media-libs/nas no have emul-* ebuild
+#FIXME: virtual/opengl for abi_x86_32 require additional handling
RDEPEND="
nas? (
media-libs/nas
@@ -65,6 +64,8 @@ DEPEND="${RDEPEND}
xscreensaver? ( x11-proto/scrnsaverproto )
"
+S="${WORKDIR}/SDL-${MY_PV}"
+
DOCS=( BUGS CREDITS README README.HG README-SDL.txt TODO WhatsNew )
src_prepare() {
@@ -117,6 +118,6 @@ src_configure() {
cmake-multilib_src_configure
}
-src_install() {
- cmake-multilib_src_install
-}
+#src_install() {
+# cmake-multilib_src_install
+#}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-05-29 14:50 Azamat H. Hackimov
0 siblings, 0 replies; 12+ messages in thread
From: Azamat H. Hackimov @ 2013-05-29 14:50 UTC (permalink / raw
To: gentoo-commits
commit: 3b1ad3140a287659974412c1e73b4fc8a7b9b00a
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Wed May 29 14:49:43 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Wed May 29 14:49:43 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=3b1ad314
[media-libs/libsdl] New 2.0.0. Officially.
(Technically this is 2.0.0 RC1, but who cares?)
Package-Manager: portage-2.1.11.62
Manifest-Sign-Key: A018DE8C
---
.../{libsdl-2.0.0_pre7024.ebuild => libsdl-2.0.0.ebuild} | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre7024.ebuild b/media-libs/libsdl/libsdl-2.0.0.ebuild
similarity index 94%
rename from media-libs/libsdl/libsdl-2.0.0_pre7024.ebuild
rename to media-libs/libsdl/libsdl-2.0.0.ebuild
index bf335b3..7d92c7f 100644
--- a/media-libs/libsdl/libsdl-2.0.0_pre7024.ebuild
+++ b/media-libs/libsdl/libsdl-2.0.0.ebuild
@@ -10,8 +10,7 @@ MY_PV=${PV/_pre/-}
DESCRIPTION="Simple Direct Media Layer"
HOMEPAGE="http://www.libsdl.org/"
-SRC_URI="http://www.libsdl.org/tmp/SDL-${MY_PV}.tar.gz"
-
+SRC_URI="http://www.libsdl.org/tmp/release/SDL2-${MY_PV}.tar.gz"
LICENSE="ZLIB"
SLOT="2"
KEYWORDS="~amd64 ~x86"
@@ -64,9 +63,9 @@ DEPEND="${RDEPEND}
xscreensaver? ( x11-proto/scrnsaverproto )
"
-S="${WORKDIR}/SDL-${MY_PV}"
+S="${WORKDIR}/SDL2-${MY_PV}"
-DOCS=( BUGS CREDITS README README.HG README-SDL.txt TODO WhatsNew )
+DOCS=( BUGS.txt CREDITS.txt README.txt README-hg.txt README-SDL.txt TODO.txt WhatsNew.txt )
src_prepare() {
# Currently cmake produce libsdl2.so targets,
@@ -117,7 +116,3 @@ src_configure() {
)
cmake-multilib_src_configure
}
-
-#src_install() {
-# cmake-multilib_src_install
-#}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-06-12 12:33 Azamat H. Hackimov
0 siblings, 0 replies; 12+ messages in thread
From: Azamat H. Hackimov @ 2013-06-12 12:33 UTC (permalink / raw
To: gentoo-commits
commit: 86f5a4a0d133a96d9839368556eb1ad4fc065bbb
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Wed Jun 12 12:32:44 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Wed Jun 12 12:32:44 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=86f5a4a0
[media-libs/libsdl] Version bump to 2.0.0_pre7304
Package-Manager: portage-2.1.12.2
Manifest-Sign-Key: A018DE8C
---
media-libs/libsdl/libsdl-2.0.0_pre7304.ebuild | 120 ++++++++++++++++++++++++++
1 file changed, 120 insertions(+)
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre7304.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre7304.ebuild
new file mode 100644
index 0000000..e5ee1b3
--- /dev/null
+++ b/media-libs/libsdl/libsdl-2.0.0_pre7304.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-multilib
+
+MY_PV=${PV/_pre/-}
+
+DESCRIPTION="Simple Direct Media Layer"
+HOMEPAGE="http://www.libsdl.org/"
+SRC_URI="http://www.libsdl.org/tmp/SDL-${MY_PV}.tar.gz"
+LICENSE="ZLIB"
+SLOT="2"
+KEYWORDS="~amd64 ~x86"
+IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib +video X xinerama xscreensaver"
+
+#FIXME: Replace "gles" deps with "virtual/opengles", after hitting Portage.
+#FIXME: media-libs/nas no have emul-* ebuild
+#FIXME: virtual/opengl for abi_x86_32 require additional handling
+RDEPEND="
+ nas? (
+ media-libs/nas
+ x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXt
+ )
+ X? (
+ x11-libs/libX11
+ x11-libs/libXcursor
+ x11-libs/libXext
+ x11-libs/libXi
+ x11-libs/libXt
+ x11-libs/libXrandr
+ x11-libs/libXrender
+ x11-libs/libXxf86vm
+ )
+ xinerama? ( x11-libs/libXinerama )
+ xscreensaver? ( x11-libs/libXScrnSaver )
+ alsa? ( media-libs/alsa-lib )
+ fusionsound? ( >=media-libs/FusionSound-1.1.1 )
+ pulseaudio? ( >=media-sound/pulseaudio-0.9 )
+ gles? ( || ( media-libs/mesa[gles2] media-libs/mesa[gles] ) )
+ opengl? ( virtual/opengl )
+ tslib? ( x11-libs/tslib )
+"
+
+DEPEND="${RDEPEND}
+ nas? (
+ x11-proto/xextproto
+ x11-proto/xproto
+ )
+ X? (
+ x11-proto/inputproto
+ x11-proto/xextproto
+ x11-proto/xf86vidmodeproto
+ x11-proto/xproto
+ x11-proto/randrproto
+ x11-proto/renderproto
+ )
+ xinerama? ( x11-proto/xineramaproto )
+ xscreensaver? ( x11-proto/scrnsaverproto )
+"
+
+S="${WORKDIR}/SDL-${MY_PV}"
+
+DOCS=( BUGS.txt CREDITS.txt README.txt README-hg.txt README-SDL.txt TODO.txt WhatsNew.txt )
+
+src_prepare() {
+ # Currently cmake produce libsdl2.so targets,
+ # but libtool libsdl2-2.0.so, so many applications (e.g. Steam) fails to
+ # find system libsdl. This patch workaround this problem.
+ # See http://bugzilla.libsdl.org/show_bug.cgi?id=1743
+ epatch "${FILESDIR}/${PN}-add-libtool-export-cmake-v2.patch"
+ # Make headers more universal for 32/64 archs.
+ # See http://bugzilla.libsdl.org/show_bug.cgi?id=1893
+ epatch "${FILESDIR}/${PN}-universal_sizeof_voidp.patch"
+ epatch "${FILESDIR}/${PN}-universal_xdata32_check.patch"
+}
+
+src_configure() {
+ mycmakeargs=(
+ # Disable assertion tests.
+ -DASSERTIONS=disabled
+ # Avoid hard-coding RPATH entries into dynamically linked SDL libraries.
+ -DRPATH=NO
+ # Disable obsolete and/or inapplicable libraries.
+ -DARTS=NO
+ -DESD=NO
+ $(cmake-utils_use 3dnow 3DNOW)
+ $(cmake-utils_use alsa ALSA)
+ $(cmake-utils_use altivec ALTIVEC)
+ $(cmake-utils_use asm ASSEMBLY)
+ $(cmake-utils_use aqua VIDEO_COCOA)
+ $(cmake-utils_use fusionsound FUSIONSOUND)
+ $(cmake-utils_use gles VIDEO_OPENGLES)
+ $(cmake-utils_use mmx MMX)
+ $(cmake-utils_use nas NAS)
+ $(cmake-utils_use opengl VIDEO_OPENGL)
+ $(cmake-utils_use oss OSS)
+ $(cmake-utils_use pulseaudio PULSEAUDIO)
+ $(cmake-utils_use threads PTHREADS)
+ $(cmake-utils_use sse SSE)
+ $(cmake-utils_use sse SSEMATH)
+ $(cmake-utils_use sse2 SSE2)
+ $(cmake-utils_use static-libs SDL_STATIC)
+ $(cmake-utils_use tslib INPUT_TSLIB)
+ $(cmake-utils_use video VIDEO_DUMMY)
+ $(cmake-utils_use X VIDEO_X11)
+ $(cmake-utils_use X VIDEO_X11_XCURSOR)
+ $(cmake-utils_use X VIDEO_X11_XINERAMA)
+ $(cmake-utils_use X VIDEO_X11_XINPUT)
+ $(cmake-utils_use X VIDEO_X11_XRANDR)
+ $(cmake-utils_use xscreensaver VIDEO_X11_XSCRNSAVER)
+ $(cmake-utils_use X VIDEO_X11_XVM)
+ #$(cmake-utils_use joystick SDL_JOYSTICK)
+ )
+ cmake-multilib_src_configure
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-06-16 2:02 Azamat H. Hackimov
0 siblings, 0 replies; 12+ messages in thread
From: Azamat H. Hackimov @ 2013-06-16 2:02 UTC (permalink / raw
To: gentoo-commits
commit: 5351eecfac7831fe3e7ffabbb8a644eca6a84cf2
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sun Jun 16 02:02:14 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sun Jun 16 02:02:14 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=5351eecf
[media-libs/libsdl] Added epatch_user (#473252)
Package-Manager: portage-2.1.12.2
Manifest-Sign-Key: A018DE8C
---
media-libs/libsdl/libsdl-2.0.0_pre7304.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre7304.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre7304.ebuild
index e5ee1b3..e1c0338 100644
--- a/media-libs/libsdl/libsdl-2.0.0_pre7304.ebuild
+++ b/media-libs/libsdl/libsdl-2.0.0_pre7304.ebuild
@@ -4,7 +4,7 @@
EAPI=5
-inherit cmake-multilib
+inherit cmake-multilib eutils
MY_PV=${PV/_pre/-}
@@ -77,6 +77,8 @@ src_prepare() {
# See http://bugzilla.libsdl.org/show_bug.cgi?id=1893
epatch "${FILESDIR}/${PN}-universal_sizeof_voidp.patch"
epatch "${FILESDIR}/${PN}-universal_xdata32_check.patch"
+
+ epatch_user
}
src_configure() {
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-07-25 15:59 Azamat H. Hackimov
0 siblings, 0 replies; 12+ messages in thread
From: Azamat H. Hackimov @ 2013-07-25 15:59 UTC (permalink / raw
To: gentoo-commits
commit: f7816016ff5e45203394c0e6d71b5c321c950029
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Thu Jul 25 15:59:21 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Thu Jul 25 15:59:21 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=f7816016
[media-libs/libsdl] Version bump.
Package-Manager: portage-2.1.12.2
Manifest-Sign-Key: A018DE8C
---
media-libs/libsdl/libsdl-2.0.0_pre7502.ebuild | 121 ++++++++++++++++++++++++++
1 file changed, 121 insertions(+)
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre7502.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre7502.ebuild
new file mode 100644
index 0000000..af77d2d
--- /dev/null
+++ b/media-libs/libsdl/libsdl-2.0.0_pre7502.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-multilib eutils
+
+MY_PV=${PV/_pre/-}
+
+DESCRIPTION="Simple Direct Media Layer"
+HOMEPAGE="http://www.libsdl.org/"
+SRC_URI="http://www.libsdl.org/tmp/SDL-${MY_PV}.tar.gz"
+LICENSE="ZLIB"
+SLOT="2"
+KEYWORDS="~amd64 ~x86"
+IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib +video X xinerama xscreensaver"
+
+#FIXME: Replace "gles" deps with "virtual/opengles", after hitting Portage.
+#FIXME: media-libs/nas no have emul-* ebuild
+#FIXME: virtual/opengl for abi_x86_32 require additional handling
+RDEPEND="
+ nas? (
+ media-libs/nas
+ x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXt
+ )
+ X? (
+ x11-libs/libX11
+ x11-libs/libXcursor
+ x11-libs/libXext
+ x11-libs/libXi
+ x11-libs/libXt
+ x11-libs/libXrandr
+ x11-libs/libXrender
+ x11-libs/libXxf86vm
+ )
+ xinerama? ( x11-libs/libXinerama )
+ xscreensaver? ( x11-libs/libXScrnSaver )
+ alsa? ( media-libs/alsa-lib )
+ fusionsound? ( >=media-libs/FusionSound-1.1.1 )
+ pulseaudio? ( >=media-sound/pulseaudio-0.9 )
+ gles? ( || ( media-libs/mesa[gles2] media-libs/mesa[gles] ) )
+ opengl? ( virtual/opengl )
+ tslib? ( x11-libs/tslib )
+"
+
+DEPEND="${RDEPEND}
+ nas? (
+ x11-proto/xextproto
+ x11-proto/xproto
+ )
+ X? (
+ x11-proto/inputproto
+ x11-proto/xextproto
+ x11-proto/xf86vidmodeproto
+ x11-proto/xproto
+ x11-proto/randrproto
+ x11-proto/renderproto
+ )
+ xinerama? ( x11-proto/xineramaproto )
+ xscreensaver? ( x11-proto/scrnsaverproto )
+"
+
+S="${WORKDIR}/SDL-${MY_PV}"
+
+DOCS=( BUGS.txt CREDITS.txt README.txt README-hg.txt README-SDL.txt TODO.txt WhatsNew.txt )
+
+src_prepare() {
+ # Currently cmake produce libsdl2.so targets,
+ # but libtool libsdl2-2.0.so, so many applications (e.g. Steam) fails to
+ # find system libsdl. This patch workaround this problem.
+ # See http://bugzilla.libsdl.org/show_bug.cgi?id=1743
+ epatch "${FILESDIR}/${PN}-add-libtool-export-cmake-v2.patch"
+ # Make headers more universal for 32/64 archs.
+ # See http://bugzilla.libsdl.org/show_bug.cgi?id=1893
+ epatch "${FILESDIR}/${PN}-universal_xdata32_check.patch"
+
+ epatch_user
+}
+
+src_configure() {
+ mycmakeargs=(
+ # Disable assertion tests.
+ -DASSERTIONS=disabled
+ # Avoid hard-coding RPATH entries into dynamically linked SDL libraries.
+ -DRPATH=NO
+ # Disable obsolete and/or inapplicable libraries.
+ -DARTS=NO
+ -DESD=NO
+ $(cmake-utils_use 3dnow 3DNOW)
+ $(cmake-utils_use alsa ALSA)
+ $(cmake-utils_use altivec ALTIVEC)
+ $(cmake-utils_use asm ASSEMBLY)
+ $(cmake-utils_use aqua VIDEO_COCOA)
+ $(cmake-utils_use fusionsound FUSIONSOUND)
+ $(cmake-utils_use gles VIDEO_OPENGLES)
+ $(cmake-utils_use mmx MMX)
+ $(cmake-utils_use nas NAS)
+ $(cmake-utils_use opengl VIDEO_OPENGL)
+ $(cmake-utils_use oss OSS)
+ $(cmake-utils_use pulseaudio PULSEAUDIO)
+ $(cmake-utils_use threads PTHREADS)
+ $(cmake-utils_use sse SSE)
+ $(cmake-utils_use sse SSEMATH)
+ $(cmake-utils_use sse2 SSE2)
+ $(cmake-utils_use static-libs SDL_STATIC)
+ $(cmake-utils_use tslib INPUT_TSLIB)
+ $(cmake-utils_use video VIDEO_DUMMY)
+ $(cmake-utils_use X VIDEO_X11)
+ $(cmake-utils_use X VIDEO_X11_XCURSOR)
+ $(cmake-utils_use X VIDEO_X11_XINERAMA)
+ $(cmake-utils_use X VIDEO_X11_XINPUT)
+ $(cmake-utils_use X VIDEO_X11_XRANDR)
+ $(cmake-utils_use xscreensaver VIDEO_X11_XSCRNSAVER)
+ $(cmake-utils_use X VIDEO_X11_XVM)
+ #$(cmake-utils_use joystick SDL_JOYSTICK)
+ )
+ cmake-multilib_src_configure
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-08-04 8:57 Nikoli
0 siblings, 0 replies; 12+ messages in thread
From: Nikoli @ 2013-08-04 8:57 UTC (permalink / raw
To: gentoo-commits
commit: 07a10b4ebc3ba3a1a63edc5bc9e59aba03b2a947
Author: Nikoli <nikoli <AT> lavabit <DOT> com>
AuthorDate: Sun Aug 4 08:55:32 2013 +0000
Commit: Nikoli <nikoli <AT> lavabit <DOT> com>
CommitDate: Sun Aug 4 08:55:32 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=07a10b4e
libsdl: add missing [${MULTILIB_USEDEP}], some packages do not support it yet
Package-Manager: portage-2.1.12.2
---
media-libs/libsdl/libsdl-2.0.0_pre7541.ebuild | 50 +++++++++++++--------------
1 file changed, 25 insertions(+), 25 deletions(-)
diff --git a/media-libs/libsdl/libsdl-2.0.0_pre7541.ebuild b/media-libs/libsdl/libsdl-2.0.0_pre7541.ebuild
index 2bc9b58..52cd43d 100644
--- a/media-libs/libsdl/libsdl-2.0.0_pre7541.ebuild
+++ b/media-libs/libsdl/libsdl-2.0.0_pre7541.ebuild
@@ -22,23 +22,23 @@ IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudi
RDEPEND="
nas? (
media-libs/nas
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXt
+ x11-libs/libX11[${MULTILIB_USEDEP}]
+ x11-libs/libXext[${MULTILIB_USEDEP}]
+ x11-libs/libXt[${MULTILIB_USEDEP}]
)
X? (
- x11-libs/libX11
- x11-libs/libXcursor
- x11-libs/libXext
- x11-libs/libXi
- x11-libs/libXt
- x11-libs/libXrandr
- x11-libs/libXrender
- x11-libs/libXxf86vm
+ x11-libs/libX11[${MULTILIB_USEDEP}]
+ x11-libs/libXcursor[${MULTILIB_USEDEP}]
+ x11-libs/libXext[${MULTILIB_USEDEP}]
+ x11-libs/libXi[${MULTILIB_USEDEP}]
+ x11-libs/libXt[${MULTILIB_USEDEP}]
+ x11-libs/libXrandr[${MULTILIB_USEDEP}]
+ x11-libs/libXrender[${MULTILIB_USEDEP}]
+ x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
)
- xinerama? ( x11-libs/libXinerama )
- xscreensaver? ( x11-libs/libXScrnSaver )
- alsa? ( media-libs/alsa-lib )
+ xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
+ xscreensaver? ( x11-libs/libXScrnSaver[${MULTILIB_USEDEP}] )
+ alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
fusionsound? ( >=media-libs/FusionSound-1.1.1 )
pulseaudio? ( >=media-sound/pulseaudio-0.9 )
gles? ( || ( media-libs/mesa[gles2] media-libs/mesa[gles] ) )
@@ -48,22 +48,22 @@ RDEPEND="
DEPEND="${RDEPEND}
nas? (
- x11-proto/xextproto
- x11-proto/xproto
+ x11-proto/xextproto[${MULTILIB_USEDEP}]
+ x11-proto/xproto[${MULTILIB_USEDEP}]
)
X? (
- x11-proto/inputproto
- x11-proto/xextproto
- x11-proto/xf86vidmodeproto
- x11-proto/xproto
- x11-proto/randrproto
- x11-proto/renderproto
+ x11-proto/inputproto[${MULTILIB_USEDEP}]
+ x11-proto/xextproto[${MULTILIB_USEDEP}]
+ x11-proto/xf86vidmodeproto[${MULTILIB_USEDEP}]
+ x11-proto/xproto[${MULTILIB_USEDEP}]
+ x11-proto/randrproto[${MULTILIB_USEDEP}]
+ x11-proto/renderproto[${MULTILIB_USEDEP}]
)
- xinerama? ( x11-proto/xineramaproto )
- xscreensaver? ( x11-proto/scrnsaverproto )
+ xinerama? ( x11-proto/xineramaproto[${MULTILIB_USEDEP}] )
+ xscreensaver? ( x11-proto/scrnsaverproto[${MULTILIB_USEDEP}] )
"
-S="${WORKDIR}/SDL-${MY_PV}"
+S=${WORKDIR}/SDL-${MY_PV}
DOCS=( BUGS.txt CREDITS.txt README.txt README-hg.txt README-SDL.txt TODO.txt WhatsNew.txt )
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/
@ 2013-08-13 17:34 Azamat H. Hackimov
0 siblings, 0 replies; 12+ messages in thread
From: Azamat H. Hackimov @ 2013-08-13 17:34 UTC (permalink / raw
To: gentoo-commits
commit: 6f797767e24697cb167006e73b0790ef423eb6fb
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Tue Aug 13 17:33:51 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Tue Aug 13 17:33:51 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=6f797767
[media-libs/libsdl] Version bump to 2.0.0.
Added app-emulation/emul-linux-x86-* dependencies for backward compatibility.
Package-Manager: portage-2.1.12.2
RepoMan-Options: --force
Manifest-Sign-Key: A018DE8C
---
media-libs/libsdl/libsdl-2.0.0.ebuild | 134 ++++++++++++++++++++++++++++++++++
1 file changed, 134 insertions(+)
diff --git a/media-libs/libsdl/libsdl-2.0.0.ebuild b/media-libs/libsdl/libsdl-2.0.0.ebuild
new file mode 100644
index 0000000..61e76d2
--- /dev/null
+++ b/media-libs/libsdl/libsdl-2.0.0.ebuild
@@ -0,0 +1,134 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-multilib eutils
+
+MY_PV=${PV/_pre/-}
+
+DESCRIPTION="Simple Direct Media Layer"
+HOMEPAGE="http://www.libsdl.org/"
+SRC_URI="http://www.libsdl.org/release/SDL2-${MY_PV}.tar.gz"
+LICENSE="ZLIB"
+SLOT="2"
+KEYWORDS="~amd64 ~x86"
+IUSE="3dnow alsa altivec +asm aqua fusionsound gles mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib +video X xinerama xscreensaver"
+
+#FIXME: Replace "gles" deps with "virtual/opengles", after hitting Portage.
+#FIXME: media-libs/nas no have emul-* ebuild
+#FIXME: virtual/opengl for abi_x86_32 require additional handling
+RDEPEND="
+ nas? (
+ media-libs/nas
+ ( || ( app-emulation/emul-linux-x86-xlibs
+ ( x11-libs/libX11[${MULTILIB_USEDEP}]
+ x11-libs/libXext[${MULTILIB_USEDEP}]
+ x11-libs/libXt[${MULTILIB_USEDEP}] )
+ ) )
+ )
+ X? ( || ( app-emulation/emul-linux-x86-xlibs
+ ( x11-libs/libX11[${MULTILIB_USEDEP}]
+ x11-libs/libXcursor[${MULTILIB_USEDEP}]
+ x11-libs/libXext[${MULTILIB_USEDEP}]
+ x11-libs/libXi[${MULTILIB_USEDEP}]
+ x11-libs/libXt[${MULTILIB_USEDEP}]
+ x11-libs/libXrandr[${MULTILIB_USEDEP}]
+ x11-libs/libXrender[${MULTILIB_USEDEP}]
+ x11-libs/libXxf86vm[${MULTILIB_USEDEP}] )
+ )
+ )
+ xinerama? ( || (
+ app-emulation/emul-linux-x86-xlibs
+ x11-libs/libXinerama[${MULTILIB_USEDEP}] ) )
+ xscreensaver? ( || (
+ app-emulation/emul-linux-x86-xlibs
+ x11-libs/libXScrnSaver[${MULTILIB_USEDEP}] ) )
+ alsa? ( || (
+ app-emulation/emul-linux-x86-soundlibs
+ media-libs/alsa-lib[${MULTILIB_USEDEP}] ) )
+ fusionsound? ( >=media-libs/FusionSound-1.1.1 )
+ pulseaudio? (
+ amd64? ( app-emulation/emul-linux-x86-soundlibs )
+ x86? ( media-sound/pulseaudio )
+ )
+ gles? ( || ( media-libs/mesa[gles2] media-libs/mesa[gles] ) )
+ opengl? ( virtual/opengl )
+ tslib? ( x11-libs/tslib )
+"
+
+DEPEND="${RDEPEND}
+ nas? (
+ ( || ( app-emulation/emul-linux-x86-xlibs
+ ( x11-proto/xextproto[${MULTILIB_USEDEP}]
+ x11-proto/xproto[${MULTILIB_USEDEP}] )
+ ) )
+ )
+ X? (
+ ( || ( app-emulation/emul-linux-x86-xlibs
+ ( x11-proto/inputproto[${MULTILIB_USEDEP}]
+ x11-proto/xextproto[${MULTILIB_USEDEP}]
+ x11-proto/xf86vidmodeproto[${MULTILIB_USEDEP}]
+ x11-proto/xproto[${MULTILIB_USEDEP}]
+ x11-proto/randrproto[${MULTILIB_USEDEP}]
+ x11-proto/renderproto[${MULTILIB_USEDEP}] )
+ ) )
+ )
+ xinerama? ( || ( app-emulation/emul-linux-x86-xlibs
+ x11-proto/xineramaproto[${MULTILIB_USEDEP}] ) )
+ xscreensaver? ( || ( app-emulation/emul-linux-x86-xlibs
+ x11-proto/scrnsaverproto[${MULTILIB_USEDEP}] ) )
+"
+
+S=${WORKDIR}/SDL2-${MY_PV}
+
+DOCS=( BUGS.txt CREDITS.txt README.txt README-hg.txt README-SDL.txt TODO.txt WhatsNew.txt )
+
+src_prepare() {
+ # Make headers more universal for 32/64 archs.
+ # See http://bugzilla.libsdl.org/show_bug.cgi?id=1893
+ epatch "${FILESDIR}/${PN}-universal_xdata32_check.patch"
+
+ epatch_user
+}
+
+src_configure() {
+ mycmakeargs=(
+ # Disable assertion tests.
+ -DASSERTIONS=disabled
+ # Avoid hard-coding RPATH entries into dynamically linked SDL libraries.
+ -DRPATH=NO
+ # Disable obsolete and/or inapplicable libraries.
+ -DARTS=NO
+ -DESD=NO
+ $(cmake-utils_use 3dnow 3DNOW)
+ $(cmake-utils_use alsa ALSA)
+ $(cmake-utils_use altivec ALTIVEC)
+ $(cmake-utils_use asm ASSEMBLY)
+ $(cmake-utils_use aqua VIDEO_COCOA)
+ $(cmake-utils_use fusionsound FUSIONSOUND)
+ $(cmake-utils_use gles VIDEO_OPENGLES)
+ $(cmake-utils_use mmx MMX)
+ $(cmake-utils_use nas NAS)
+ $(cmake-utils_use opengl VIDEO_OPENGL)
+ $(cmake-utils_use oss OSS)
+ $(cmake-utils_use pulseaudio PULSEAUDIO)
+ $(cmake-utils_use threads PTHREADS)
+ $(cmake-utils_use sse SSE)
+ $(cmake-utils_use sse SSEMATH)
+ $(cmake-utils_use sse2 SSE2)
+ $(cmake-utils_use static-libs SDL_STATIC)
+ $(cmake-utils_use tslib INPUT_TSLIB)
+ $(cmake-utils_use video VIDEO_DUMMY)
+ $(cmake-utils_use X VIDEO_X11)
+ $(cmake-utils_use X VIDEO_X11_XCURSOR)
+ $(cmake-utils_use xinerama VIDEO_X11_XINERAMA)
+ $(cmake-utils_use X VIDEO_X11_XINPUT)
+ $(cmake-utils_use X VIDEO_X11_XRANDR)
+ $(cmake-utils_use xscreensaver VIDEO_X11_XSCRNSAVER)
+ $(cmake-utils_use X VIDEO_X11_XVM)
+ #$(cmake-utils_use joystick SDL_JOYSTICK)
+ )
+ cmake-multilib_src_configure
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-08-13 17:34 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-25 15:59 [gentoo-commits] proj/gamerlay:master commit in: media-libs/libsdl/ Azamat H. Hackimov
-- strict thread matches above, loose matches on Subject: below --
2013-08-13 17:34 Azamat H. Hackimov
2013-08-04 8:57 Nikoli
2013-06-16 2:02 Azamat H. Hackimov
2013-06-12 12:33 Azamat H. Hackimov
2013-05-29 14:50 Azamat H. Hackimov
2013-04-01 16:40 Azamat H. Hackimov
2013-03-14 15:13 Azamat H. Hackimov
2013-03-11 17:36 Azamat H. Hackimov
2013-01-09 7:49 Ash Harley
2013-01-07 23:58 Sergey Popov
2013-01-04 17:13 Azamat H. Hackimov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox