Skip to Content.
Sympa Menu

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

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 (33a1dd5d2d64a8f4b83af20250995bd8147c236f)
  • Date: Tue, 19 Feb 2008 16:23:51 -0600

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

ChangeLog | 3 +
audio-creation/audacity/CONFIGURE | 4 +-
audio-creation/audacity/DEPENDS | 45
++++++++++++++++--------
audio-creation/audacity/DETAILS | 6 +--
audio-creation/audacity/HISTORY | 7 +++
audio-creation/audacity/PRE_BUILD | 5 --
audio-creation/audacity/audacity.desktop.patch | 46
-------------------------
audio-plugins/vamp-plugin-sdk/BUILD | 1
audio-plugins/vamp-plugin-sdk/DETAILS | 15 ++++++++
audio-plugins/vamp-plugin-sdk/HISTORY | 2 +
e/e17/DEPENDS | 9 ----
e/e17/HISTORY | 3 +
e/ecore/DEPENDS | 20 ++++++++--
e/ecore/HISTORY | 4 ++
windowmanagers/evilwm/CONFIGURE | 19 +++++-----
windowmanagers/evilwm/DEPENDS | 13 ++++++-
windowmanagers/evilwm/HISTORY | 3 +
windowmanagers/evilwm/PRE_BUILD | 42 ++++++++++++++--------
18 files changed, 139 insertions(+), 108 deletions(-)

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

audacity: beta version 1.3.4, repaired configure options and added
optional
depends on jack, expat and vamp-plugin-sdk. Repairing the desktop
file is no longer needed.

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

vamp-plugin-sdk: new spell, audio analysis plugins

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

evilwm: made libxrandr optional

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

e17: moved libx* depends to ecore

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

ecore: moved libx* deps from e17 to ecore

diff --git a/ChangeLog b/ChangeLog
index c36c994..15b68a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2008-02-19 Arjan Bouter <abouter AT sourcemage.org>
+ * audio-plugins/vamp-plugin-sdk: new spell, audio analysis plugins
+
2008-02-19 Vlad Glagolev <stealth AT sourcemage.org>
* python-pypi/pygments: new spell, pythonic generic syntax highlighter

diff --git a/audio-creation/audacity/CONFIGURE
b/audio-creation/audacity/CONFIGURE
index 1afc0f1..3599097 100755
--- a/audio-creation/audacity/CONFIGURE
+++ b/audio-creation/audacity/CONFIGURE
@@ -7,10 +7,10 @@ config_query_option AUDACITY_PORTAUDIO "Compile with
PortAudio v19?" y \
fi &&

config_query_option AUDACITY_NYQUIST "Compile with Nyquist plug-in
support?" y \
- "--with-nyquist" "--without-nyquist" &&
+ "--enable-nyquist" "--disable-nyquist" &&

config_query_option AUDACITY_LADSPA "Compile with LADSPA plug-in support?"
y \
- "--with-ladspa" "--without-ladspa" &&
+ "--enable-ladspa" "--disable-ladspa" &&

config_query_option AUDACITY_PORTMIXER "Compile with PortMixer?" y \
"--with-portmixer" "--without-portmixer"
diff --git a/audio-creation/audacity/DEPENDS b/audio-creation/audacity/DEPENDS
index 60bbf56..40e4990 100755
--- a/audio-creation/audacity/DEPENDS
+++ b/audio-creation/audacity/DEPENDS
@@ -9,32 +9,44 @@ if [ "$AUDACITY_REL" == "cvs" ]; then
depends CVS
fi &&

-optional_depends flac "" "--without-flac" "For flac support" &&
+optional_depends flac "--with-flac" "--without-flac" "For flac support" &&

-optional_depends twolame "" \
- "--without-libtwolame" \
- "For twolame support" &&
+optional_depends twolame "--with-libtwolame" \
+ "--without-libtwolame" \
+ "For twolame support" &&

