Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master games grimoire by Ismael Luceno (c53d8bd833ae2e02c8f3f7ad492a452c26f1d5a1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master games grimoire by Ismael Luceno (c53d8bd833ae2e02c8f3f7ad492a452c26f1d5a1)
  • Date: Sun, 4 Apr 2010 03:08:38 -0500

GIT changes to master games grimoire by Ismael Luceno <ismael AT sourcemage.org>:

games-utils/mumble/BUILD | 13 +++++++++++++
games-utils/mumble/CONFIGURE | 3 +++
games-utils/mumble/HISTORY | 1 +
3 files changed, 17 insertions(+)

New commits:
commit c53d8bd833ae2e02c8f3f7ad492a452c26f1d5a1
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

mumble: make server, cliend and overlay optionals

diff --git a/games-utils/mumble/BUILD b/games-utils/mumble/BUILD
index b56de58..851fdc8 100755
--- a/games-utils/mumble/BUILD
+++ b/games-utils/mumble/BUILD
@@ -1,4 +1,17 @@
OPTS="$OPTS CONFIG+=no-update CONFIG+=no-embed-qt-transaltions
CONFIG+=no-g15 CONFIG+=no-bundled-speex"
+
+if [[ "$MUMBLE_SERVER" == 'n' ]]; then
+ OPTS="$OPTS CONFIG+=no-server"
+fi
+
+if [[ "$MUMBLE_CLIENT" == 'n' ]]; then
+ OPTS="$OPTS CONFIG+=no-client"
+fi
+
+if [[ "$MUMBLE_OVERLAY" == 'n' ]]; then
+ OPTS="$OPTS CONFIG+=no-overlay"
+fi
+
PATH=/usr/bin/qt4:$PATH &&
qmake main.pro $OPTS &&
make
diff --git a/games-utils/mumble/CONFIGURE b/games-utils/mumble/CONFIGURE
new file mode 100755
index 0000000..fea1426
--- /dev/null
+++ b/games-utils/mumble/CONFIGURE
@@ -0,0 +1,3 @@
+config_query MUMBLE_SERVER "Build server (murmur)?" y &&
+config_query MUMBLE_CLIENT "Build client (mumble)?" y &&
+config_query MUMBLE_OVERLAY "Build OpenGL overlay support?" y
diff --git a/games-utils/mumble/HISTORY b/games-utils/mumble/HISTORY
index c95c832..bd0a962 100644
--- a/games-utils/mumble/HISTORY
+++ b/games-utils/mumble/HISTORY
@@ -2,6 +2,7 @@
* BUILD: disable G15 keyboard support
* BUILD: convert dependencies on avahi and speech-dispatcher to
optional
* DEPENDS, BUILD: move OPTS to BUILD
+ * CONFIGURE, BUILD: make server, client and overlay optionals

2010-04-03 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 1.2.2



  • [SM-Commit] GIT changes to master games grimoire by Ismael Luceno (c53d8bd833ae2e02c8f3f7ad492a452c26f1d5a1), Ismael Luceno, 04/04/2010

Archive powered by MHonArc 2.6.24.

Top of Page