Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (dd53cff712d295d2bd594a8e544de4ee3befdeb6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (dd53cff712d295d2bd594a8e544de4ee3befdeb6)
  • Date: Sat, 28 Apr 2007 17:59:40 -0500

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

ChangeLog | 3 +++
audio-players/mcdp/BUILD | 2 ++
audio-players/mcdp/DETAILS | 30 ++++++++++++++++++++++++++++++
audio-players/mcdp/HISTORY | 4 ++++
audio-players/mcdp/PRE_BUILD | 3 +++
audio-players/mcdp/mcdp-0.4a.patch | 30 ++++++++++++++++++++++++++++++
6 files changed, 72 insertions(+)

New commits:
commit dd53cff712d295d2bd594a8e544de4ee3befdeb6
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

audio-players/mcdp: new spell

diff --git a/ChangeLog b/ChangeLog
index 724245f..43fad4b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2007-04-28 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * audio-players/mcdp: new spell, a simplistic CD player
+
2007-04-27 Jeremy Blosser <jblosser-smgl AT firinn.org>
* science/aamath: new spell, ascii math expression renderer

diff --git a/audio-players/mcdp/BUILD b/audio-players/mcdp/BUILD
new file mode 100755
index 0000000..f8acf95
--- /dev/null
+++ b/audio-players/mcdp/BUILD
@@ -0,0 +1,2 @@
+cd "$SOURCE_DIRECTORY" &&
+make
diff --git a/audio-players/mcdp/DETAILS b/audio-players/mcdp/DETAILS
new file mode 100755
index 0000000..d476b82
--- /dev/null
+++ b/audio-players/mcdp/DETAILS
@@ -0,0 +1,30 @@
+ SPELL="mcdp"
+ VERSION="0.4a"
+ SOURCE=$SPELL-$VERSION.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_URL=http://www.mcmilk.de/projects/mcdp/dl/$SOURCE
+ WEB_SITE=http://www.mcmilk.de/projects/mcdp
+ ENTERED=20070428
+
SOURCE_HASH=sha512:7747d9743213923deaca04bcd3748014512622a757e4501c661e128e231fe418ece429aca23fdee390ffe1cbd1384039c9fccf2a7c1d93b1cf735d600787f3ac
+ LICENSE[0]=GPL
+ SHORT="mcdp is a small (maybe the smallest) cd-player for linux"
+cat << EOF
+
+From original README:
+
+- mcdp is a small (maybe the smallest) cd-player for linux
+- it compiles/runs out off the box
+- it can be compiled against dietlibc (~16kb static!)
+- working play methods: repeat cd, repeat track and intro
+- since version 0.3a, minimal cddb title download is also included
+
+I must add that it's a ncurses based cd-player which works
+pretty nice under console (linux virtual console), not requiring
+graphical environment (like X) at all.
+
+The low side, is that I haven't figured out yet how to make
+CDDB_SERVER support work. I haven't gotten an answer from
+upstream, however that doesn't demerit the cd-player. Pretty
+small, low resource demanding, and pretty easy to use, :).
+
+EOF
diff --git a/audio-players/mcdp/HISTORY b/audio-players/mcdp/HISTORY
new file mode 100644
index 0000000..549d79c
--- /dev/null
+++ b/audio-players/mcdp/HISTORY
@@ -0,0 +1,4 @@
+2007-04-29 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * BUILD, DETAILS, HISTORY, mcdp-0.4a.patch, PRE_BUILD:
+ created this spell (thanks for the initial spell to Javier
+ Vasquez, I just cleaned it up a bit)
diff --git a/audio-players/mcdp/PRE_BUILD b/audio-players/mcdp/PRE_BUILD
new file mode 100755
index 0000000..8ebe975
--- /dev/null
+++ b/audio-players/mcdp/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+patch -p1 < "$SCRIPT_DIRECTORY/mcdp-0.4a.patch"
diff --git a/audio-players/mcdp/mcdp-0.4a.patch
b/audio-players/mcdp/mcdp-0.4a.patch
new file mode 100644
index 0000000..3bdec4d
--- /dev/null
+++ b/audio-players/mcdp/mcdp-0.4a.patch
@@ -0,0 +1,30 @@
+diff -Naur mcdp-0.4a/Makefile mcdp-0.4a-fixed/Makefile
+--- mcdp-0.4a/Makefile 2007-04-26 22:38:40.000000000 -0600
++++ mcdp-0.4a-fixed/Makefile 2007-04-26 22:39:46.000000000 -0600
+@@ -6,7 +6,8 @@
+ MANDIR = /usr/share/man
+ BINDIR = /usr/bin
+
+-ARCH = $(shell uname -m | sed -e 's/i[4-9]86/i386/' -e
's/armv[3-6][lb]/arm/')
++#ARCH = $(shell uname -m | sed -e 's/i[4-9]86/i386/' -e
's/armv[3-6][lb]/arm/')
++ARCH = $(shell uname -m | sed -e 's/armv[3-6][lb]/arm/')
+ DIET = $(shell basename `which diet 2>/dev/null` 2>/dev/null)
+
+ # compiler
+@@ -16,6 +17,7 @@
+
+ # extraflags
+ #CFLAGS += -mpreferred-stack-boundary=2 -march=$(ARCH) -mcpu=$(ARCH)
++CFLAGS += -mpreferred-stack-boundary=2 -march=$(ARCH)
+ #CFLAGS += -W -Wchar-subscripts -Wmissing-prototypes -Wmissing-declarations
-Wswitch -Wredundant-decls -Wunused
+ #CFLAGS += -Werror
+ #CFLAGS += -funroll-loops
+@@ -45,7 +47,7 @@
+ @echo "You may take a look at \"doc/profile.sh\" ... "
+
+ uninstall:
+- rm -f mcdp $(BINDIR)
++ rm -f $(BINDIR)/mcdp
+ rm -f $(MANDIR)/man1/mcdp.1.gz
+
+ .c.o:



  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (dd53cff712d295d2bd594a8e544de4ee3befdeb6), Florian Franzmann, 04/28/2007

Archive powered by MHonArc 2.6.24.

Top of Page