Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Arjan Bouter (b667b8102c7e86a13a83d79104a042d99c40aa94)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Arjan Bouter <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Arjan Bouter (b667b8102c7e86a13a83d79104a042d99c40aa94)
  • Date: Thu, 18 Sep 2008 22:23:05 -0500

GIT changes to master grimoire by Arjan Bouter <abouter AT sourcemage.org>:

windowmanagers/evilwm/CONFIGURE | 2 --
windowmanagers/evilwm/DEPENDS | 14 ++++++++------
windowmanagers/evilwm/HISTORY | 3 +++
windowmanagers/fluxbox/CONFIGURE | 4 ----
windowmanagers/fluxbox/DEPENDS | 5 +++++
windowmanagers/fluxbox/HISTORY | 3 +++
windowmanagers/fvwm/CONFIGURE | 18 +-----------------
windowmanagers/fvwm/DEPENDS | 10 ++++++----
windowmanagers/fvwm/HISTORY | 4 ++++
windowmanagers/golem/CONFIGURE | 2 --
windowmanagers/golem/DEPENDS | 8 ++------
windowmanagers/golem/HISTORY | 3 +++
windowmanagers/icewm/CONFIGURE | 8 ++------
windowmanagers/icewm/DEPENDS | 5 +++++
windowmanagers/icewm/HISTORY | 3 +++
windowmanagers/lxp-icewm/CONFIGURE | 5 -----
windowmanagers/lxp-icewm/DEPENDS | 5 +++++
windowmanagers/lxp-icewm/HISTORY | 3 +++
18 files changed, 53 insertions(+), 52 deletions(-)

New commits:
commit b667b8102c7e86a13a83d79104a042d99c40aa94
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

lxp-icewm: moved dependency on libxext from CONFIGURE to DEPENDS

commit 97b6702905493a505e9ca0460d2e362d17c72b89
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

icewm: moved dependency on libxext from CONFIGURE to DEPENDS

commit 0e4ba3a26cc742930a0d392647fba19c03024c2c
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

golem: moved dependency on libxinerama from CONFIGURE to DEPENDS

commit a04fcde15e539e353a789b406913b4a93669e0c9
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

fvwm: moved dependencies on libxm, libxext, libxrender and libxrandr to
DEPENDS

commit 44bd63f778ec15127a83b95b96e3a16ba3a73f29
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

evilwm: another case of misplaced dependencies. moved xshape and xrandr
dependencies to DEPENDS

commit ec42948c8f879ca25aa5a75314a8023921c29848
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

fluxbox: moved another dependency from CONFIGURE to DEPENDS where it
belongs

diff --git a/windowmanagers/evilwm/CONFIGURE b/windowmanagers/evilwm/CONFIGURE
index 484da36..8c5f6b1 100755
--- a/windowmanagers/evilwm/CONFIGURE
+++ b/windowmanagers/evilwm/CONFIGURE
@@ -4,8 +4,6 @@ config_query EVILWM_BANMOVE "Show the same banner on moves
and resizes (note thi
config_query EVILWM_SNAPBORDER "Would you like snap-to-border support ?" y &&
config_query EVILWM_TEXTMESSAGES "Compile in certain text messages like help
?" y &&
config_query EVILWM_COLORMAP "Would you like to have colormap support (e.g.,
for 16 or more bit displays)" y &&
-config_query EVILWM_SHAPE "Would you like to have X SHAPE support?" y &&
-config_query EVILWM_RANDR "Would you like to have Xrandr support?" y &&

config_query EVILWM_EDITGENCONFIG "Would you like to edit the evilwm general
configuration?" n &&
config_query EVILWM_EDITKEYCONFIG "Would you like to edit the evilwm
keycodes?" n
diff --git a/windowmanagers/evilwm/DEPENDS b/windowmanagers/evilwm/DEPENDS
index 4e82cd0..63dc52a 100755
--- a/windowmanagers/evilwm/DEPENDS
+++ b/windowmanagers/evilwm/DEPENDS
@@ -1,12 +1,14 @@
depends xorg-libs &&

-if [[ "$EVILWM_SHAPE" = 'y' ]]; then
- depends libxext
-fi &&
+optional_depends libxext \
+ "--enable-shape" \
+ "--disable-shape" \
+ "Enable XShape support?" &&

-if [[ "$EVILWM_RANDR" = 'y' ]]; then
- depends libxrandr
-fi &&
+optional_depends libxrandr \
+ "--enable-randr" \
+ "--disable-randr" \
+ "Enable XRandr support?" &&

