Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (7b3818ed0e316272228878a65692b3634768caee)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (7b3818ed0e316272228878a65692b3634768caee)
  • Date: Fri, 6 Sep 2013 21:22:21 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

audio-drivers/pulseaudio/DEPENDS | 14
+++++++++-
audio-drivers/pulseaudio/HISTORY | 4 ++
e-17/e17/DEPENDS | 5 ++-
e-17/e17/HISTORY | 4 ++
e-17/evas/DEPENDS | 3 +-
e-17/evas/HISTORY | 3 ++
graphics-libs/cegui/DEPENDS | 9
+++---
graphics-libs/cegui/HISTORY | 3 ++
libs/sdl/DEPENDS | 1
libs/sdl/HISTORY | 4 ++
libs/sdl/PRE_SUB_DEPENDS | 2 -
libs/sdl/REPAIR^f2c2d723cb24017050035a9c9cd3f210^PRE_SUB_DEPENDS | 5 +++
libs/sdl/SUB_DEPENDS | 2 -
perl-cpan/x11-protocol/DEPENDS | 8 +++--
perl-cpan/x11-protocol/HISTORY | 4 ++
x11/xscreensaver/DEPENDS | 13
+++++++--
x11/xscreensaver/DETAILS | 5 ++-
x11/xscreensaver/HISTORY | 5 +++
x11/xscreensaver/xscreensaver-5.22.tar.gz.sig |binary
xfce/xfce4-profile/DEPENDS | 2 -
xfce/xfce4-profile/HISTORY | 3 ++
21 files changed, 81 insertions(+), 18 deletions(-)

New commits:
commit 7b3818ed0e316272228878a65692b3634768caee
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

cegui: Replaced xorg-libs with libx11 and libxxf86vm

commit af1a253a884db5d1f4aa822a6eb012ee10a41c52
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

pulseaudio: gtk+2 support also needs libxxf86vm

commit fa7100d5ec50563edc37ac82122f5f9094912a07
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

pulseaudio: Replaced xorg-libs with libx11, libice, libsm, libxext,
libxtst

commit 11540be12d48e8cc1a1375c205b64178275cc87d
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

sdl: Replaced xorg-libs with libx11

Additionally depend on libice when depending on libx11

commit d8ba833d5d31c4a3ee1afe8ac925a9b2a767bef1
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

xfce4-profile: Replaced runtime dependency on xorg-libs with X11-SERVER

commit 9c741d99f3bbd5868f665af5ac0aec111f2fa100
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

xscreensaver: Updated to 5.22

commit 026cea611c8396d4701b47c63e3fa21c0c966460
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

xscreensaver: Replaced xorg-libs

Replaced xorg-libs with libice, libx11, libxxf86misc, libxxf86vm,
libxi, libxmu, libxrender, and libxt

commit 334a92db5383775aba4a79eac4ed90c65dc1020c
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

evas: Replaced xorg-libs with libsm and libx11

commit 86616a9d2d205d68c8075e29145ba6ee1927a973
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

x11-protocol: Replace xorg-libs with libx11, libxau, and libxext
as runtime dependencies
Per README, doesn't require an X11-SERVER on the current machine

commit 91f4e71fdecf2c67d43c5629957ee7b226435a08
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

e17: Replace xorg-libs with libx11, libxau, libxdmcp, and libxext