-optional_depends libvorbis "" \
- "--without-vorbis" \
- "for flac support" &&
+optional_depends libvorbis "--with-vorbis" \
+ "--without-vorbis" \
+ "for ogg/vorbis support" &&

optional_depends libmad "--with-libmad=system" "--without-libmad" \
"for MP3 importing support" &&

-optional_depends libid3tag \
- "" \
- "--without-id3tag" \
- "for MP3 ID3 tag support" &&
+optional_depends libid3tag \
+ "--with-id3tag" \
+ "--without-id3tag" \
+ "for MP3 ID3 tag support" &&

optional_depends libsndfile \
"--with-libsndfile=system" \
"--with-libsndfile=local" \
"to use system libsndfile" &&

-optional_depends libsamplerate \
- "" \
- "--without-libsamplerate" \
+optional_depends expat \
+ "--with-expat=system" \
+ "--with-expat=local" \
+ "to use system expat" &&
+
+optional_depends jack \
+ "" \
+ "" \
+ "to build with jack support" &&
+
+message "${PROBLEM_COLOR}Do not use libsamplerate in conjunction with VST
plug-in support!${DEFAULT_COLOR}" &&
+
+optional_depends libsamplerate \
+ "--with-libsamplerate" \
+ "--without-libsamplerate" \
"to use external libsamplerate" &&

if [ "$AUDACITY_REL" == "current" ]; then
@@ -42,4 +54,9 @@ optional_depends soundtouch \
"--with-soundtouch=system" \
"--with-soundtouch=local" \
"to use external soundtouch for editing"
+fi &&
+
+if [ "$AUDACITY_REL" == "beta" ] || [ "$AUDACITY_REL" == "cvs" ]; then
+ optional_depends vamp-plugin-sdk "--enable-vamp" "--disable-vamp" \
+ "Compile with vamp plug-in support?"
fi
diff --git a/audio-creation/audacity/DETAILS b/audio-creation/audacity/DETAILS
index e4ab2a8..76c3367 100755
--- a/audio-creation/audacity/DETAILS
+++ b/audio-creation/audacity/DETAILS
@@ -12,10 +12,10 @@ if [ "$AUDACITY_REL" == "cvs" ]; then
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-cvs
else
if [ "$AUDACITY_REL" == "beta" ]; then
- VERSION=1.3.3
- SOURCE=$SPELL-src-$VERSION.tar.gz
+ VERSION=1.3.4
+ SOURCE=$SPELL-src-$VERSION.tar.bz2
SOURCE_URL=$SOURCEFORGE_URL/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:c122d440392f08838cf0e35fea01f7964fa5b359b1a2b14f0cc5b6aaa7b3d99555a627eb42373a412559c4385e08c6f8159c04f7f9a3360e24f65c6993bc8c9d

+
SOURCE_HASH=sha512:66105a6febb346de9cfa324601ae30c9889899c57c04b193bc35f53b5d8271d75917f6ece774df6762f7f610fa90f395317d5594e4a147e73f148bfdae4baf87
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-src-$VERSION-beta
else
VERSION=1.2.6
diff --git a/audio-creation/audacity/HISTORY b/audio-creation/audacity/HISTORY
index 231e5b0..151e098 100644
--- a/audio-creation/audacity/HISTORY
+++ b/audio-creation/audacity/HISTORY
@@ -1,3 +1,10 @@
+2008-01-18 Arjan Bouter <abouter AT sourcemage.org>
+ * DETAILS: beta version bumped to 1.3.4, repaired source url
+ * DEPENDS: completed --with/--without options, repaired vorbis
+ description, added vamp-plugin-sdk, jack and expat.
+ * PRE_BUILD: removed, the desktop file in the tarball works now.
+ * audacity.desktop.patch: removed
+
2008-01-11 Arjan Bouter <abouter AT sourcemage.org>
* BUILD: use normal make instead of make_single and make_normal

