Software Package:       
	sox

Release/Version:
	V11 patchlevel 12 (sox itself claim V12 patchlevel 12)

Retrieved from:
	http://www.spies.com/Sox/Archive/soxgamma.tar.gz

Bug reports:
	This software package is not maintained by BSDI, see
	http://www.spies.com/Sox/ for more information.

Comments:

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Modifications to this version made by BSDI:

Wed Oct 18 17:10:09 MDT 1995 ewv

	- Patch Makefile.unx -> Makefile (below)

	- Install tests fail for hcom format (early EOF?) and when converting
	  to and from aiff format (only 5 bytes difference). Aside from the
	  tests failing I've not found anything else that doesn't work
	  as expected.

	- Test files (monkey.au and monkey.voc) are uuencoded so they can be
	  checked in to CVS.

*** Makefile.unx	Tue Oct 24 13:09:41 1995
--- Makefile	Wed Oct 25 11:33:54 1995
***************
*** 114,125 ****
  # BSD-ish, salt to taste
  # Sun, NeXT, Vax, Ultrix uses these
  
! # CFLAGS    = $O -DNEED_GETOPT 
  #  maybe -DNEED_STRERROR
! # CC        = gcc -ansi -Dunix 
  # CC        = cc -Dunix
! # AR        = ar r
! # RANLIB    = ranlib
  
  # BSD-386, Mach 386, 386BSD, use for SBLAST driver
  
--- 114,125 ----
  # BSD-ish, salt to taste
  # Sun, NeXT, Vax, Ultrix uses these
  
! CFLAGS    = $O -DNEED_GETOPT 
  #  maybe -DNEED_STRERROR
! CC        = shlicc -ansi -Dunix 
  # CC        = cc -Dunix
! AR        = ar r
! RANLIB    = ranlib
  
  # BSD-386, Mach 386, 386BSD, use for SBLAST driver
  
***************
*** 153,159 ****
  # RM  = del /q
  
  
! all: sox
  
  sox: sox.o $(SOUNDLIB)
  	$(CC) $(CFLAGS) -o sox sox.o $(SOUNDLIB) -lm
--- 153,159 ----
  # RM  = del /q
  
  
! all: sox sox.0 st.0
  
  sox: sox.o $(SOUNDLIB)
  	$(CC) $(CFLAGS) -o sox sox.o $(SOUNDLIB) -lm
***************
*** 186,188 ****
--- 186,216 ----
  tar:
  	$(RM) sox.tar
  	tar cf sox.tar $(FILES)
+ 
+ cleandir: clean
+ 	$(RM) libst.a sox st.0 sox.0
+ 
+ depend:
+ 
+ obj:
+ 
+ tags:
+ 
+ objdir:
+ 
+ mansourceinstall:
+ 	install -c -o bin -g bin -m 0444 sox.man ${DESTDIR}/usr/contrib/man/man1/sox.1
+ 	install -c -o bin -g bin -m 0444 st.man ${DESTDIR}/usr/contrib/man/man3/st.3
+ 
+ install: sox sox.0 st.0
+ 	strip sox
+ 	install -c -o bin -g bin -m 0555 sox ${DESTDIR}/usr/contrib/bin
+ 	install -c -o bin -g bin -m 0444 libst.a ${DESTDIR}/usr/lib
+ 	install -c -o bin -g bin -m 0444 sox.0 ${DESTDIR}/usr/contrib/man/cat1
+ 	install -c -o bin -g bin -m 0444 st.0 ${DESTDIR}/usr/contrib/man/cat3
+ 
+ sox.0:	sox.man
+ 	nroff -man sox.man > sox.0
+ 
+ st.0:	st.man
+ 	nroff -man st.man > st.0