diff --git a/audio-drivers/pulseaudio/DEPENDS
b/audio-drivers/pulseaudio/DEPENDS
index 8364f5b..21f5f34 100755
--- a/audio-drivers/pulseaudio/DEPENDS
+++ b/audio-drivers/pulseaudio/DEPENDS
@@ -17,10 +17,17 @@ optional_depends gettext \
"--enable-nls" \
"--disable-nls" \
"for Native Language Support" &&
-optional_depends xorg-libs \
+optional_depends libx11 \
"--enable-x11" \
"--disable-x11" \
"Enable X11 support?" &&
+
+if is_depends_enabled $SPELL libx11; then
+ depends libice &&
+ depends libsm &&
+ depends libxext &&
+ depends libxtst
+fi &&
depends libsamplerate &&
optional_depends alsa-lib \
"--enable-alsa" \
@@ -34,6 +41,11 @@ optional_depends gtk+2 \
"--enable-gtk2" \
"--disable-gtk2" \
"for GTK+2 support" &&
+
+if is_depends_enabled $SPELL gtk+2; then
+ depends libxxf86vm
+fi &&
+
optional_depends gconf2 \
"--enable-gconf" \
"--disable-gconf" \
diff --git a/audio-drivers/pulseaudio/HISTORY
b/audio-drivers/pulseaudio/HISTORY
index f1d6a06..400c768 100644
--- a/audio-drivers/pulseaudio/HISTORY
+++ b/audio-drivers/pulseaudio/HISTORY
@@ -1,3 +1,7 @@
+2013-09-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Replaced xorg-libs with libx11, libice, libsm, libxext,
libxtst
+ gtk+2 support also needs libxxf86vm
+
2013-07-28 Treeve Jelbert <treeve AT sourcemage.org>
* DEPENDS: udev => UDEV

diff --git a/e-17/e17/DEPENDS b/e-17/e17/DEPENDS
index 439fba3..78c8b1e 100755
--- a/e-17/e17/DEPENDS
+++ b/e-17/e17/DEPENDS
@@ -1,9 +1,12 @@
depends imlib2 &&
+depends libx11 &&
+depends libxau &&
depends libxcursor &&
depends libxdamage &&
+depends libxdmcp &&
+depends libxext &&
depends libxinerama &&
depends libxrandr &&
-depends xorg-libs &&

if [[ "x${E17_BRANCH}" == "xscm" ]]; then
depends edbus &&
diff --git a/e-17/e17/HISTORY b/e-17/e17/HISTORY
index eed1cac..fe6f303 100644
--- a/e-17/e17/HISTORY
+++ b/e-17/e17/HISTORY
@@ -1,3 +1,7 @@
+2013-09-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Replace xorg-libs with libx11, libxau, libxdmcp, and
+ libxext
+
2013-07-30 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 0.17.4

diff --git a/e-17/evas/DEPENDS b/e-17/evas/DEPENDS
index 07b588a..ee2186e 100755
--- a/e-17/evas/DEPENDS
+++ b/e-17/evas/DEPENDS
@@ -5,7 +5,8 @@ depends libtool &&
depends freetype2 &&

if [[ "x${EVAS_X11XCB}" == "xx11" ]]; then
- depends xorg-libs "--enable-software-xlib --with-x"
+ depends libsm &&
+ depends libx11 "--enable-software-xlib --with-x"
elif [[ "x${EVAS_X11XCB}" == "xxcb" ]]; then
depends libxcb "--enable-software-xcb --enable-async-events"
# else "none" handled in BUILD
diff --git a/e-17/evas/HISTORY b/e-17/evas/HISTORY
index 54d7fc1..bfc9eb1 100644
--- a/e-17/evas/HISTORY
+++ b/e-17/evas/HISTORY
@@ -1,3 +1,6 @@
+2013-09-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Replaced xorg-libs with libsm and libx11
+
2013-07-30 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 1.7.8

diff --git a/graphics-libs/cegui/DEPENDS b/graphics-libs/cegui/DEPENDS
index e3cfea2..3b53528 100755
--- a/graphics-libs/cegui/DEPENDS
+++ b/graphics-libs/cegui/DEPENDS
@@ -1,7 +1,8 @@
-depends freetype2 &&
-depends -sub CXX gcc &&
-depends pcre &&
-depends xorg-libs '--with-x' &&
+depends freetype2 &&
+depends -sub CXX gcc &&
+depends pcre &&
+depends libx11 '--with-x' &&
+depends libxxf86vm &&

optional_depends xerces-c \
"--enable-xerces-c" \
diff --git a/graphics-libs/cegui/HISTORY b/graphics-libs/cegui/HISTORY
index 07714d5..8a1b0f6 100644
--- a/graphics-libs/cegui/HISTORY
+++ b/graphics-libs/cegui/HISTORY
@@ -1,3 +1,6 @@
+2013-09-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Replaced xorg-libs with libx11 and libxxf86vm
+
2012-01-06 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* PRE_BUILD, gcc46.patch: fixed build with gcc 4.6
* CONFLICTS: added conflict with tinyxml
diff --git a/libs/sdl/DEPENDS b/libs/sdl/DEPENDS
index 70ca345..882eb0c 100755
--- a/libs/sdl/DEPENDS
+++ b/libs/sdl/DEPENDS
@@ -11,6 +11,7 @@ optional_depends libx11 \
"for X11 video output support" &&