diff --git a/audio-creation/audacity/PRE_BUILD
b/audio-creation/audacity/PRE_BUILD
deleted file mode 100755
index e1079a2..0000000
--- a/audio-creation/audacity/PRE_BUILD
+++ /dev/null
@@ -1,5 +0,0 @@
-default_pre_build &&
-cd $SOURCE_DIRECTORY &&
-if [ "$AUDACITY_REL" == "beta" ] || [ "$AUDACITY_REL" == "cvs" ]; then
- patch -p1 < $SCRIPT_DIRECTORY/audacity.desktop.patch
-fi
diff --git a/audio-creation/audacity/audacity.desktop.patch
b/audio-creation/audacity/audacity.desktop.patch
deleted file mode 100644
index 56861c1..0000000
--- a/audio-creation/audacity/audacity.desktop.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-diff -Naur audacity-src-1.3.2-beta/src/audacity.desktop
audacity-src-1.3.2-beta-fixed/src/audacity.desktop
---- audacity-src-1.3.2-beta/src/audacity.desktop 2006-10-29
01:05:29.000000000 +0200
-+++ audacity-src-1.3.2-beta-fixed/src/audacity.desktop 2006-12-18
22:50:52.000000000 +0100
-@@ -1,22 +1,22 @@
--[Desktop Entry]
--Encoding=UTF-8
--
--Name=Audacity Sound Editor
--Name[de]=Audacity Audio-Editor
--Name[ru]=Редактор звуковых файлов Audacity
--GenericName=Sound Editor
--GenericName[de]=Audio-Editor
--GenericName[ru]=Редактор звуковых файлов
--Comment=Record and edit audio files
-+[Desktop Entry]
-+Encoding=UTF-8
-+
-+Name=Audacity Sound Editor
-+Name[de]=Audacity Audio-Editor
-+Name[ru]=Редактор звуковых файлов Audacity
-+GenericName=Sound Editor
-+GenericName[de]=Audio-Editor
-+GenericName[ru]=Редактор звуковых файлов
-+Comment=Record and edit audio files
- Comment[de]=Audio-Dateien aufnehmen und bearbeiten
--Comment[ru]=Запись и редактирование звуковых файлов
-+Comment[ru]=Запись и редактирование звуковых файлов
-+
-+Icon=/usr/share/audacity/audacity.xpm
-+
-+Type=Application
-+Categories=Application;AudioVideo;Audio;Multimedia;
-
--Icon=/usr/share/audacity/audacity.xpm
--
--Type=Application
--Categories=Application;AudioVideo;Audio;Multimedia;
--
--Exec=audacity
--StartupNotify=false
--Terminal=false
--MimeType=application/ogg;audio/basic;audio/mpeg;audio/x-aiff;audio/x-mp3;audio/x-wav;application/x-audacity-project;
-+Exec=audacity
-+StartupNotify=false
-+Terminal=false
-+MimeType=application/ogg;audio/basic;audio/mpeg;audio/x-aiff;audio/x-mp3;audio/x-wav;application/x-audacity-project;
diff --git a/audio-plugins/vamp-plugin-sdk/BUILD
b/audio-plugins/vamp-plugin-sdk/BUILD
new file mode 100755
index 0000000..8f58e6d
--- /dev/null
+++ b/audio-plugins/vamp-plugin-sdk/BUILD
@@ -0,0 +1 @@
+make
diff --git a/audio-plugins/vamp-plugin-sdk/DETAILS
b/audio-plugins/vamp-plugin-sdk/DETAILS
new file mode 100755
index 0000000..d116a56
--- /dev/null
+++ b/audio-plugins/vamp-plugin-sdk/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=vamp-plugin-sdk
+ VERSION=1.1b
+ SOURCE=$SPELL-$VERSION.tar.gz
+
SOURCE_HASH=sha512:b1085f62755c94f262d4fb7c5aa50cf9046802acae5ad9411eaf472e134260121f1337e3f39fc204c900495bfc1ed674e83610e543c9035ac1714adf334b6187
+ SOURCE_URL[0]=$SOURCEFORGE_URL/vamp/${SOURCE}
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-v$VERSION
+ WEB_SITE=http://www.vamp-plugins.org/
+ ENTERED=20080218
+ LICENSE[0]=BSD
+ SHORT="Audio analysis plug-ins"
+cat << EOF
+Vamp is an audio processing plugin system for plugins that extract
descriptive
+information from audio data — typically referred to as audio analysis plugins
+or audio feature extraction plugins.
+EOF
diff --git a/audio-plugins/vamp-plugin-sdk/HISTORY
b/audio-plugins/vamp-plugin-sdk/HISTORY
new file mode 100644
index 0000000..3d31bb6
--- /dev/null
+++ b/audio-plugins/vamp-plugin-sdk/HISTORY
@@ -0,0 +1,2 @@
+2008-02-18 Arjan Bouter <abouter AT sourcemage.org>
+ * DETAILS, BUILD, HISTORY: created spell
diff --git a/e/e17/DEPENDS b/e/e17/DEPENDS
index beb6211..cf26a82 100755
--- a/e/e17/DEPENDS
+++ b/e/e17/DEPENDS
@@ -3,17 +3,8 @@ depends CVS &&
depends edje &&
depends evas &&
depends imlib2 &&
-depends X11-LIBS &&
depends efreet &&

