[SM-Commit] GIT changes to master games grimoire by Eric Sandall (76632d4608321a8c90bb425b25efd1577b2f2b28)

Eric Sandall scm at sourcemage.org
Mon Mar 2 02:12:11 EST 2009


GIT changes to master games grimoire by Eric Sandall <sandalle at sourcemage.org>:

 ChangeLog                   |    3 +++
 FUNCTIONS                   |   11 +++++++++++
 games-rpg-mp/kmuddy/DEPENDS |   21 ++++++++++++---------
 games-rpg-mp/kmuddy/HISTORY |    6 ++++++
 4 files changed, 32 insertions(+), 9 deletions(-)

New commits:
commit 76632d4608321a8c90bb425b25efd1577b2f2b28
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    FUNCTIONS: Copy qt4_cmake_build from grimoire.git/FUNCTIONS

commit 2f54e537228e5619f3b05c278bfca9d9b6a622d5
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    kmuddy: Cleanup spacing

commit 5d4973f5b526d06dd63ebca14cb196b585d9f10d
Author: Eric Sandall <sandalle at sourcemage.org>
Commit: Eric Sandall <sandalle at sourcemage.org>

    kmuddy: Use code from KDE_BUILD to find the new KDE3 header location
    If 'none' was chosen for sound, disable *all* sound (--disable-sound
    is not enough)
    Need to pass "--disable-sound" to *something*
    
    Still doesn't build, but at least it now *starts* to build if I choose
    'none' for sound. :) Stable 0.8 release has the same issue.

diff --git a/ChangeLog b/ChangeLog
index c37e6e6..2e17064 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2009-03-01 Eric Sandall <sandalle at sourcemage.org>
+	* FUNCTIONS: Copy qt4_cmake_build from grimoire.git/FUNCTIONS
+
 2009-01-08 Julien "_kaze_" ROZO <julien at rozo.org>	
 	* games-emulators/mupen64plus: new spell, nintendo 64 emulator
 
diff --git a/FUNCTIONS b/FUNCTIONS
index b437845..80dc88c 100755
--- a/FUNCTIONS
+++ b/FUNCTIONS
@@ -88,6 +88,17 @@ function cmake_build() {
 }
 
 #---
+## @Synopsis qt4_cmake_build function to build
+## @Synopsis source code with QT4 and cmake
+#---
+#
+qt4_cmake_build() {
+  QTDIR="${QTDIR:-$INSTALL_ROOT/usr}"
+  PATH="$QTDIR/bin/qt4:$PATH"
+  cmake_build
+}
+
+#---
 ## @Synopsis profile_install function to make installing
 ## @Synopsis of /etc/profile.d/$spell.sh easier...
 #---
diff --git a/games-rpg-mp/kmuddy/DEPENDS b/games-rpg-mp/kmuddy/DEPENDS
index ef65c84..ff89649 100755
--- a/games-rpg-mp/kmuddy/DEPENDS
+++ b/games-rpg-mp/kmuddy/DEPENDS
@@ -1,11 +1,14 @@
-depends  kdelibs	&&
-if [[ "${SOUND}" == "none" ]]
+depends  kdelibs  &&
+
+if [[ "${SOUND}" == "sdl" ]]
 then
-"--disable-sound"
-elif [[ "${SOUND}" == "sdl" ]]
+  depends sdl "--enable-sound --with-sdl --without-arts"
+elif [[ "${SOUND}" == "arts" ]]
 then
-depends sdl "--enable-sound --with-sdl --without-arts"
-else
-depends ${SOUND} "--enable-sound --with-arts --without-sdl"
-fi                      &&
-optional_depends libmxp "--with-libmxp" "--without-libmxp" "Improves mud playing experience"
+  depends ${SOUND} "--enable-sound --with-arts --without-sdl"
+fi  &&
+
+optional_depends  libmxp                             \
+                  "--with-libmxp"                    \
+                  "--without-libmxp"                 \
+                  "Improves mud playing experience"
diff --git a/games-rpg-mp/kmuddy/HISTORY b/games-rpg-mp/kmuddy/HISTORY
index 8b38588..94e93fa 100644
--- a/games-rpg-mp/kmuddy/HISTORY
+++ b/games-rpg-mp/kmuddy/HISTORY
@@ -1,3 +1,9 @@
+2009-02-28 Eric Sandall <sandalle at sourcemage.org>
+	* BUILD: Use code from KDE_BUILD to find the new KDE3 header location
+	  If 'none' was chosen for sound, disable *all* sound (--disable-sound
+	  is not enough)
+	* DEPENDS: Need to pass "--disable-sound" to *something*, moved to BUILD
+
 2009-02-18 Eric Sandall <sandalle at sourcemage.org>
 	* DETAILS: Sites changed to kmuddy.com
 



More information about the SM-Commit mailing list