summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2006-02-10 13:55:05 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2006-02-10 13:55:05 +0000
commit8be47392eef9afb433314f8618b6ed4ba2cbaade (patch)
tree9c177fa1062b4266ebd5fd0e45b83cd21a4ee8f9 /audio
parentUpdate to 1.36. (diff)
- Update to 0.0.8 [1]
- Add additional master site [1] Changes in this release: The sound routine now uses a bandwidth limited synthesizer, which results in truer emulation. Channel 2 was updated to interpolation and dc offset. The NAS output now honors a requested endianness. Several enhancements were made to the player code, including for 64-bit architectures.
Notes
Notes: svn path=/head/; revision=155646
Diffstat (limited to 'audio')
-rw-r--r--audio/gbsplay/Makefile5
-rw-r--r--audio/gbsplay/distinfo6
-rw-r--r--audio/gbsplay/files/patch-Makefile20
3 files changed, 26 insertions, 5 deletions
diff --git a/audio/gbsplay/Makefile b/audio/gbsplay/Makefile
index 317b3ae3a180..f012072a6fe4 100644
--- a/audio/gbsplay/Makefile
+++ b/audio/gbsplay/Makefile
@@ -6,9 +6,10 @@
#
PORTNAME= gbsplay
-PORTVERSION= 0.0.7
+PORTVERSION= 0.0.8
CATEGORIES= audio
-MASTER_SITES= http://download.berlios.de/gbsplay/ \
+MASTER_SITES= http://www.cgarbs.de/stuff/ \
+ http://download.berlios.de/gbsplay/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= ehaupt
PKGNAMEPREFIX?=
diff --git a/audio/gbsplay/distinfo b/audio/gbsplay/distinfo
index 019cd3bcf6ca..cf851bba1d10 100644
--- a/audio/gbsplay/distinfo
+++ b/audio/gbsplay/distinfo
@@ -1,3 +1,3 @@
-MD5 (gbsplay-0.0.7.tar.gz) = bdd9143422c52d00a8aeeda171621cec
-SHA256 (gbsplay-0.0.7.tar.gz) = 2623842e6791609b01638d0c3aebd0737d4fd3e98f44cc8dc2999cdef36289a7
-SIZE (gbsplay-0.0.7.tar.gz) = 50466
+MD5 (gbsplay-0.0.8.tar.gz) = b7371a31959aa5a83843b7f9e3477a0c
+SHA256 (gbsplay-0.0.8.tar.gz) = 9bd95118741315e991dfe4f5108128817725c924ba81bb4938de45290e8f0926
+SIZE (gbsplay-0.0.8.tar.gz) = 57033
diff --git a/audio/gbsplay/files/patch-Makefile b/audio/gbsplay/files/patch-Makefile
new file mode 100644
index 000000000000..77fb4019f7cd
--- /dev/null
+++ b/audio/gbsplay/files/patch-Makefile
@@ -0,0 +1,20 @@
+--- Makefile.orig Thu Feb 9 14:30:53 2006
++++ Makefile Thu Feb 9 14:31:22 2006
+@@ -229,7 +229,7 @@
+ TESTOPTS := -r 44100 -t 30 -f 0 -g 0 -T 0
+
+ test: gbsplay
+- @MD5=`LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH ./gbsplay -E b -o stdout $(TESTOPTS) examples/nightmode.gbs 1 | md5sum | cut -f1 -d\ `; \
++ @MD5=`LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH ./gbsplay -E b -o stdout $(TESTOPTS) examples/nightmode.gbs 1 | md5`; \
+ EXPECT="3e0b21573e742101581b503da3ddf2f5"; \
+ if [ "$$MD5" = "$$EXPECT" ]; then \
+ echo "Bigendian output ok"; \
+@@ -239,7 +239,7 @@
+ echo " Got: $$MD5" ; \
+ exit 1; \
+ fi
+- @MD5=`LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH ./gbsplay -E l -o stdout $(TESTOPTS) examples/nightmode.gbs 1 | md5sum | cut -f1 -d\ `; \
++ @MD5=`LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH ./gbsplay -E l -o stdout $(TESTOPTS) examples/nightmode.gbs 1 | md5`; \
+ EXPECT="3e540a0bddc00cb1e0b7c4bf1a3708d7"; \
+ if [ "$$MD5" = "$$EXPECT" ]; then \
+ echo "Littleendian output ok"; \