-. $GRIMOIRE/FUNCTIONS &&
-if check_if_xorg_modular_libs; then
- depends libxcursor &&
- depends libxdamage &&
- depends libxinerama &&
- depends libxrandr
-fi &&
-
optional_depends dejavu-ttf \
'' \
'' \
diff --git a/e/e17/HISTORY b/e/e17/HISTORY
index e46e0fa..1375ec9 100644
--- a/e/e17/HISTORY
+++ b/e/e17/HISTORY
@@ -1,3 +1,6 @@
+2008-02-19 Arjan Bouter <abouter AT sourcemage.org>
+ * DEPENDS: moved libx* deps to ecore, where they are actually checked.
+
2007-09-30 Arwed v. Merkatz <v.merkatz AT gmx.net>
* DEPENDS: fixed check for xorg-modular

diff --git a/e/ecore/DEPENDS b/e/ecore/DEPENDS
index 4b0f0da..59d65fa 100755
--- a/e/ecore/DEPENDS
+++ b/e/ecore/DEPENDS
@@ -18,12 +18,24 @@ optional_depends X11-LIBS \
"--disable-ecore-x" \
"for X11 ecore_x module" &&

-optional_depends directfb \
- "--enable-ecore-fb --enable-ecore-evas-fb" \
- "--disable-ecore-fb --disable-ecore-evas-fb" \
- "for DirectFB ecore_fb module" &&
+. $GRIMOIRE/FUNCTIONS &&
+
+if check_if_xorg_modular_libs ; then
+ depends libxcursor &&
+ optional_depends libxdamage '' '' 'for DAMAGE support' &&
+ optional_depends libxrender '' \
+ '--disable-ecore-evas-xrender' \
+ 'for xrender support' &&
+ optional_depends libxrandr '' '' 'for xrandr support' &&
+ optional_depends libxinerama '' '' 'for xinerama support'
+fi

optional_depends xscreensaver \
"" \
"" \
"for XScreenSaver screen locking"
+
+optional_depends directfb \
+ "--enable-ecore-fb --enable-ecore-evas-fb" \
+ "--disable-ecore-fb --disable-ecore-evas-fb" \
+ "for DirectFB ecore_fb module"
diff --git a/e/ecore/HISTORY b/e/ecore/HISTORY
index 3226715..a1b6f31 100644
--- a/e/ecore/HISTORY
+++ b/e/ecore/HISTORY
@@ -1,3 +1,7 @@
+2008-02-19 Arjan Bouter <abouter AT sourcemage.org>
+ * DEPENDS: moved libx* deps from e17 to ecore
+ made libxdamage, libxrender, libxrandr and libxinerama optional
+
2007-09-17 Ladislav Hagara <hgr AT vabo.cz>
* CONFIGURE, BUILD: added possibility to build Ecore_Desktop module