optional_depends "MOTIF" \
"USEMOTIF" \
diff --git a/windowmanagers/evilwm/HISTORY b/windowmanagers/evilwm/HISTORY
index e7a3cd0..6622749 100644
--- a/windowmanagers/evilwm/HISTORY
+++ b/windowmanagers/evilwm/HISTORY
@@ -1,3 +1,6 @@
+2008-09-19 Arjan Bouter <abouter AT sourcemage.org>
+ * DEPENDS,CONFIGURE: moved xshape and xrandr deps to DEPENDS
+
2008-09-16 Arjan Bouter <abouter AT sourcemage.org>
* DEPENDS: removed leftover &&

diff --git a/windowmanagers/fluxbox/CONFIGURE
b/windowmanagers/fluxbox/CONFIGURE
index 5f9956f..d86907d 100755
--- a/windowmanagers/fluxbox/CONFIGURE
+++ b/windowmanagers/fluxbox/CONFIGURE
@@ -1,10 +1,6 @@
config_query FLUXBOX_CONF "Go through all (11) configuration options?" n

if [[ $FLUXBOX_CONF == y ]]; then
- config_query_option FLUXBOX_OPTS "enable support of the XShape extension?"
y \
- "--enable-shape" \
- "--disable-shape" &&
-
config_query_option FLUXBOX_OPTS "include code for the Slit?" y \
"--enable-slit" \
"--disable-slit" &&
diff --git a/windowmanagers/fluxbox/DEPENDS b/windowmanagers/fluxbox/DEPENDS
index 05b0c95..776e326 100755
--- a/windowmanagers/fluxbox/DEPENDS
+++ b/windowmanagers/fluxbox/DEPENDS
@@ -26,6 +26,11 @@ optional_depends libxinerama \
"--disable-xinerama" \
"for Xinerama extension support" &&

+optional_depends libxext \
+ "--enable-shape" \
+ "--disable-shape" \
+ "for XShape extension support" &&
+
optional_depends libxft \
"--enable-xft" \
"--disable-xft" \
diff --git a/windowmanagers/fluxbox/HISTORY b/windowmanagers/fluxbox/HISTORY
index c7e5877..420294b 100644
--- a/windowmanagers/fluxbox/HISTORY
+++ b/windowmanagers/fluxbox/HISTORY
@@ -1,3 +1,6 @@
+2008-09-19 Arjan Bouter <abouter AT sourcemage.org>
+ * DEPENDS,CONFIGURE: moved XShape to the right place
+
2008-09-18 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.1.1, added DEVEL branch
* DEPENDS, CONFIGURE: fixed the conflicts; `xrandr' -> `randr'
diff --git a/windowmanagers/fvwm/CONFIGURE b/windowmanagers/fvwm/CONFIGURE
index aaa7250..922c308 100755
--- a/windowmanagers/fvwm/CONFIGURE
+++ b/windowmanagers/fvwm/CONFIGURE
@@ -3,20 +3,4 @@ if [ ! "${FVWM_RELEASE}" = "stable" ]; then
"Enable NLS?" y \
"--enable-nls" \
"--disable-nls" &&
- config_query_option FVWM_OPTS \
- "Enable Xrender alpha-blend rendering?" y \
- "--enable-xrender" \
- "--disable-xrender"
-fi &&
-config_query_option FVWM_OPTS \
- "Enable Session Managment?" y \
- "--enable-sm" \
- "--disable-sm" &&
-config_query_option FVWM_OPTS \
- "Enable shaped window support?" y \
- "--enable-shape" \
- "--disable-shape" &&
-config_query_option FVWM_OPTS \
- "Enable xinerama support?" y \
- "--enable-xinerama" \
- "--disable-xinerama"
+fi
diff --git a/windowmanagers/fvwm/DEPENDS b/windowmanagers/fvwm/DEPENDS
index 05f58b4..0af7c65 100755
--- a/windowmanagers/fvwm/DEPENDS
+++ b/windowmanagers/fvwm/DEPENDS
@@ -6,14 +6,16 @@ optional_depends "libstroke" "" "" "allows interpretation
by fvwm of mouse strok
optional_depends "gtk+" "" "--disable-gtk" "With GTK support for
FvwmGtk?" &&
optional_depends "gnome-libs" "--with-gnome" "--with-gnome=no" "With GNOME
support in FvwmGtk?" &&
optional_depends "readline" "--with-readline-library
--without-termcap-library" "--without-readline-library" "line
editing/history" &&
-
-# as soon as there is an rplay spell insert this optional dependency:
-optional_depends "rplay" "" "--without-rplay-library" "support sound"
+optional_depends libsm "--enable-sm" "--disable-sm" "Enable session
Managment?" &&
+optional_depends libxext "--enable-shape" "--disable-shape" "Enable shaped
window support?" &&
+optional_depends libxinerama "--enable-xinerama" "--disable-xinerama"
"Enable xinerama support?" &&
+optional_depends libxrender "--enable-xrender" "--disable-xrender" "Enable
Xrender alpha-blend rendering?" &&
+optional_depends "rplay" "--enable-rplay" "--without-rplay-library" "support
sound" &&

