diff options
author | ben <ben@pkgsrc.org> | 2004-04-20 17:52:48 +0000 |
---|---|---|
committer | ben <ben@pkgsrc.org> | 2004-04-20 17:52:48 +0000 |
commit | 0f60134da544894203ebd08ae2f23d41d8c3f21e (patch) | |
tree | 31f28619bf3960f7370ec949267085e2a299dcaf /audio/portaudio/buildlink3.mk | |
parent | 750b807fa06798674a6d45a9b93f17adecbb45c5 (diff) | |
download | pkgsrc-0f60134da544894203ebd08ae2f23d41d8c3f21e.tar.gz |
Initial import of portaudio-18.1, a portable cross-platform audio API.
Package provided by dotz@irc.pl.
PortAudio is a free, cross platform, open-source, audio I/O library. It
lets you write simple audio programs in 'C' that will compile and run on
many platforms including Windows, Macintosh (8,9,X), Unix (OSS), SGI, and
BeOS. PortAudio is intended to promote the exchange of audio synthesis
software between developers on different platforms, and was recently
selected as the audio component of a larger PortMusic project that includes
MIDI and sound file support.
PortAudio provides a very simple API for recording and/or playing sound
using a simple callback function. Example programs are included that
synthesize sine waves and pink noise, perform fuzz distortion on a guitar,
list available audio devices, etc.
Diffstat (limited to 'audio/portaudio/buildlink3.mk')
-rw-r--r-- | audio/portaudio/buildlink3.mk | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/audio/portaudio/buildlink3.mk b/audio/portaudio/buildlink3.mk new file mode 100644 index 00000000000..27a86afbf75 --- /dev/null +++ b/audio/portaudio/buildlink3.mk @@ -0,0 +1,23 @@ +# $NetBSD: buildlink3.mk,v 1.1.1.1 2004/04/20 17:52:48 ben Exp $ +# XXX +# XXX This file was created automatically using createbuildlink-3.3. +# XXX After this file as been verified as correct, the comment lines +# XXX beginning with "XXX" should be removed. Please do not commit +# XXX unverified buildlink[23].mk files. + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ +PORTAUDIO_BUILDLINK3_MK:= ${PORTAUDIO_BUILDLINK3_MK}+ + +.if !empty(BUILDLINK_DEPTH:M+) +BUILDLINK_DEPENDS+= portaudio +.endif + +BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nportaudio} +BUILDLINK_PACKAGES+= portaudio + +.if !empty(PORTAUDIO_BUILDLINK3_MK:M+) +BUILDLINK_DEPENDS.portaudio+= portaudio>=18.1 +BUILDLINK_PKGSRCDIR.portaudio?= ../../wip/portaudio +.endif # PORTAUDIO_BUILDLINK3_MK + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//} |