Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/sound
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5023

Added Files:
        sidplay.info sidplay.patch 
Log Message:
Bring sidplay into stable/


--- NEW FILE: sidplay.info ---
Package: sidplay
Version: 1.0.9
Revision: 1
Maintainer: Rob Braun <[EMAIL PROTECTED]>
GCC: 3.3
Patch: %n.patch
BuildDepends: libao2, libsidplay
Depends: libao2-shlibs, libsidplay-shlibs
Source: 
http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/%n-base-%v.tgz
Source-MD5: 633506d1225ce9713106fc8d851b0750
DocFiles: COPYING ChangeLog POINTER INSTALL 
ConfigureParams: --with-sidplay-includes=%i/includes 
--with-sidplay-library=%i/lib 
Description: Command line SID (C64 audio file format) player
DescDetail: <<
Command line SID (C64 audio file format) player
<<
DescPort: <<
This was ported to use libao, which uses CoreAudio.  The libao
port to OS X only supports 44.1kHz 16bit 2 channel audio, so
this port of sidplay defaults to using those specifications.
Also, CoreAudio did not like the small buffer size that sidplay
defaulted to using, so the port also bumps up the buffer size
that sidplay uses.  If you change any of these settings, sidplay
will likely not work on OS X.
<<
License: GPL
Homepage: http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/linux.html

--- NEW FILE: sidplay.patch ---
diff -rudN sidplay-base-1.0.9/Makefile.in sidplay-base-1.0.9-bbraun/Makefile.in
--- sidplay-base-1.0.9/Makefile.in      Sat Sep 28 11:44:14 2002
+++ sidplay-base-1.0.9-bbraun/Makefile.in       Tue Feb 10 14:52:42 2004
@@ -132,20 +132,6 @@
 all: all-redirect
 .SUFFIXES:
 .SUFFIXES: .S .c .cpp .o .s
-$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 
-       cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps Makefile
-
-Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
-       cd $(top_builddir) \
-         && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
-
-$(ACLOCAL_M4):  configure.in  acinclude.m4
-       cd $(srcdir) && $(ACLOCAL)
-
-config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
-       $(SHELL) ./config.status --recheck
[...5369 lines suppressed...]
+       ;;
 esac
 
 AC_OUTPUT(Makefile)
diff -rudN sidplay-base-1.0.9/sidplay.cpp sidplay-base-1.0.9-bbraun/sidplay.cpp
--- sidplay-base-1.0.9/sidplay.cpp      Sat Sep 28 11:44:02 2002
+++ sidplay-base-1.0.9-bbraun/sidplay.cpp       Tue Feb 10 13:51:06 2004
@@ -137,6 +137,12 @@
        uword fragments = 16;
        uword fragSizeBase = 12;
        int forceBufSize = 0;  // get it from argument line
+#ifdef __APPLE__
+       myEmuConfig.frequency = 44100;
+       myEmuConfig.channels = SIDEMU_STEREO;
+       myEmuConfig.bitsPerSample = SIDEMU_16BIT;
+       forceBufSize = 10240;
+#endif
     
        int infile = 0;
        



-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.  How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.  
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to