if [ ! "${FVWM_RELEASE}" = "stable" ]; then
optional_depends "perl" "--enable-perllib" "--disable-perllib" "install
perl bindings" &&
optional_depends "fribidi" "--enable-bidi" "--disable-bidi"
"bidirectional writing support" &&
- optional_depends "libpng" "" "--without-png-library" "png image support"
+ optional_depends "libpng" "--with-png" "--without-png-library" "png
image support"
fi &&

if [ "${FVWM_RELEASE}" = "cvs" ]; then
diff --git a/windowmanagers/fvwm/HISTORY b/windowmanagers/fvwm/HISTORY
index 25952c4..4edcbfc 100644
--- a/windowmanagers/fvwm/HISTORY
+++ b/windowmanagers/fvwm/HISTORY
@@ -1,3 +1,7 @@
+2008-09-19 Arjan Bouter <abouter AT sourcemage.org>
+ * DEPENDS,CONFIGURE: moved dependencies on libsm, libxext,
+ libxrender and libxrandr to DEPENDS
+
2008-05-10 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS, PRE_BUILD, FlatSeparators-2.5.26.patch.bz2: unstable
version 2.5.26
diff --git a/windowmanagers/golem/CONFIGURE b/windowmanagers/golem/CONFIGURE
index 92e20cc..8d953c5 100755
--- a/windowmanagers/golem/CONFIGURE
+++ b/windowmanagers/golem/CONFIGURE
@@ -1,6 +1,4 @@
config_query_option GOLEM_PLUGIN "Enable plugin support?" y \
"--enable-plugins" "--disable-plugins" &&
-config_query_option GOLEM_XINERAMA "Enable xinerama support?" y \
- "--enable-xinerama" "--disable-xinerama" &&
config_query_option GOLEM_I18N "Enable i18n support?" y \
"--enable-i18n" "--disable-i18n"
diff --git a/windowmanagers/golem/DEPENDS b/windowmanagers/golem/DEPENDS
index 438fe6b..d805264 100755
--- a/windowmanagers/golem/DEPENDS
+++ b/windowmanagers/golem/DEPENDS
@@ -1,9 +1,5 @@
depends xorg-libs &&
optional_depends esound "--enable-sound" "--disable-sound" \
"For sound support" &&
-if [[ "$GOLEM_XINERAMA" = "--enable-xinerama" ]] ; then
- if [[ "$(get_spell_provider ${1:-$SPELL} xorg-libs)" == "xorg-libs"
]] ||
- [[ "$(get_spell_provider ${1:-$SPELL} xorg-libs)" == "xorg-server"
]] ; then
- depends libxinerama
- fi
-fi
+optional_depends libxinerama "--enable-xinerama" --disable-xinerama" \
+ "For xinerama support"
diff --git a/windowmanagers/golem/HISTORY b/windowmanagers/golem/HISTORY
index 24b3965..73f3583 100644
--- a/windowmanagers/golem/HISTORY
+++ b/windowmanagers/golem/HISTORY
@@ -1,3 +1,6 @@
+2008-09-19 Arjan Bouter <abouter AT sourcemage.org>
+ * DEPENDS, CONFIGURE: moved libxinerama from CONFIGURE to DEPENDS
+
2008-03-18 Eric Sandall <sandalle AT sourcemage.org>
* DEPENDS: Switch X11-LIBS to the one and only xorg-libs

