Skip to Content.
Sympa Menu

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

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 (12dbaaf9edac64ddb3ef9b45098b562972c62914)
  • Date: Fri, 14 Aug 2009 17:25:55 -0500

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

graphics/netpbm/BUILD | 23 ++++++++++++++---------
graphics/netpbm/HISTORY | 3 +++
graphics/netpbm/PRE_BUILD | 4 +++-
windowmanagers/dwm/CONFIGURE | 2 +-
windowmanagers/dwm/DETAILS | 4 ++--
windowmanagers/dwm/HISTORY | 4 ++++
windowmanagers/lxp-icewm/HISTORY | 3 +++
windowmanagers/lxp-icewm/configs | 2 +-
windowmanagers/lxp-icewm/volatiles | 2 +-
windowmanagers/scrotwm/BUILD | 1 +
windowmanagers/scrotwm/DETAILS | 7 ++++---
windowmanagers/scrotwm/HISTORY | 3 +++
windowmanagers/scrotwm/INSTALL | 7 ++++---
wm-addons/lxp-icewm-themes/HISTORY | 3 +++
wm-addons/lxp-icewm-themes/TRIGGERS | 1 +
15 files changed, 48 insertions(+), 21 deletions(-)

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

lxp-icewm-themes: added trigger on lxp-icewm

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

lxp-icewm: corrected menu location in configs/volatiles

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

scrotwm: version 0.9.5

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

dwm: version 5.6.1

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

netpbm: fixed building svn releases

diff --git a/graphics/netpbm/BUILD b/graphics/netpbm/BUILD
index 411aab5..6a8c497 100755
--- a/graphics/netpbm/BUILD
+++ b/graphics/netpbm/BUILD
@@ -1,10 +1,15 @@
-cp Makefile.config.in Makefile.config &&
-cat >> Makefile.config << EOF
+if [[ "${NETPBM_SVN}" == 'y' ]]; then
+ CONFIGFILE=config.mk
+else
+ CONFIGFILE=Makefile.conf
+fi &&
+cp ${CONFIGFILE}.in $CONFIGFILE &&
+cat >> $CONFIGFILE << EOF
DEFAULT_TARGET = nonmerge
NETPBMLIBTYPE=unixshared
NETPBMLIBSUFFIX=so
STATICLIB_TOO=n
-CFLAGS = -ffast-math -pedantic -Wall -Wno-uninitialized
-Wmissing-declarations -Wimplicit -Wwrite-strings -Wmissing-prototypes -Wundef
+CFLAGs = $CFLAGS
CFLAGS_MERGE = -Wno-missing-declarations -Wno-missing-prototypes -fno-common
LDRELOC = ld --reloc
LINKER_CAN_DO_EXPLICIT_LIBRARY = Y
@@ -14,21 +19,21 @@ NETPBM_DOCURL = http://netpbm.sourceforge.net/doc/
PNGLIB = libpng.so
EOF
if list_find "$OPTS" yes-jpeg; then
- echo "JPEGLIB = libjpeg.so" >> Makefile.config
+ echo "JPEGLIB = libjpeg.so" >> $CONFIGFILE
fi &&
if list_find "$OPTS" yes-tiff; then
- echo "TIFFLIB = libtiff.so" >> Makefile.config
+ echo "TIFFLIB = libtiff.so" >> $CONFIGFILE
fi &&
if list_find "$OPTS" yes-zlib; then
- echo "ZLIB = libz.so" >> Makefile.config
+ echo "ZLIB = libz.so" >> $CONFIGFILE
fi &&
if list_find "$OPTS" yes-x11; then
- echo "X11LIB = /usr/lib/libX11.so" >> Makefile.config
+ echo "X11LIB = /usr/lib/libX11.so" >> $CONFIGFILE
fi &&
if list_find "$OPTS" yes-svga; then
- echo "LINUXSVGALIB = libvga.so" >> Makefile.config
+ echo "LINUXSVGALIB = libvga.so" >> $CONFIGFILE
fi &&
-sedit "s/^\(CFLAGS =\)/\1 ${CFLAGS} /" Makefile.config &&
+sedit "s/^\(CFLAGS =\)/\1 ${CFLAGS} /" $CONFIGFILE &&
make_single &&
make &&
make_normal
diff --git a/graphics/netpbm/HISTORY b/graphics/netpbm/HISTORY
index 4750edb..ff60e2d 100644
--- a/graphics/netpbm/HISTORY
+++ b/graphics/netpbm/HISTORY
@@ -1,3 +1,6 @@
+2009-08-14 Arjan Bouter <abouter AT sourcemage.org>
+ * PRE_BUILD, BUILD: fixed building svn releases
+
2009-06-10 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 10.26.63