diff --git a/windowmanagers/evilwm/CONFIGURE b/windowmanagers/evilwm/CONFIGURE
index 5368c2e..484da36 100755
--- a/windowmanagers/evilwm/CONFIGURE
+++ b/windowmanagers/evilwm/CONFIGURE
@@ -1,10 +1,11 @@
-config_query SOLIDW "Enable solid window drags (this can be slow on old
systems) ?" y &&
-config_query INFOBANNER "Enable a more informative and clear banner to be
displayed on Ctrl+Alt+I ?" y &&
-config_query BANMOVE "Show the same banner on moves and resizes (note this
can make things very SLOW!) ?" y &&
-config_query SNAPBORDER "Would you like snap-to-border support ?" y &&
-config_query TEXTMESSAGES "Compile in certain text messages like help ?" y &&
-config_query COLORMAP "Would you like to have colormap support (e.g., for 16
or more bit displays)" y &&
+config_query EVILWM_SOLIDW "Enable solid window drags (this can be slow on
old systems) ?" y &&
+config_query EVILWM_INFOBANNER "Enable a more informative and clear banner
to be displayed on Ctrl+Alt+I ?" y &&
+config_query EVILWM_BANMOVE "Show the same banner on moves and resizes (note
this can make things very SLOW!) ?" y &&
+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 EDITGENCONFIG "Would you like to edit the evilwm general
configuration?" n &&
-config_query EDITKEYCONFIG "Would you like to edit the evilwm keycodes?" n
+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 2b2b7df..72489b3 100755
--- a/windowmanagers/evilwm/DEPENDS
+++ b/windowmanagers/evilwm/DEPENDS
@@ -2,4 +2,15 @@ depends X11-LIBS &&
optional_depends "MOTIF" \
"USEMOTIF" \
"" \
- "Use Motif hints to find if a window should be borderless?"
+ "Use Motif hints to find if a window should be
borderless?" &&
+
+. $GRIMOIRE/FUNCTIONS
+
+if check_if_xorg_modular_libs ; then
+ if [[ "$EVILWM_SHAPE" = 'y' ]]; then
+ depends libxext
+ fi &&
+ if [[ "$EVILWM_RANDR" = 'y' ]]; then
+ depends libxrandr
+ fi
+fi
diff --git a/windowmanagers/evilwm/HISTORY b/windowmanagers/evilwm/HISTORY
index abd7fbf..4788002 100644
--- a/windowmanagers/evilwm/HISTORY
+++ b/windowmanagers/evilwm/HISTORY
@@ -1,3 +1,6 @@
+2008-02-19 Arjan Bouter <abouter AT sourcemage.org>
+ * CONFIGURE,PRE_BUILD,DEPENDS: made libxrandr optional
+
2007-11-11 Arjan Bouter <abouter AT sourcemage.org>
* DETAILS: version 1.0.0

