Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Alexander Tsamutali (5e38e91278919deb119b2c6224f0751e81cbe5e0)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Alexander Tsamutali <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Alexander Tsamutali (5e38e91278919deb119b2c6224f0751e81cbe5e0)
  • Date: Sat, 2 Dec 2006 06:09:41 -0600

GIT changes to master grimoire by Alexander Tsamutali <astsmtl AT gmail.com>:

audio-players/quodlibet/BUILD | 5 ++++-
audio-players/quodlibet/CONFIGURE | 2 ++
audio-players/quodlibet/HISTORY | 4 ++++
audio-players/quodlibet/PRE_BUILD | 3 +++
audio-players/quodlibet/make_install.patch | 11 +++++++++++
5 files changed, 24 insertions(+), 1 deletion(-)

New commits:
commit 5e38e91278919deb119b2c6224f0751e81cbe5e0
Author: Alexander Tsamutali <astsmtl AT gmail.com>
Commit: Alexander Tsamutali <astsmtl AT gmail.com>

quodlibet: added patch to fix 'make install', added option to build
extensions

diff --git a/audio-players/quodlibet/BUILD b/audio-players/quodlibet/BUILD
index 8f58e6d..6d4ffad 100755
--- a/audio-players/quodlibet/BUILD
+++ b/audio-players/quodlibet/BUILD
@@ -1 +1,4 @@
-make
+make &&
+if [ "$EXTENSIONS" == "y" ] ; then
+ make extensions
+fi
diff --git a/audio-players/quodlibet/CONFIGURE
b/audio-players/quodlibet/CONFIGURE
new file mode 100755
index 0000000..2848696
--- /dev/null
+++ b/audio-players/quodlibet/CONFIGURE
@@ -0,0 +1,2 @@
+config_query EXTENSIONS "Build extensions (trayicon, mmkeys)?" y &&
+persistent_add EXTENSIONS
diff --git a/audio-players/quodlibet/HISTORY b/audio-players/quodlibet/HISTORY
index c45ac9c..29bbd36 100644
--- a/audio-players/quodlibet/HISTORY
+++ b/audio-players/quodlibet/HISTORY
@@ -1,3 +1,7 @@
+2006-12-02 Alexander Tsamutali <astsmtl AT gmail.com>
+ * PRE_BUILD: Added to patch 'Makefile'
+ * CONFIGURE, BUILD: Now we can optionally build extensions
+
2006-12-01 Bearcat M. Sandor <sourcemage AT feline-soul.com>
* DETAILS: Updated to 0.24

diff --git a/audio-players/quodlibet/PRE_BUILD
b/audio-players/quodlibet/PRE_BUILD
new file mode 100755
index 0000000..9e8ab9f
--- /dev/null
+++ b/audio-players/quodlibet/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+patch < $SCRIPT_DIRECTORY/make_install.patch
diff --git a/audio-players/quodlibet/make_install.patch
b/audio-players/quodlibet/make_install.patch
new file mode 100644
index 0000000..4f495be
--- /dev/null
+++ b/audio-players/quodlibet/make_install.patch
@@ -0,0 +1,11 @@
+--- Makefile.orig 2006-10-05 18:03:59.000000000 +0500
++++ Makefile 2006-12-02 16:27:41.000000000 +0500
+@@ -19,7 +19,7 @@
+
+ install: make-install-dirs install-dirs install-programs
+ install -m 644 $(MODULES) audio-*.png media-*.png device-*.png
$(DESTDIR)$(PREFIX)/$(TO)
+- for E in $(EXTENSIONS); do (test -e $$E && install -m 755 -D $$E
$(DESTDIR)$(PREFIX)/$(TODEP)/$$E); done
++ for E in $(EXTENSIONS); do if [ -e $$E ] ; then install -m 755 -D $$E
$(DESTDIR)$(PREFIX)/$(TODEP)/$$E ; fi ; done
+ cd po && make install-po DESTDIR=$(DESTDIR)
+
+ install-dirs: $(addprefix dir-install-, $(MODULE_DIRS))




Archive powered by MHonArc 2.6.24.

Top of Page