diff --git a/graphics/netpbm/PRE_BUILD b/graphics/netpbm/PRE_BUILD
index c580042..2c9a5a6 100755
--- a/graphics/netpbm/PRE_BUILD
+++ b/graphics/netpbm/PRE_BUILD
@@ -9,4 +9,6 @@ fi &&
sed -i "s:/link:/lib:g" lib/Makefile &&

# fixing paths
-sed -i "s:misc:share/netpbm:;s:/man/:/share/man/:g" Makefile.common
+if [[ $NETPBM_RELEASE != advanced ]] && [[ $NETPBM_RELEASE != trunk ]]; then
+ sed -i "s:misc:share/netpbm:;s:/man/:/share/man/:g" Makefile.common
+fi
diff --git a/windowmanagers/dwm/CONFIGURE b/windowmanagers/dwm/CONFIGURE
index ee6041c..85c4a13 100755
--- a/windowmanagers/dwm/CONFIGURE
+++ b/windowmanagers/dwm/CONFIGURE
@@ -1,3 +1,3 @@
message 'DWM does not use a config file, you might want to customize it now'
&&
-message 'Your custom config will be saved to
${INSTALL_ROOT}/usr/share/doc/dwm/' &&
+message "Your custom config will be saved to
${INSTALL_ROOT}/usr/share/doc/dwm/" &&
config_query DWM_CONFIG 'Do you wish to use a custom config.def.h?' n
diff --git a/windowmanagers/dwm/DETAILS b/windowmanagers/dwm/DETAILS
index ceb9743..24fc6a7 100755
--- a/windowmanagers/dwm/DETAILS
+++ b/windowmanagers/dwm/DETAILS
@@ -1,8 +1,8 @@
SPELL=dwm
- VERSION=5.6
+ VERSION=5.6.1
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://code.suckless.org/dl/dwm/${SOURCE}
-
SOURCE_HASH=sha512:5e8d845c24a1110d569cdceae8e77a2b7f2b23f54defd69c1074c83949da4b4230fd43c6a292184c73efcaf5cfb0cf6945c3a554ded63b70a479a51005af66e4
+
SOURCE_HASH=sha512:5cc56b23bb25217f70176e2cb9ac7cd97f9278ce045805d43e4207a73b07855adaa670f09c008226b11c250f9d8e5c3e95efb80109a385646124df81738046a3
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
WEB_SITE=http://dwm.suckless.org/
ENTERED=20060923
diff --git a/windowmanagers/dwm/HISTORY b/windowmanagers/dwm/HISTORY
index 655e34f..ae60e3c 100644
--- a/windowmanagers/dwm/HISTORY
+++ b/windowmanagers/dwm/HISTORY
@@ -1,3 +1,7 @@
+2009-08-14 Arjan Bouter <abouter AT sourcemage.org>
+ * DETAILS: version 5.6.1
+ * CONFIGURE: fixed config file location message
+
2009-07-23 Arjan Bouter <abouter AT sourcemage.org>
* DETAILS: version 5.6

diff --git a/windowmanagers/lxp-icewm/HISTORY
b/windowmanagers/lxp-icewm/HISTORY
index 5d84e6e..4b3528b 100644
--- a/windowmanagers/lxp-icewm/HISTORY
+++ b/windowmanagers/lxp-icewm/HISTORY
@@ -1,3 +1,6 @@
+2009-08-07 Arjan Bouter <abouter AT sourcmage.org>
+ * configs, volatiles: corrected menu location
+
2009-04-23 Arjan Bouter <abouter AT sourcmage.org>
* BUILD,DEPENDS: removed broken gnome2 menu support