diff --git a/windowmanagers/evilwm/PRE_BUILD b/windowmanagers/evilwm/PRE_BUILD
index d887cbf..7f540ff 100755
--- a/windowmanagers/evilwm/PRE_BUILD
+++ b/windowmanagers/evilwm/PRE_BUILD
@@ -4,39 +4,51 @@ cd ${SOURCE_DIRECTORY} &&
#
# The options in the Makefile
#
-if [[ "${SOLIDW}" != "y" ]]
-then sed -i 's/DEFINES\ +=\ -DSOLIDDRAG/\#DEFINES\ +=\ -DSOLIDDRAG/g'
Makefile
+if [[ "${EVILWM_SOLIDW}" != "y" ]]
+then sedit 's/DEFINES\ +=\ -DSOLIDDRAG/\#DEFINES\ +=\ -DSOLIDDRAG/g' Makefile
fi &&
-if [[ "${INFOBANNER}" != "y" ]]
-then sed -i 's/DEFINES\ +=\ -DINFOBANNER/\#DEFINES\ +=\ -DINFOBANNER/g'
Makefile
+if [[ "${EVILWM_INFOBANNER}" != "y" ]]
+then sedit 's/DEFINES\ +=\ -DINFOBANNER/\#DEFINES\ +=\ -DINFOBANNER/g'
Makefile
fi &&
-if [[ "${BANMOVE}" == "y" ]]
-then sed -i 's/\#DEFINES\ +=\ -DINFOBANNER\_MOVERESIZE/DEFINES\ +=\
-DINFOBANNER_MOVERESIZE/g' Makefile
+if [[ "${EVILWM_BANMOVE}" == "y" ]]
+then sedit 's/\#DEFINES\ +=\ -DINFOBANNER\_MOVERESIZE/DEFINES\ +=\
-DINFOBANNER_MOVERESIZE/g' Makefile
fi &&
-if [[ "${SNAPBORDER}" != "y" ]]
-then sed -i 's/DEFINES\ +=\ -DSNAP/\#DEFINES\ +=\ -DSNAP/g' Makefile
+if [[ "${EVILWM_SNAPBORDER}" != "y" ]]
+then sedit 's/DEFINES\ +=\ -DSNAP/\#DEFINES\ +=\ -DSNAP/g' Makefile
fi &&
-if [[ "${TEXTMESSAGES}" != "y" ]]
-then sed -i 's/DEFINES\ +=\ -DSTDIO/\#DEFINES\ +=\ -DSTDIO/g' Makefile
+if [[ "${EVILWM_TEXTMESSAGES}" != "y" ]]
+then sedit 's/DEFINES\ +=\ -DSTDIO/\#DEFINES\ +=\ -DSTDIO/g' Makefile
fi &&
-if [[ "${COLORMAP}" != "y" ]]
-then sed -i 's/DEFINES\ +=\ -DCOLOURMAP/\#DEFINES\ +=\ -DCOLOURMAP/g'
Makefile
+if [[ "${EVILWM_COLORMAP}" != "y" ]]
+then sedit 's/DEFINES\ +=\ -DCOLOURMAP/\#DEFINES\ +=\ -DCOLOURMAP/g' Makefile
+fi &&
+
+
+if [[ "${EVILWM_SHAPE}" == "n" ]]; then
+ message "Disabling SHAPE"
+ sedit 's/DEFINES += -DSHAPE/#DEFINES += -DSHAPE/g' Makefile
+ sedit 's/LIBS += -lXext/#LIBS += -lXext/g' Makefile
+fi &&
+if [[ "${EVILWM_RANDR}" == "n" ]]; then
+ message "Disabling RANDR"
+ sedit 's/DEFINES += -DRANDR/#DEFINES += -DRANDR/g' Makefile
+ sedit 's/LIBS += -lXrandr/#LIBS += -lXrandr/g' Makefile
fi &&

if `echo ${OPTS} | grep -q USEMOTIF`
-then sed -i 's/DEFINES\ +=\ -DSTDIO/\#DEFINES\ +=\ -DSTDIO/g' Makefile
+then sedit 's/DEFINES\ +=\ -DSTDIO/\#DEFINES\ +=\ -DSTDIO/g' Makefile
fi &&

#
# The general options in evilwm.h
#
-if [[ "${EDITGENCONFIG}" == "y" ]]
+if [[ "${EVILWM_EDITGENCONFIG}" == "y" ]]
then ${EDITOR:-nano} ${SOURCE_DIRECTORY}/evilwm.h
fi &&

#
# The keymap options in keymap.h
#
-if [[ "${EDITKEYCONFIG}" == "y" ]]
+if [[ "${EVILWM_EDITKEYCONFIG}" == "y" ]]
then ${EDITOR:-nano} ${SOURCE_DIRECTORY}/keymap.h
fi



  • [SM-Commit] GIT changes to master grimoire by Arjan Bouter (33a1dd5d2d64a8f4b83af20250995bd8147c236f), Arjan Bouter, 02/19/2008

Archive powered by MHonArc 2.6.24.

Top of Page