963dec3cc2
pkgsrc changes: PKG_SYSCONFised. changes: bug fixes and ... 1.5h 10/12/2002 - Added SoundFileGetProc() to get access to the toSound and fromSound Procs in _SoundFileInfo[]. Needed for xemacs. - Added AudioLibraryVersionMajor, AudioLibraryVersionMinor, and AudioLibraryVersionTeeny to audiolib.h. Somewhat more informative than just the old AudioLibraryVersion which was set a '2'. The older AudioLibraryVersion define is still there however. 1.5g 10/7/2002 - changed inputsection defaults in nasd.conf.eg to 44.1Khz, 2 channel 16b sound. outputsection also defaults to 44.1Khz now, instead of 33Khz. - began some CC ANSI'fication of libaudio. 1.5f 8/26/2002 7/20/2002 - added cygwinArchitecture to the server Imakefile so auvoxware will be built on cygwin systems. - Removed the SoundFileInfo[] array in sound.h so cygwin would be happy. Apps should not have been accessing that array directly anyways. Added the following new functions to sound.c (that used to be macros in sound.h): SoundFileFormatString, SoundValidDataFormat, SoundFileFormatToString, SoundFileFormatToAbbrev, SoundFileFormatToSuffixes Assuming your code did not attempt to directly access SoundFileInfo[], no changes should be required. libaudio.so revision bumped to 2.3 - re-added back the Xtutils stuff, as some of the demos did in fact require it. cygwin has a problem with implicitly defined functions anyway. 7/9/2002 - rename dia/nasconfig.* to dia/nasconf.* to avoid name collision with NasConfig.h on windows systems. 1.5e 7/7/2002 - added patch from Nicolas Escuder that adds support for Windows operating systems using Cygwin. Even the NAS server is now supported. There are still issues with building regarding Imake, but once I can get more information, I'll fix those up. Read the README.CYGWIN file in the nas/ directory for instructions. I will provide a link on the nas-links page to precompiled windows binaries for libaudio.dll, nasd, and some clients - provided by Nicolas. - based on idea from Nicolas, added background (-b) mode to nasd, to force it to run in the background. Actually, he supplied a patch, but I just redid it to work properly with unix systems. - added NAS_AUDIOMSGFILE in config/NasConfig.h to specify where audio messages are stored (ADMPATH in os/osinit.c). 1.5d 6/1/2002 - added .ps -> .pdf conversions in doc/pdf/ - added html versions of man pages in doc/html/ 1.5c 3/27/2002 - removed Xtutil[hc] from libaudio and removed references to Xtutil.h in the clients. Suggestion by Paul Fox. 1.5b 3/16/2002 - added patch from Marco Molteni to add a '-local' option to nasd. Specifying this option allows only local clients to connect. - moved allow_any_host into the NasConfig struct. Along with the new '-local' option. 1.5a 2/23/2002 - more STARTSERVER fixes - there was still one case where when STARTSERVER was defined, nasd could be called with the wrong display number due to a bug in _AuConnectServer. - changed LEX/YACC DEBUG token to CDEBUG to avoid conflicts when building nas with '-DDEBUG' - DEFAULT_AUSERVER is now ":0" rather than "tcp/localhost:8000". A local socket connection will startup faster than a tcp connection. - mutex.h - corrected unixware 7.x build problem (XMUTEX_INITIALIZER) in mutex.h - added same check for sun/solaris boxes - got rid of XUSE_MTSAFE_API - now controlled by NAS_USEMTSAFEAPI defined in config/NasConfig.h If you think you are having mutex problems, you can edit config/NasConfig.h and '#undef' NAS_USEMTSAFEAPI, then rebuild everthing. This will turn off threadsafety in libaudio. - added new option, 'gain', to config file in the input/output sections. This sets the default gains when nasd starts up (if MixerInit is enabled). Only in voxware for now.
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.20 2002/11/28 11:40:45 markd Exp $
|
|
# FreeBSD ID: Makefile,v 1.8 1997/01/06 12:04:12 jkh Exp
|
|
#
|
|
|
|
DISTNAME= nas-1.6.src
|
|
PKGNAME= ${DISTNAME:S/.src//}
|
|
WRKSRC= ${WRKDIR}/${PKGNAME}
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://radscan.com/nas/ \
|
|
ftp://ftp.uni-duisburg.de/Sound/NAS/ \
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://radscan.com/nas.html
|
|
COMMENT= Network Audio System
|
|
|
|
USE_BUILDLINK2= # defined
|
|
USE_IMAKE= # defined
|
|
USE_X11BASE= # defined
|
|
|
|
PKG_SYSCONFSUBDIR= nas
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC}; for file in \
|
|
config/NetAudio.def; \
|
|
do \
|
|
${SED} -e "s|@PKG_SYSCONFDIR@|${PKG_SYSCONFDIR}|g" \
|
|
$${file} >> $${file}.fixed; \
|
|
${MV} -f $${file}.fixed $${file}; \
|
|
done
|
|
cd ${WRKSRC}; for file in \
|
|
server/nasd.conf.eg \
|
|
server/dda/voxware/auvoxware.c; \
|
|
do \
|
|
${SED} -e "s|@DEVOSSAUDIO@|${DEVOSSAUDIO}|g" \
|
|
$${file} >> $${file}.fixed; \
|
|
${MV} -f $${file}.fixed $${file}; \
|
|
done
|
|
|
|
PLIST_SRC= ${PKGDIR}/PLIST.clients
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "sparc"
|
|
. include "../../mk/ossaudio.buildlink2.mk"
|
|
PLIST_SRC+= ${PKGDIR}/PLIST.voxware
|
|
CONF_FILES= ${PREFIX}/share/examples/nas/nasd.conf.eg ${PKG_SYSCONFDIR}/nasd.conf
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.install.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|