* [gentoo-commits] gentoo-x86 commit in media-libs/libsdl2: libsdl2-2.0.2-r1.ebuild ChangeLog
@ 2014-04-18 17:05 Julian Ospald (hasufell)
0 siblings, 0 replies; 4+ messages in thread
From: Julian Ospald (hasufell) @ 2014-04-18 17:05 UTC (permalink / raw
To: gentoo-commits
hasufell 14/04/18 17:05:02
Modified: ChangeLog
Added: libsdl2-2.0.2-r1.ebuild
Log:
add multilib support wrt #484130
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
Revision Changes Path
1.12 media-libs/libsdl2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 5 Apr 2014 15:59:09 -0000 1.11
+++ ChangeLog 18 Apr 2014 17:05:02 -0000 1.12
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/libsdl2
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.11 2014/04/05 15:59:09 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.12 2014/04/18 17:05:02 hasufell Exp $
+
+*libsdl2-2.0.2-r1 (18 Apr 2014)
+
+ 18 Apr 2014; Julian Ospald <hasufell@gentoo.org> +libsdl2-2.0.2-r1.ebuild:
+ add multilib support wrt #484130
05 Apr 2014; Julian Ospald <hasufell@gentoo.org> libsdl2-2.0.1-r1.ebuild,
libsdl2-2.0.2.ebuild:
1.1 media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?rev=1.1&content-type=text/plain
Index: libsdl2-2.0.2-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v 1.1 2014/04/18 17:05:02 hasufell Exp $
# TODO: convert FusionSound #484250
EAPI=5
inherit autotools flag-o-matic toolchain-funcs eutils multilib-minimal
MY_P=SDL2-${PV}
DESCRIPTION="Simple Direct Media Layer"
HOMEPAGE="http://www.libsdl.org"
SRC_URI="http://www.libsdl.org/release/${MY_P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="3dnow alsa altivec +audio custom-cflags dbus fusionsound gles haptic +joystick mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib udev +video X xinerama xscreensaver"
REQUIRED_USE="
alsa? ( audio )
fusionsound? ( audio )
gles? ( video )
nas? ( audio )
opengl? ( video )
pulseaudio? ( audio )
xinerama? ( X )
xscreensaver? ( X )"
RDEPEND="
alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
dbus? ( sys-apps/dbus )
fusionsound? ( || ( >=media-libs/FusionSound-1.1.1 >=dev-libs/DirectFB-1.7.1[fusionsound] ) )
gles? ( media-libs/mesa[${MULTILIB_USEDEP},gles2] )
nas? ( media-libs/nas[${MULTILIB_USEDEP}] )
opengl? (
virtual/opengl[${MULTILIB_USEDEP}]
virtual/glu[${MULTILIB_USEDEP}]
)
pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
tslib? ( x11-libs/tslib[${MULTILIB_USEDEP}] )
udev? ( virtual/udev[${MULTILIB_USEDEP}] )
X? (
x11-libs/libX11[${MULTILIB_USEDEP}]
x11-libs/libXcursor[${MULTILIB_USEDEP}]
x11-libs/libXext[${MULTILIB_USEDEP}]
x11-libs/libXi[${MULTILIB_USEDEP}]
x11-libs/libXrandr[${MULTILIB_USEDEP}]
x11-libs/libXt[${MULTILIB_USEDEP}]
x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
xscreensaver? ( x11-libs/libXScrnSaver[${MULTILIB_USEDEP}] )
)"
DEPEND="${RDEPEND}
X? (
x11-proto/xextproto[${MULTILIB_USEDEP}]
x11-proto/xproto[${MULTILIB_USEDEP}]
)
virtual/pkgconfig"
S=${WORKDIR}/${MY_P}
src_prepare() {
# https://bugzilla.libsdl.org/show_bug.cgi?id=1431
epatch "${FILESDIR}"/${P}-static-libs.patch
AT_M4DIR="/usr/share/aclocal acinclude" eautoreconf
}
multilib_src_configure() {
use custom-cflags || strip-flags
# sorted by `./configure --help`
ECONF_SOURCE="${S}" econf \
$(use_enable static-libs static) \
$(use_enable audio) \
$(use_enable video) \
--enable-render \
--enable-events \
$(use_enable joystick) \
$(use_enable haptic) \
--enable-power \
$(use_enable threads) \
--enable-timers \
--enable-file \
--disable-loadso \
--enable-cpuinfo \
--enable-atomic \
--enable-assembly \
$(use_enable sse ssemath) \
$(use_enable mmx) \
$(use_enable 3dnow) \
$(use_enable sse) \
$(use_enable sse2) \
$(use_enable altivec) \
$(use_enable oss) \
$(use_enable alsa) \
--disable-alsa-shared \
--disable-esd \
$(use_enable pulseaudio) \
--disable-pulseaudio-shared \
--disable-arts \
$(use_enable nas) \
--disable-nas-shared \
--disable-sndio \
--disable-sndio-shared \
$(use_enable audio diskaudio) \
$(use_enable audio dummyaudio) \
$(use_enable X video-x11) \
--disable-x11-shared \
$(use_enable X video-x11-xcursor) \
$(use_enable xinerama video-x11-xinerama) \
$(use_enable X video-x11-xinput) \
$(use_enable X video-x11-xrandr) \
$(use_enable xscreensaver video-x11-scrnsaver) \
$(use_enable X video-x11-xshape) \
$(use_enable X video-x11-vm) \
--disable-video-cocoa \
--disable-video-directfb \
$(multilib_is_native_abi && use_enable fusionsound || echo "--disable-fusionsound") \
--disable-fusionsound-shared \
$(use_enable video video-dummy) \
$(use_enable opengl video-opengl) \
$(use_enable gles video-opengles) \
$(use_enable udev libudev) \
$(use_enable dbus) \
$(use_enable tslib input-tslib) \
--disable-directx \
--disable-rpath \
--disable-render-d3d \
$(use_with X x)
}
multilib_src_install() {
emake DESTDIR="${D}" install
}
multilib_src_install_all() {
use static-libs || prune_libtool_files
dodoc {BUGS,CREDITS,README,README-SDL,README-hg,TODO,WhatsNew}.txt
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsdl2: libsdl2-2.0.2-r1.ebuild ChangeLog
@ 2014-04-18 17:08 Julian Ospald (hasufell)
0 siblings, 0 replies; 4+ messages in thread
From: Julian Ospald (hasufell) @ 2014-04-18 17:08 UTC (permalink / raw
To: gentoo-commits
hasufell 14/04/18 17:08:23
Modified: libsdl2-2.0.2-r1.ebuild ChangeLog
Log:
fix dbus dep string
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
Revision Changes Path
1.2 media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?r1=1.1&r2=1.2
Index: libsdl2-2.0.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libsdl2-2.0.2-r1.ebuild 18 Apr 2014 17:05:02 -0000 1.1
+++ libsdl2-2.0.2-r1.ebuild 18 Apr 2014 17:08:23 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v 1.1 2014/04/18 17:05:02 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v 1.2 2014/04/18 17:08:23 hasufell Exp $
# TODO: convert FusionSound #484250
@@ -29,7 +29,7 @@
RDEPEND="
alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
- dbus? ( sys-apps/dbus )
+ dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
fusionsound? ( || ( >=media-libs/FusionSound-1.1.1 >=dev-libs/DirectFB-1.7.1[fusionsound] ) )
gles? ( media-libs/mesa[${MULTILIB_USEDEP},gles2] )
nas? ( media-libs/nas[${MULTILIB_USEDEP}] )
1.13 media-libs/libsdl2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?r1=1.12&r2=1.13
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog 18 Apr 2014 17:05:02 -0000 1.12
+++ ChangeLog 18 Apr 2014 17:08:23 -0000 1.13
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsdl2
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.12 2014/04/18 17:05:02 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.13 2014/04/18 17:08:23 hasufell Exp $
+
+ 18 Apr 2014; Julian Ospald <hasufell@gentoo.org> libsdl2-2.0.2-r1.ebuild:
+ fix dbus dep string
*libsdl2-2.0.2-r1 (18 Apr 2014)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsdl2: libsdl2-2.0.2-r1.ebuild ChangeLog
@ 2014-04-21 7:56 Michal Gorny (mgorny)
0 siblings, 0 replies; 4+ messages in thread
From: Michal Gorny (mgorny) @ 2014-04-21 7:56 UTC (permalink / raw
To: gentoo-commits
mgorny 14/04/21 07:56:51
Modified: libsdl2-2.0.2-r1.ebuild ChangeLog
Log:
Use the new multilib_native_use* functions.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path
1.3 media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?r1=1.2&r2=1.3
Index: libsdl2-2.0.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libsdl2-2.0.2-r1.ebuild 18 Apr 2014 17:08:23 -0000 1.2
+++ libsdl2-2.0.2-r1.ebuild 21 Apr 2014 07:56:51 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v 1.2 2014/04/18 17:08:23 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v 1.3 2014/04/21 07:56:51 mgorny Exp $
# TODO: convert FusionSound #484250
@@ -116,7 +116,7 @@
$(use_enable X video-x11-vm) \
--disable-video-cocoa \
--disable-video-directfb \
- $(multilib_is_native_abi && use_enable fusionsound || echo "--disable-fusionsound") \
+ $(multilib_native_use_enable fusionsound) \
--disable-fusionsound-shared \
$(use_enable video video-dummy) \
$(use_enable opengl video-opengl) \
1.14 media-libs/libsdl2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?r1=1.13&r2=1.14
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog 18 Apr 2014 17:08:23 -0000 1.13
+++ ChangeLog 21 Apr 2014 07:56:51 -0000 1.14
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsdl2
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.13 2014/04/18 17:08:23 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.14 2014/04/21 07:56:51 mgorny Exp $
+
+ 21 Apr 2014; Michał Górny <mgorny@gentoo.org> libsdl2-2.0.2-r1.ebuild:
+ Use the new multilib_native_use* functions.
18 Apr 2014; Julian Ospald <hasufell@gentoo.org> libsdl2-2.0.2-r1.ebuild:
fix dbus dep string
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsdl2: libsdl2-2.0.2-r1.ebuild ChangeLog
@ 2014-05-10 16:46 Julian Ospald (hasufell)
0 siblings, 0 replies; 4+ messages in thread
From: Julian Ospald (hasufell) @ 2014-05-10 16:46 UTC (permalink / raw
To: gentoo-commits
hasufell 14/05/10 16:46:06
Modified: libsdl2-2.0.2-r1.ebuild ChangeLog
Log:
add wayland support wrt #504136
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
Revision Changes Path
1.4 media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild?r1=1.3&r2=1.4
Index: libsdl2-2.0.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libsdl2-2.0.2-r1.ebuild 21 Apr 2014 07:56:51 -0000 1.3
+++ libsdl2-2.0.2-r1.ebuild 10 May 2014 16:46:06 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v 1.3 2014/04/21 07:56:51 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/libsdl2-2.0.2-r1.ebuild,v 1.4 2014/05/10 16:46:06 hasufell Exp $
# TODO: convert FusionSound #484250
@@ -16,7 +16,7 @@
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="3dnow alsa altivec +audio custom-cflags dbus fusionsound gles haptic +joystick mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib udev +video X xinerama xscreensaver"
+IUSE="3dnow alsa altivec +audio custom-cflags dbus fusionsound gles haptic +joystick mmx nas opengl oss pulseaudio sse sse2 static-libs +threads tslib udev +video wayland X xinerama xscreensaver"
REQUIRED_USE="
alsa? ( audio )
fusionsound? ( audio )
@@ -40,6 +40,11 @@
pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
tslib? ( x11-libs/tslib[${MULTILIB_USEDEP}] )
udev? ( virtual/udev[${MULTILIB_USEDEP}] )
+ wayland? (
+ dev-libs/wayland[${MULTILIB_USEDEP}]
+ media-libs/mesa[${MULTILIB_USEDEP},wayland]
+ x11-libs/libxkbcommon[${MULTILIB_USEDEP}]
+ )
X? (
x11-libs/libX11[${MULTILIB_USEDEP}]
x11-libs/libXcursor[${MULTILIB_USEDEP}]
@@ -107,6 +112,8 @@
$(use_enable audio dummyaudio) \
$(use_enable X video-x11) \
--disable-x11-shared \
+ $(use_enable wayland video-wayland) \
+ --disable-wayland-shared \
$(use_enable X video-x11-xcursor) \
$(use_enable xinerama video-x11-xinerama) \
$(use_enable X video-x11-xinput) \
1.15 media-libs/libsdl2/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsdl2/ChangeLog?r1=1.14&r2=1.15
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog 21 Apr 2014 07:56:51 -0000 1.14
+++ ChangeLog 10 May 2014 16:46:06 -0000 1.15
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsdl2
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.14 2014/04/21 07:56:51 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl2/ChangeLog,v 1.15 2014/05/10 16:46:06 hasufell Exp $
+
+ 10 May 2014; Julian Ospald <hasufell@gentoo.org> libsdl2-2.0.2-r1.ebuild:
+ add wayland support wrt #504136
21 Apr 2014; Michał Górny <mgorny@gentoo.org> libsdl2-2.0.2-r1.ebuild:
Use the new multilib_native_use* functions.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-05-10 16:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-18 17:05 [gentoo-commits] gentoo-x86 commit in media-libs/libsdl2: libsdl2-2.0.2-r1.ebuild ChangeLog Julian Ospald (hasufell)
-- strict thread matches above, loose matches on Subject: below --
2014-04-18 17:08 Julian Ospald (hasufell)
2014-04-21 7:56 Michal Gorny (mgorny)
2014-05-10 16:46 Julian Ospald (hasufell)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox