Skip to Content.
Sympa Menu

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

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master games grimoire by Eric Sandall (76632d4608321a8c90bb425b25efd1577b2f2b28)
  • Date: Mon, 2 Mar 2009 01:12:11 -0600

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





Archive powered by MHonArc 2.6.24.

Top of Page