Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (1cb2472478cad1d847fecb725a7a87be17020159)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pol Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (1cb2472478cad1d847fecb725a7a87be17020159)
  • Date: Sun, 6 May 2007 15:31:46 -0500

GIT changes to master grimoire by Pol Vinogradov <vin.public AT gmail.com>:

libs/sdl/DEPENDS | 12 +++++++++++-
libs/sdl/HISTORY | 3 +++
x11-libs/wine/DEPENDS | 12 +++++++++++-
x11-libs/wine/DETAILS | 2 +-
x11-libs/wine/HISTORY | 4 ++++
x11-toolkits/gtk+2/DEPENDS | 11 +++++++++--
x11-toolkits/gtk+2/HISTORY | 4 ++++
xfce/xfwm4/DEPENDS | 10 ++++++++++
xfce/xfwm4/HISTORY | 3 +++
9 files changed, 56 insertions(+), 5 deletions(-)

New commits:
commit 73585a5b193297b07d24122d6e2ed77965a06db0
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

xfce/xfwm4:

DEPENDS: added libxrandr as optional if xorg is modular for gtk+2

commit fa63a81c95903bb39d4bc86b72cac47ba0de5ed3
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

x11-libs/wine:

DETAILS: changed SOURCE's version to git for VCS branch

commit ba493e35707d69c9e734ff51505b338e19ee4557
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

x11-toolkits/gtk+2:

DEPENDS: switched to check_if_xorg_modular, added libxrandr as
optional if xorg is modular

commit 2053a7aa7e361c69aee698b6cc8e593e5a24489b
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

x11-libs/wine:

DEPENDS: added libxrandr as optional if xorg is modular

commit 156a7d4def76842d8beeb6431f113fef21baa59c
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

libs/sdl:

DEPENDS: added libxrandr as optional if xorg is modular

diff --git a/libs/sdl/DEPENDS b/libs/sdl/DEPENDS
index 1b49d49..d410495 100755
--- a/libs/sdl/DEPENDS
+++ b/libs/sdl/DEPENDS
@@ -48,4 +48,14 @@ optional_depends nas \
optional_depends directfb \
"--enable-video-directfb" \
"--enable-video-directfb=no" \
- "for DirectFB support"
+ "for DirectFB support" &&
+
+source $GRIMOIRE/FUNCTIONS &&
+
+if check_if_xorg_modular_libs
+then
+ optional_depends libxrandr \
+ "--enable-video-x11-xrandr" \
+ "--enable-video-x11-xrandr=no" \
+ "for X11 Xrandr extension support"
+fi
diff --git a/libs/sdl/HISTORY b/libs/sdl/HISTORY
index 2e225c4..5053e1c 100644
--- a/libs/sdl/HISTORY
+++ b/libs/sdl/HISTORY
@@ -1,3 +1,6 @@
+2007-05-06 Pol Vinogradov <vin.public AT gmail.com>
+ * DEPENDS: added libxrandr as optional if xorg is modular
+
2006-10-14 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* sdl.sh: shize #12890