diff --git a/windowmanagers/icewm/CONFIGURE b/windowmanagers/icewm/CONFIGURE
index d686bc4..da6de91 100755
--- a/windowmanagers/icewm/CONFIGURE
+++ b/windowmanagers/icewm/CONFIGURE
@@ -1,8 +1,3 @@
-config_query_option ICE_DECO \
- "Enable shaped decorations?" y \
- " --enable-shaped-decorations --enable-shape" \
- " --disable-shaped-decorations --disable-shape" &&
-
config_query_option ICE_SM \
"Enable session management (experimental)?" n \
"--enable-sm" "--disable-sm" &&
@@ -29,4 +24,5 @@ persistent_remove ICE_LITE &&
persistent_remove ICE_GRAD &&
persistent_remove ICE_GUI_EVENTS &&
persistent_remove ICE_GNOME1 &&
-persistent_remove ICE_GNOME2
+persistent_remove ICE_GNOME2 &&
+persistent_remove ICE_DECO
diff --git a/windowmanagers/icewm/DEPENDS b/windowmanagers/icewm/DEPENDS
index 76bb87e..2b9379d 100755
--- a/windowmanagers/icewm/DEPENDS
+++ b/windowmanagers/icewm/DEPENDS
@@ -11,6 +11,11 @@ optional_depends libxinerama \
"--disable-xinerama" \
"For xinerama support" &&

+optional_depends libxext \
+ "--enable-shaped-decorations --enable-shape" \
+ "--disable-shaped-decorations --disable-shape" \
+ "For shaped window support" &&
+
optional_depends libxrandr \
"--enable-xrandr" \
"--disable-xrandr" \
diff --git a/windowmanagers/icewm/HISTORY b/windowmanagers/icewm/HISTORY
index 8fab9f4..e8a0b8e 100644
--- a/windowmanagers/icewm/HISTORY
+++ b/windowmanagers/icewm/HISTORY
@@ -1,3 +1,6 @@
+2008-09-19 Arjan Bouter <abouter AT sourcmage.org>
+ * DEPENDS,CONFIGURE: moved dependency on libxext to DEPENDS
+
2008-03-18 Eric Sandall <sandalle AT sourcemage.org>
* DEPENDS: Switch X11-LIBS to the one and only xorg-libs
No need to check if using modular X as that's all that's available
now
diff --git a/windowmanagers/lxp-icewm/CONFIGURE
b/windowmanagers/lxp-icewm/CONFIGURE
index c6bc84b..e7e685f 100755
--- a/windowmanagers/lxp-icewm/CONFIGURE
+++ b/windowmanagers/lxp-icewm/CONFIGURE
@@ -1,8 +1,3 @@
-config_query_option LXP_DECO \
- "Enable shaped decorations?" y \
- " --enable-shaped-decorations --enable-shape" \
- " --disable-shaped-decorations --disable-shape" &&
-
config_query_option LXP_SM \
"Enable session management (experimental)?" n \
"--enable-sm" "--disable-sm" &&
diff --git a/windowmanagers/lxp-icewm/DEPENDS
b/windowmanagers/lxp-icewm/DEPENDS
index b0bf1a1..ce2360b 100755
--- a/windowmanagers/lxp-icewm/DEPENDS
+++ b/windowmanagers/lxp-icewm/DEPENDS
@@ -2,6 +2,11 @@ depends lxp
&&
depends lxp-icewm-themes &&
depends xorg-libs &&

+optional_depends libxext \
+ "--enable-shaped-decorations --enable-shape" \
+ "--disable-shaped-decorations --disable-shape" \
+ "For shaped window support" &&
+
optional_depends libxinerama \
"--enable-xinerama" \
"--disable-xinerama" \
diff --git a/windowmanagers/lxp-icewm/HISTORY
b/windowmanagers/lxp-icewm/HISTORY
index 5130d98..d3a5ddb 100644
--- a/windowmanagers/lxp-icewm/HISTORY
+++ b/windowmanagers/lxp-icewm/HISTORY
@@ -1,3 +1,6 @@
+2008-09-19 Arjan Bouter <abouter AT sourcmage.org>
+ * DEPENDS,CONFIGURE: moved dependency on libxext to DEPENDS
+
2008-03-18 Eric Sandall <sandalle AT sourcemage.org>
* DEPENDS: Switch X11-LIBS to the one and only xorg-libs




  • [SM-Commit] GIT changes to master grimoire by Arjan Bouter (b667b8102c7e86a13a83d79104a042d99c40aa94), Arjan Bouter, 09/18/2008

Archive powered by MHonArc 2.6.24.

Top of Page