if is_depends_enabled $SPELL libx11;then
+ depends libice &&
depends libxext &&
depends libxrender &&
optional_depends libxrandr "--enable-video-x11-xrandr" '' "X11 Xrandr
extension support" &&
diff --git a/libs/sdl/HISTORY b/libs/sdl/HISTORY
index 3d7e860..1516806 100644
--- a/libs/sdl/HISTORY
+++ b/libs/sdl/HISTORY
@@ -1,3 +1,7 @@
+2013-09-06 Eric Sandall <sandalle AT sourcemage.org>
+ * *SUB_DEPENDS: Replaced xorg-libs with libx11
+ * DEPENDS: Additionally depend on libice when depending on libx11
+
2012-01-27 Robin Cook <rcook AT wyrms.net>
* DETAILS: updated to 1.2.15
* PRE_BUILD: removed mouse fix patch as no longer needed
diff --git a/libs/sdl/PRE_SUB_DEPENDS b/libs/sdl/PRE_SUB_DEPENDS
index aba4593..d371766 100755
--- a/libs/sdl/PRE_SUB_DEPENDS
+++ b/libs/sdl/PRE_SUB_DEPENDS
@@ -1,5 +1,5 @@
case $THIS_SUB_DEPENDS in
-X11-LIBS) is_depends_enabled $SPELL xorg-libs && return 0 ;;
+X11-LIBS) is_depends_enabled $SPELL libx11 && return 0 ;;
esac &&

return 1
diff --git a/libs/sdl/REPAIR^f2c2d723cb24017050035a9c9cd3f210^PRE_SUB_DEPENDS
b/libs/sdl/REPAIR^f2c2d723cb24017050035a9c9cd3f210^PRE_SUB_DEPENDS
new file mode 100755
index 0000000..d371766
--- /dev/null
+++ b/libs/sdl/REPAIR^f2c2d723cb24017050035a9c9cd3f210^PRE_SUB_DEPENDS
@@ -0,0 +1,5 @@
+case $THIS_SUB_DEPENDS in
+X11-LIBS) is_depends_enabled $SPELL libx11 && return 0 ;;
+esac &&
+
+return 1
diff --git a/libs/sdl/SUB_DEPENDS b/libs/sdl/SUB_DEPENDS
index 9d604f2..aeca28e 100755
--- a/libs/sdl/SUB_DEPENDS
+++ b/libs/sdl/SUB_DEPENDS
@@ -1,4 +1,4 @@
case $THIS_SUB_DEPENDS in
-X11-LIBS) depends xorg-libs '--with-x' ;;
+X11-LIBS) depends libx11 '--with-x' ;;
*) echo unknown sub-depends!!! ; return 1 ;;
esac
diff --git a/perl-cpan/x11-protocol/DEPENDS b/perl-cpan/x11-protocol/DEPENDS
index 999ba5c..3175185 100755
--- a/perl-cpan/x11-protocol/DEPENDS
+++ b/perl-cpan/x11-protocol/DEPENDS
@@ -1,3 +1,5 @@
-depends perl &&
-depends X11-SERVER &&
-depends X11-LIBS
+depends perl &&
+
+runtime_depends libx11 &&
+runtime_depends libxau &&
+runtime_depends libxext
diff --git a/perl-cpan/x11-protocol/HISTORY b/perl-cpan/x11-protocol/HISTORY
index e355cfd..a58438f 100644
--- a/perl-cpan/x11-protocol/HISTORY
+++ b/perl-cpan/x11-protocol/HISTORY
@@ -1,3 +1,7 @@
+2013-09-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Per README, doesn't require an X11-SERVER on the current
machine
+ Replace xorg-libs with libx11, libxau, and libxext as runtime
dependencies
+
2008-04-16 Mark Bainter <mbainter AT sourcemage.org>
* BUILD, DEPENDS, DETAILS, HISTORY: spell created

