-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL python; then
depends gnome-python-desktop &&
diff --git a/gnome2-apps/gedit/HISTORY b/gnome2-apps/gedit/HISTORY
index fa16a66..e23cf5c 100644
--- a/gnome2-apps/gedit/HISTORY
+++ b/gnome2-apps/gedit/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: removed is_depends_enabled.function reference
+
2007-11-29 Robin Cook <rcook AT wyrms.net>
* DETAILS: updated VERSION to 2.20.4
diff --git a/graphics-libs/cegui/HISTORY b/graphics-libs/cegui/HISTORY
index f6535a8..8237b82 100644
--- a/graphics-libs/cegui/HISTORY
+++ b/graphics-libs/cegui/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_SUB_DEPENDS: removed is_depends_enabled.function reference
+
2008-01-06 Eric Sandall <sandalle AT sourcemage.org>
* SUB_DEPENDS, PRE_SUB_DEPENDS: Allow forcing of lua (for ember)
* SUB_DEPENDS, DEPENDS: Enable tolua++cegui module as well
diff --git a/graphics-libs/cegui/PRE_SUB_DEPENDS
b/graphics-libs/cegui/PRE_SUB_DEPENDS
index 142ba4b..1744053 100755
--- a/graphics-libs/cegui/PRE_SUB_DEPENDS
+++ b/graphics-libs/cegui/PRE_SUB_DEPENDS
@@ -1,4 +1,3 @@
-. $GRIMOIRE/is_depends_enabled.function &&
case "$THIS_SUB_DEPENDS" in
LUA) is_depends_enabled $SPELL lua && return 0 ;;
diff --git a/graphics-libs/ogre/HISTORY b/graphics-libs/ogre/HISTORY
index d10c5fc..03fb4ed 100644
--- a/graphics-libs/ogre/HISTORY
+++ b/graphics-libs/ogre/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_SUB_DEPENDS: removed is_depends_enabled.function reference
+
2008-01-06 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 1.4.6
* PRE_SUB_DEPENDS, SUB_DEPENDS: Allow forcing dependency on cegui
diff --git a/graphics-libs/ogre/PRE_SUB_DEPENDS
b/graphics-libs/ogre/PRE_SUB_DEPENDS
index a5618aa..36950b3 100755
--- a/graphics-libs/ogre/PRE_SUB_DEPENDS
+++ b/graphics-libs/ogre/PRE_SUB_DEPENDS
@@ -1,4 +1,3 @@
-. $GRIMOIRE/is_depends_enabled.function &&
case "$THIS_SUB_DEPENDS" in
CEGUI) is_depends_enabled $SPELL cegui && return 0 ;;
diff --git a/graphics/nip2/BUILD b/graphics/nip2/BUILD
index 7bdd2e8..3d7c40a 100755
--- a/graphics/nip2/BUILD
+++ b/graphics/nip2/BUILD
@@ -1,7 +1,3 @@
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled vips imagemagick; then
if is_depends_enabled imagemagick graphviz; then
diff --git a/graphics/nip2/HISTORY b/graphics/nip2/HISTORY
index 86a2bb1..6cf19ef 100644
--- a/graphics/nip2/HISTORY
+++ b/graphics/nip2/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * BUILD: removed is_depends_enabled.function reference
+
2006-10-20 Juuso Alasuutari <iuso AT sourcemage.org>
* BUILD: Source is_depends_enabled.function (remove it when
is_depends_enabled is in stable sorcery).
diff --git a/is_depends_enabled.function b/is_depends_enabled.function
deleted file mode 100644
index 6b54209..0000000
--- a/is_depends_enabled.function
+++ /dev/null
@@ -1,17 +0,0 @@
-#
-## This is here temporarily until is_depends_enabled is integrated to
-## stable sorcery. Before that this needs to be sourced by spells which
-## use is_depends_enabled.
-#
-if ! declare -f is_depends_enabled &>/dev/null; then
- function is_depends_enabled() {
- local dep_status
- if [[ $3 ]] ; then
- dep_status=$DEPENDS_STATUS
- else
- dep_status=$(hash_get uncommitted_hash $1)
- [[ $dep_status ]] || dep_status=$DEPENDS_STATUS
- fi
- grep -q "^[[:space:]]*$1:$2:on" $dep_status
- }
-fi
diff --git a/kde-apps/KDE_DEPENDS b/kde-apps/KDE_DEPENDS
index 6d22470..e058940 100755
--- a/kde-apps/KDE_DEPENDS
+++ b/kde-apps/KDE_DEPENDS
@@ -6,10 +6,6 @@ optional_depends arts \
"--without-arts" \
"for aRts sound daemon" &&
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL arts; then
sub_depends kdelibs ARTS
diff --git a/kde-apps/kid3/DEPENDS b/kde-apps/kid3/DEPENDS
index 4454d8c..f3e25a9 100755
--- a/kde-apps/kid3/DEPENDS
+++ b/kde-apps/kid3/DEPENDS
@@ -37,7 +37,6 @@ optional_depends libvorbis \
--without-musicbrainz" \
"to use Ogg Vorbis" &&
-. "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL libvorbis
then
depends libogg &&
diff --git a/kde-apps/kid3/HISTORY b/kde-apps/kid3/HISTORY
index b399b5e..58404c5 100644
--- a/kde-apps/kid3/HISTORY
+++ b/kde-apps/kid3/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: removed is_depends_enabled.function reference
+
2007-09-08 Remko van der Vossen <wich AT stack.nl>
* PRE_BUILD, BUILD, INSTALL: kid3 uses a new way to support a qt-only
build
diff --git a/kde-core/KDE_DEPENDS b/kde-core/KDE_DEPENDS
index 502a2e2..915f7b1 100755
--- a/kde-core/KDE_DEPENDS
+++ b/kde-core/KDE_DEPENDS
@@ -5,10 +5,6 @@ optional_depends arts \
"--without-arts" \
"for aRts sound daemon" &&
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL arts; then
sub_depends kdelibs ARTS
diff --git a/kde-core/kdebase/DEPENDS b/kde-core/kdebase/DEPENDS
index de65287..977a654 100755
--- a/kde-core/kdebase/DEPENDS
+++ b/kde-core/kdebase/DEPENDS
@@ -7,7 +7,6 @@ fi &&
# [ "$KDEBASE_KRB4" = "y" ] ||
# [ "$KDEBASE_KRB5" = "y" ]; then
# message "${MESSAGE_COLOR}AFS and KRB4 require krb5 to be compiled with
krb4 support${DEFAULT_COLOR}"
-#
# depends krb5
#fi &&
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL hal; then
depends dbus-qt3-old
diff --git a/kde-core/kdebase/HISTORY b/kde-core/kdebase/HISTORY
index 3df89e3..66380a8 100644
--- a/kde-core/kdebase/HISTORY
+++ b/kde-core/kdebase/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: removed is_depends_enabled.function reference
+
2007-11-16 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* DEPENDS: added force_depends on kdelibs #14082
diff --git a/kde-core/kdepim/DEPENDS b/kde-core/kdepim/DEPENDS
index 45692cb..6e203d0 100755
--- a/kde-core/kdepim/DEPENDS
+++ b/kde-core/kdepim/DEPENDS
@@ -16,7 +16,6 @@ optional_depends cyrus-sasl
'for SASL authentication support (which may be needed for
working with e-mail with SMTP and IMAP -- RECOMMENDED)' &&
# bug #13483
-. "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL cyrus-sasl
then
sub_depends kdebase SASL
diff --git a/kde-core/kdepim/HISTORY b/kde-core/kdepim/HISTORY
index 4babe83..e16d7fd 100644
--- a/kde-core/kdepim/HISTORY
+++ b/kde-core/kdepim/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: removed is_depends_enabled.function reference
+
2007-10-16 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 3.5.8
diff --git a/kde-look/KDE_DEPENDS b/kde-look/KDE_DEPENDS
index 6d22470..e058940 100755
--- a/kde-look/KDE_DEPENDS
+++ b/kde-look/KDE_DEPENDS
@@ -6,10 +6,6 @@ optional_depends arts \
"--without-arts" \
"for aRts sound daemon" &&
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL arts; then
sub_depends kdelibs ARTS
diff --git a/kernels/suspend/HISTORY b/kernels/suspend/HISTORY
index 2b51c2e..7b1a1bf 100644
--- a/kernels/suspend/HISTORY
+++ b/kernels/suspend/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_BUILD: removed is_depends_enabled.function reference
+
2007-03-03 Jeremy Blosser <jblosser-smgl AT firinn.org>
* CONFIGURE: Replace bad TRACK_ROOT usage (automated).
-#
# Fix document install directory
-#
if [ "$BUILD_DOCS" = y ]; then
sedit
"s:PAGESPERPAGE=2:PAGESPERPAGE=2\nDOCDIR=${INSTALL_ROOT}/usr/share/doc/${SPELL}:"
doc/Makefile
fi &&
if ! is_depends_enabled ${SPELL} db
then
diff --git a/net/net-tools/BUILD b/net/net-tools/BUILD
index ff93875..1f79ca2 100755
--- a/net/net-tools/BUILD
+++ b/net/net-tools/BUILD
@@ -1,4 +1,3 @@
-source $GRIMOIRE/is_depends_enabled.function &&
if is_depends_enabled $SPELL gettext
then
diff --git a/net/net-tools/HISTORY b/net/net-tools/HISTORY
index 69e9113..7cd06df 100644
--- a/net/net-tools/HISTORY
+++ b/net/net-tools/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * BUILD: removed is_depends_enabled.function reference
+
2008-01-23 Vlad Glagolev <stealth AT sourcemage.org>
* init.d/network: fixed a weird bug ([DEVICE] was useless, now it
works)
diff --git a/net/wpa_supplicant/HISTORY b/net/wpa_supplicant/HISTORY
index 010d4c5..9e7e217 100644
--- a/net/wpa_supplicant/HISTORY
+++ b/net/wpa_supplicant/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_BUILD: removed is_depends_enabled.function reference
+
2007-09-18 Eric Sandall <sandalle AT sourcemage.org>
* init.d/wpa_supplicant: Also except off/any ESSID as non-associated
diff --git a/net/wpa_supplicant/PRE_BUILD b/net/wpa_supplicant/PRE_BUILD
index be6004d..4a7be62 100755
--- a/net/wpa_supplicant/PRE_BUILD
+++ b/net/wpa_supplicant/PRE_BUILD
@@ -13,7 +13,6 @@ then
sed -i "s/wpa_cli dynamic_eap_methods/wpa_cli/" Makefile
fi &&
-. "$GRIMOIRE/is_depends_enabled.function" &&
if [[ -z $QTDIR ]] && is_depends_enabled $SPELL qt-x11
then
diff --git a/printer/cups-old/HISTORY b/printer/cups-old/HISTORY
index e1cc30a..5c3cb10 100644
--- a/printer/cups-old/HISTORY
+++ b/printer/cups-old/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * TRIGGERS: removed is_depends_enabled.function reference
+
2006-10-20 Juuso Alasuutari <iuso AT sourcemage.org>
* TRIGGERS: Rewritten to use is_depends_enabled, sources
is_depends_enabled.function (remove it when is_depends_enabled
diff --git a/printer/cups-old/TRIGGERS b/printer/cups-old/TRIGGERS
index 38fde73..9b329f7 100755
--- a/printer/cups-old/TRIGGERS
+++ b/printer/cups-old/TRIGGERS
@@ -1,7 +1,3 @@
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL linux-pam; then
on_cast linux-pam cast_self
diff --git a/printer/cups/HISTORY b/printer/cups/HISTORY
index 8c898ac..48dfd44 100644
--- a/printer/cups/HISTORY
+++ b/printer/cups/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * TRIGGERS: removed is_depends_enabled.function reference
+
2007-12-18 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.3.5
diff --git a/printer/cups/TRIGGERS b/printer/cups/TRIGGERS
index 38fde73..9b329f7 100755
--- a/printer/cups/TRIGGERS
+++ b/printer/cups/TRIGGERS
@@ -1,7 +1,3 @@
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL linux-pam; then
on_cast linux-pam cast_self
diff --git a/printer/ghostscript/HISTORY b/printer/ghostscript/HISTORY
index 3bf1f39..f4d6e36 100644
--- a/printer/ghostscript/HISTORY
+++ b/printer/ghostscript/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_SUB_DEPENDS: removed is_depends_enabled.function reference
+
2007-12-30 Treeve Jelbert <treeve AT sourcemage.org>
* CONFIGURE: clarify message
* DEPENDS: make gtk+2 optional
diff --git a/printer/ghostscript/PRE_SUB_DEPENDS
b/printer/ghostscript/PRE_SUB_DEPENDS
index 0ca5c6f..1b997b3 100755
--- a/printer/ghostscript/PRE_SUB_DEPENDS
+++ b/printer/ghostscript/PRE_SUB_DEPENDS
@@ -1,4 +1,3 @@
-#. $GRIMOIRE/is_depends_enabled.function
case $THIS_SUB_DEPENDS in
LIBS) [[ $GS_LIBGS == 'y' ]] ;;
*) message "${PROBLEM_COLOR}bogus sub_depends: $SPELL
$THIS_SUB_DEPENDS${DEFAULT_COLOR}" ;
diff --git a/python-pypi/luca/HISTORY b/python-pypi/luca/HISTORY
index c35ea91..ff2dd29 100644
--- a/python-pypi/luca/HISTORY
+++ b/python-pypi/luca/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_BUILD: removed is_depends_enabled.function reference
+
2008-01-13 Vlad Glagolev <stealth AT sourcemage.org>
* DEPENDS, DETAILS: cleaned up
diff --git a/python-pypi/luca/PRE_BUILD b/python-pypi/luca/PRE_BUILD
index 0a43e3d..6e872c4 100755
--- a/python-pypi/luca/PRE_BUILD
+++ b/python-pypi/luca/PRE_BUILD
@@ -1,6 +1,5 @@
default_pre_build &&
cd $SOURCE_DIRECTORY &&
-#source $GRIMOIRE/is_depends_enabled.function &&
if is_depends_enabled sqlobject kinterbasdb; then
patch -p1 < $SPELL_DIRECTORY/luca.diff &&
message fix use of reserved words for firebird &&
diff --git a/spelling/stardict/HISTORY b/spelling/stardict/HISTORY
index 6532b1b..d7a4577 100644
--- a/spelling/stardict/HISTORY
+++ b/spelling/stardict/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_BUILD: removed is_depends_enabled.function reference
+
2007-11-11 Pol Vinogradov <vin.public AT gmail.com>
* DETAILS: version 3.0.1
* DEPENDS: added libsigc++3 optionally
diff --git a/spelling/stardict/PRE_BUILD b/spelling/stardict/PRE_BUILD
index 19f798f..531c55f 100755
--- a/spelling/stardict/PRE_BUILD
+++ b/spelling/stardict/PRE_BUILD
@@ -2,7 +2,6 @@ default_pre_build &&
cd ${SOURCE_DIRECTORY} &&
patch -p0 < ${SCRIPT_DIRECTORY}/configure.patch &&
-source ${GRIMOIRE}/is_depends_enabled.function &&
if is_depends_enabled ${SPELL} espeak
then
sedit "s:espeak_Initialize(AUDIO_OUTPUT_PLAYBACK, 0,
NULL);:espeak_Initialize(AUDIO_OUTPUT_PLAYBACK, 0, NULL, 0);:" \
diff --git a/utils/console-tools/HISTORY b/utils/console-tools/HISTORY
old mode 100755
new mode 100644
index 538934a..85fbe5e
--- a/utils/console-tools/HISTORY
+++ b/utils/console-tools/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_BUILD: removed is_depends_enabled.function reference
+
2007-01-06 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* keymap.conf: add example for TTY_NUMS
* keymap.sh: added -v to consolechars calls #9250
diff --git a/utils/console-tools/PRE_BUILD b/utils/console-tools/PRE_BUILD
index f8474f0..979f265 100755
--- a/utils/console-tools/PRE_BUILD
+++ b/utils/console-tools/PRE_BUILD
@@ -1,4 +1,3 @@
-source $GRIMOIRE/is_depends_enabled.function &&
default_pre_build &&
cd $SOURCE_DIRECTORY &&
patch -p0 < $SCRIPT_DIRECTORY/double-fclose-fix.patch &&
diff --git a/utils/coreutils/DEPENDS b/utils/coreutils/DEPENDS
index e67ce2a..eeaddfc 100755
--- a/utils/coreutils/DEPENDS
+++ b/utils/coreutils/DEPENDS
@@ -9,7 +9,6 @@ optional_depends linux-pam \
"for pam enabled su command" &&
# we need to recreate configure after PAM patch with autoreconf
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL linux-pam; then
depends autoconf
fi
diff --git a/utils/coreutils/HISTORY b/utils/coreutils/HISTORY
index 4459356..da17cf0 100644
--- a/utils/coreutils/HISTORY
+++ b/utils/coreutils/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: removed is_depends_enabled.function reference
+
2008-01-23 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 6.10, su and hostname are no longer nstalled by default
* PRE_BUILD, *patch: removed
diff --git a/utils/gnuplot/DEPENDS b/utils/gnuplot/DEPENDS
index cc4f4bc..d5b8e10 100755
--- a/utils/gnuplot/DEPENDS
+++ b/utils/gnuplot/DEPENDS
@@ -30,7 +30,6 @@ else
depends pgf
fi &&
-. $GRIMOIRE/is_depends_enabled.function &&
if is_depends_enabled $SPELL wxgtk; then
depends cairo &&
depends pango
diff --git a/utils/gnuplot/HISTORY b/utils/gnuplot/HISTORY
index b9c89fe..6ef071d 100644
--- a/utils/gnuplot/HISTORY
+++ b/utils/gnuplot/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: removed is_depends_enabled.function reference
+
2007-08-23 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* INSTALL: copy missing lua script, add copying to optional part
diff --git a/utils/lshw/BUILD b/utils/lshw/BUILD
index 98a4424..38f2255 100755
--- a/utils/lshw/BUILD
+++ b/utils/lshw/BUILD
@@ -2,10 +2,6 @@
sed -i "s/-s$//" src/Makefile &&
make &&
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL gtk+2; then
make gui
diff --git a/utils/lshw/HISTORY b/utils/lshw/HISTORY
index 56f4ea8..ccae36c 100644
--- a/utils/lshw/HISTORY
+++ b/utils/lshw/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * BUILD: removed is_depends_enabled.function reference
+
2007-10-14 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: B.02.12.01
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL gtk+; then
make gxvattr
diff --git a/video/xvattr/HISTORY b/video/xvattr/HISTORY
index d3c21e4..0c91fee 100644
--- a/video/xvattr/HISTORY
+++ b/video/xvattr/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * BUILD: removed is_depends_enabled.function reference
+
2006-10-20 Juuso Alasuutari <iuso AT sourcemage.org>
* BUILD: Rewritten to use is_depends_enabled, sources
is_depends_enabled.function (remove it when is_depends_enabled
diff --git a/wm-addons/dzen2/HISTORY b/wm-addons/dzen2/HISTORY
index 9b3b3c0..e0a6795 100644
--- a/wm-addons/dzen2/HISTORY
+++ b/wm-addons/dzen2/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * PRE_BUILD: removed is_depends_enabled.function reference
+
2007-08-18 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: updated spell to 0.8.5
added svn version support
diff --git a/wm-addons/dzen2/PRE_BUILD b/wm-addons/dzen2/PRE_BUILD
index 0701944..34b0096 100755
--- a/wm-addons/dzen2/PRE_BUILD
+++ b/wm-addons/dzen2/PRE_BUILD
@@ -1,4 +1,3 @@
-. $GRIMOIRE/is_depends_enabled.function
. $GRIMOIRE/FUNCTIONS
default_pre_build &&
cd $SOURCE_DIRECTORY &&
diff --git a/x11-libs/libafterimage/DEPENDS b/x11-libs/libafterimage/DEPENDS
index c9e74eb..943fe5a 100755
--- a/x11-libs/libafterimage/DEPENDS
+++ b/x11-libs/libafterimage/DEPENDS
@@ -29,10 +29,6 @@ if [ "${LIBAFTERSTEP_GIF}" == "y" ] ; then
"--with-builtin-ungif" \
"Use external gif library?" &&
- #
- ## Remove this after is_depends_enabled is integrated to stable sorcery.
- #
- source "$GRIMOIRE/is_depends_enabled.function" &&
# test for which LIBGIF is picked go here.
if is_depends_enabled ${SPELL} giflib
diff --git a/x11-libs/libafterimage/HISTORY b/x11-libs/libafterimage/HISTORY
index 8869959..9e36b7b 100644
--- a/x11-libs/libafterimage/HISTORY
+++ b/x11-libs/libafterimage/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: removed is_depends_enabled.function reference
+
2008-01-19 Arjan Bouter <abouter AT sourcemage.org>
* WIP: removed after moving history entry to HISTORY
all mentioned stuff in the WIP file were implemented.
diff --git a/x11-libs/wine/BUILD b/x11-libs/wine/BUILD
index 047399f..c84faa8 100755
--- a/x11-libs/wine/BUILD
+++ b/x11-libs/wine/BUILD
@@ -12,10 +12,6 @@ OPTS="--disable-debug \
touch programs/winetest/tests.rc &&
default_build &&
-#
-## Remove this after is_depends_enabled is integrated to stable sorcery.
-#
-source "$GRIMOIRE/is_depends_enabled.function" &&
if is_depends_enabled $SPELL docbook-utils; then
make -C documentation
diff --git a/x11-libs/wine/HISTORY b/x11-libs/wine/HISTORY
index 0a775f2..ee856e9 100644
--- a/x11-libs/wine/HISTORY
+++ b/x11-libs/wine/HISTORY
@@ -1,3 +1,6 @@
+2008-01-28 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * BUILD: removed is_depends_enabled.function reference
+
2008-01-25 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 0.9.54
[SM-Commit] GIT changes to master grimoire by Jaka Kranjc (f96b2803ee7767cd8bb83312f286b3f17b24f27d),
Jaka Kranjc, 01/28/2008