diff --git a/x11-libs/wine/DEPENDS b/x11-libs/wine/DEPENDS
index bfc660c..bd0c280 100755
--- a/x11-libs/wine/DEPENDS
+++ b/x11-libs/wine/DEPENDS
@@ -91,4 +91,14 @@ optional_depends nas \
optional_depends openssl \
'' \
'' \
- 'for some cryptographic support in ADVAPI32'
+ 'for some cryptographic support in ADVAPI32' &&
+
+source $GRIMOIRE/FUNCTIONS &&
+
+if check_if_xorg_modular_libs
+then
+ optional_depends libxrandr \
+ '' \
+ '' \
+ 'for X11 XRandr extension support'
+fi
diff --git a/x11-libs/wine/DETAILS b/x11-libs/wine/DETAILS
index df4478e..9b44761 100755
--- a/x11-libs/wine/DETAILS
+++ b/x11-libs/wine/DETAILS
@@ -5,7 +5,7 @@ if [[ $WINE_VCS == y ]]; then
else
VERSION=git
fi
- SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE=$SPELL-git.tar.bz2
SOURCE_URL[0]=git://source.winehq.org/git/wine.git:wine
SOURCE_IGNORE=volatile
else
diff --git a/x11-libs/wine/HISTORY b/x11-libs/wine/HISTORY
index 5303f17..e5505e5 100644
--- a/x11-libs/wine/HISTORY
+++ b/x11-libs/wine/HISTORY
@@ -1,3 +1,7 @@
+2007-05-06 Pol Vinogradov <vin.public AT gmail.com>
+ * DEPENDS: added libxrandr as optional if xorg is modular
+ * DETAILS: changed SOURCE's version to git for VCS branch
+
2007-04-27 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 0.9.36

diff --git a/x11-toolkits/gtk+2/DEPENDS b/x11-toolkits/gtk+2/DEPENDS
index 3da708c..78a1dd6 100755
--- a/x11-toolkits/gtk+2/DEPENDS
+++ b/x11-toolkits/gtk+2/DEPENDS
@@ -7,8 +7,15 @@ depends jpeg &&
depends tiff &&
depends cairo &&

-if [ "$(get_spell_provider $SPELL X11-LIBS)" == "xorg-server" ]; then
- depends libxrender
+source $GRIMOIRE/FUNCTIONS &&
+
+if check_if_xorg_modular_libs
+then
+ depends libxrender &&
+ optional_depends libxrandr \
+ "" \
+ "" \
+ "for X11 Xrandr extension support"
fi &&

optional_depends gtk-doc \
diff --git a/x11-toolkits/gtk+2/HISTORY b/x11-toolkits/gtk+2/HISTORY
index a28ecb6..16cc99f 100644
--- a/x11-toolkits/gtk+2/HISTORY
+++ b/x11-toolkits/gtk+2/HISTORY
@@ -1,3 +1,7 @@
+2007-05-06 Pol Vinogradov <vin.public AT gmail.com>
+ * DEPENDS: switched to check_if_xorg_modular, added libxrandr as
+ optional if xorg is modular
+
2007-05-02 Robin Cook <rcook AT wyrms.net>
* DETAILS: updated VERSION to 2.10.12

diff --git a/xfce/xfwm4/DEPENDS b/xfce/xfwm4/DEPENDS
index cd4c15d..c8e0753 100755
--- a/xfce/xfwm4/DEPENDS
+++ b/xfce/xfwm4/DEPENDS
@@ -8,6 +8,16 @@ if [ "$(get_spell_provider $SPELL XDAMAGE)" ==
"xorg-server" ]; then
depends libxrender
fi &&

+source $GRIMOIRE/FUNCTIONS &&
+
+if check_if_xorg_modular_libs gtk+2
+then
+ optional_depends libxrandr \
+ "--enable-randr" \
+ "--disable-randr" \
+ "for X11 Xrandr extension support"
+fi &&
+
optional_depends "startup-notification" \
"" \
"" \
diff --git a/xfce/xfwm4/HISTORY b/xfce/xfwm4/HISTORY
index b8f1af8..b03119b 100644
--- a/xfce/xfwm4/HISTORY
+++ b/xfce/xfwm4/HISTORY
@@ -1,3 +1,6 @@
+2007-05-06 Pol Vinogradov <vin.public AT gmail.com>
+ * DEPENDS: added libxrandr as optional if xorg is modular for gtk+2
+
2007-04-10 George Sherwood <george AT beernabeer.com>
* DETAILS: updated spell to 4.4.1




  • [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (1cb2472478cad1d847fecb725a7a87be17020159), Pol Vinogradov, 05/06/2007

Archive powered by MHonArc 2.6.24.

Top of Page