diff --git a/x11/xscreensaver/DEPENDS b/x11/xscreensaver/DEPENDS
index acc1eca..7df551f 100755
--- a/x11/xscreensaver/DEPENDS
+++ b/x11/xscreensaver/DEPENDS
@@ -1,6 +1,13 @@
-depends bc &&
-depends zlib &&
-depends xorg-libs &&
+depends bc &&
+depends libice &&
+depends libx11 &&
+depends libxxf86misc &&
+depends libxxf86vm &&
+depends libxi &&
+depends libxmu &&
+depends libxrender &&
+depends libxt &&
+depends zlib &&

message "${MESSAGE_COLOR}The xscreensaver demo program allows you to" \
"browse among the different effects available in xscreensaver." \
diff --git a/x11/xscreensaver/DETAILS b/x11/xscreensaver/DETAILS
index 1e341d4..9c63a21 100755
--- a/x11/xscreensaver/DETAILS
+++ b/x11/xscreensaver/DETAILS
@@ -1,10 +1,11 @@
SPELL=xscreensaver
- VERSION=5.20
+ VERSION=5.22
SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE_GPG="gurus.gpg:${SOURCE}.sig:WORKS_FOR_ME"
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://www.jwz.org/$SPELL/$SOURCE
WEB_SITE=http://www.jwz.org/xscreensaver/
-
SOURCE_HASH=sha512:2867e081154e53c3d7e16bda1226c9682b296461f93b7565cbb0a267ac81489abefd947e0795f04e77632e108f428c7421e14fdd95894297a8a8da375914db74
+#
SOURCE_HASH=sha512:2867e081154e53c3d7e16bda1226c9682b296461f93b7565cbb0a267ac81489abefd947e0795f04e77632e108f428c7421e14fdd95894297a8a8da375914db74
ENTERED=20010922
LICENSE[0]=BSD
KEYWORDS="x11"
diff --git a/x11/xscreensaver/HISTORY b/x11/xscreensaver/HISTORY
index af42dc5..2600b46 100644
--- a/x11/xscreensaver/HISTORY
+++ b/x11/xscreensaver/HISTORY
@@ -1,3 +1,8 @@
+2013-09-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 5.22
+ * DEPENDS: Replaced xorg-libs with libice, libx11, libxxf86misc,
libxxf86vm,
+ libxi, libxmu, libxrender, and libxt
+
2012-12-08 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 5.20

diff --git a/x11/xscreensaver/xscreensaver-5.22.tar.gz.sig
b/x11/xscreensaver/xscreensaver-5.22.tar.gz.sig
new file mode 100644
index 0000000..cdb8565
Binary files /dev/null and b/x11/xscreensaver/xscreensaver-5.22.tar.gz.sig
differ
diff --git a/xfce/xfce4-profile/DEPENDS b/xfce/xfce4-profile/DEPENDS
index d46c7bd..0180d15 100755
--- a/xfce/xfce4-profile/DEPENDS
+++ b/xfce/xfce4-profile/DEPENDS
@@ -1,9 +1,9 @@
-runtime_depends xorg-libs &&
runtime_depends gtk+2 &&
runtime_depends libxml2 &&
runtime_depends libxfce4util &&
runtime_depends libxfce4menu &&
runtime_depends libxfcegui4 &&
+runtime_depends X11-SERVER &&
runtime_depends xfconf &&
runtime_depends xfce4-settings &&
runtime_depends xfdesktop &&
diff --git a/xfce/xfce4-profile/HISTORY b/xfce/xfce4-profile/HISTORY
index 6e595dd..f62e266 100644
--- a/xfce/xfce4-profile/HISTORY
+++ b/xfce/xfce4-profile/HISTORY
@@ -1,3 +1,6 @@
+2013-09-06 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Replaced runtime dependency on xorg-libs with X11-SERVER
+
2013-06-14 Eric Sandall <sandalle AT sourcemage.org>
* DEPENDS: terminal renamed to xfce4-terminal




  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (7b3818ed0e316272228878a65692b3634768caee), Eric Sandall, 09/06/2013

Archive powered by MHonArc 2.6.24.

Top of Page