diff --git a/windowmanagers/lxp-icewm/configs
b/windowmanagers/lxp-icewm/configs
index 0caac29..43b2b44 100755
--- a/windowmanagers/lxp-icewm/configs
+++ b/windowmanagers/lxp-icewm/configs
@@ -1 +1 @@
-^/usr/share/icewm/menu$
+^/usr/share/lxp-icewm/menu$
diff --git a/windowmanagers/lxp-icewm/volatiles
b/windowmanagers/lxp-icewm/volatiles
index 0caac29..43b2b44 100755
--- a/windowmanagers/lxp-icewm/volatiles
+++ b/windowmanagers/lxp-icewm/volatiles
@@ -1 +1 @@
-^/usr/share/icewm/menu$
+^/usr/share/lxp-icewm/menu$
diff --git a/windowmanagers/scrotwm/BUILD b/windowmanagers/scrotwm/BUILD
index 05fb800..6e42706 100755
--- a/windowmanagers/scrotwm/BUILD
+++ b/windowmanagers/scrotwm/BUILD
@@ -1,2 +1,3 @@
cd ${SOURCE_DIRECTORY}/linux &&
make
+make
diff --git a/windowmanagers/scrotwm/DETAILS b/windowmanagers/scrotwm/DETAILS
index af74ea8..a766066 100755
--- a/windowmanagers/scrotwm/DETAILS
+++ b/windowmanagers/scrotwm/DETAILS
@@ -1,12 +1,13 @@
SPELL=scrotwm
- VERSION=0.9.2
+ VERSION=0.9.5
SOURCE="${SPELL}-${VERSION}.tgz"
SOURCE_URL[0]=http://www.peereboom.us/${SPELL}/snapshot/${SOURCE}
-
SOURCE_HASH=sha512:07c82820e21a819b0c5a8e2c3b578afa5f3cbd9fd8658c38c32ec9a7bcdbbc26ebb2aeb58c48629e218832190b8adb9837cb91cdc6e7f9fefbbbc15b60725be1
+
SOURCE_HASH=sha512:b6329e607c6a4b30cbdd96a1d53ebf47a59864f3083d41491bef9a9c2df825b386cc0aae84427aefa1565f28bf69dff4fd6b346b0194b9cc89df72b3bedb7820
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
- WEB_SITE="http://www.peereboom.us/scrotwm/html/scrotwm.html";
+ WEB_SITE="http://www.scrotwm.org";
LICENSE[0]=ISC
ENTERED=20090424
+ GATHER_DOCS=on
DOCS="$DOCS baraction.sh initscreen.sh screenshot.sh"
SHORT="a small dynamic tiling window manager"
cat << EOF
diff --git a/windowmanagers/scrotwm/HISTORY b/windowmanagers/scrotwm/HISTORY
index 074c7fe..ba26949 100644
--- a/windowmanagers/scrotwm/HISTORY
+++ b/windowmanagers/scrotwm/HISTORY
@@ -1,3 +1,6 @@
+2009-08-14 Arjan Bouter <abouter AT sourcemage.org>
+ * DETAILS: version 0.9.5, updated website url
+
2009-04-24 Arjan Bouter <abouter AT sourcemage.org>
* BUILD, DETAILS, DEPENDS, INSTALL, PRE_BUILD: spell created

diff --git a/windowmanagers/scrotwm/INSTALL b/windowmanagers/scrotwm/INSTALL
index d4e676a..3638c9e 100755
--- a/windowmanagers/scrotwm/INSTALL
+++ b/windowmanagers/scrotwm/INSTALL
@@ -1,6 +1,7 @@
install -m 0755 scrotwm ${INSTALL_ROOT}/usr/bin/scrotwm &&
install -m 0644 ../scrotwm.1 ${INSTALL_ROOT}/usr/share/man/man1/scrotwm.1 &&
install -m 0644 ../scrotwm.conf ${INSTALL_ROOT}/etc/scrotwm.conf
-#install -m 0755 -D ../baraction.sh
${INSTALL_ROOT}/usr/share/doc/scrotwm/baraction.sh &&
-#install -m 0755 -D ../initscreen.sh
${INSTALL_ROOT}/usr/share/doc/scrotwm/initscreen.sh &&
-#install -m 0755 -D ../screenshot.sh
${INSTALL_ROOT}/usr/share/doc/scrotwm/screenshot.sh
+[[ -d "${INSTALL_ROOT}/usr/share/doc/${SPELL}" ]] || mkdir
"${INSTALL_ROOT}/usr/share/doc/${SPELL}"
+install -m 0755 -D ../baraction.sh
${INSTALL_ROOT}/usr/share/doc/scrotwm/baraction.sh &&
+install -m 0755 -D ../initscreen.sh
${INSTALL_ROOT}/usr/share/doc/scrotwm/initscreen.sh &&
+install -m 0755 -D ../screenshot.sh
${INSTALL_ROOT}/usr/share/doc/scrotwm/screenshot.sh
diff --git a/wm-addons/lxp-icewm-themes/HISTORY
b/wm-addons/lxp-icewm-themes/HISTORY
index ae7f575..fd75655 100644
--- a/wm-addons/lxp-icewm-themes/HISTORY
+++ b/wm-addons/lxp-icewm-themes/HISTORY
@@ -1,3 +1,6 @@
+2009-08-07 Arjan Bouter <abouter AT sourcemage.org>
+ * TRIGGERS: added, casting lxp-icewm removes the themedir
+
2008-09-16 Arjan Bouter <abouter AT sourcemage.org>
* INSTALL: create theme dir before installing into it

diff --git a/wm-addons/lxp-icewm-themes/TRIGGERS
b/wm-addons/lxp-icewm-themes/TRIGGERS
new file mode 100755
index 0000000..55ef0f7
--- /dev/null
+++ b/wm-addons/lxp-icewm-themes/TRIGGERS
@@ -0,0 +1 @@
+on_cast lxp-icewm cast_self



  • [SM-Commit] GIT changes to master grimoire by Arjan Bouter (12dbaaf9edac64ddb3ef9b45098b562972c62914), Arjan Bouter, 08/14/2009

Archive powered by MHonArc 2.6.24.

Top of Page