forked from Lainports/freebsd-ports
alternative to the somewhat outdated reference implementation. As stated on the website, OpenAL provides capabilities for playing audio in a virtual 3d environment. Distance attenuation, doppler shift, and directional sound emitters are among the features handled by the API. More advanced effects, including air absorption, low-pass filters, and reverb, are available through the EFX extension. It also facilitates streaming audio, multi-channel buffers, and audio capture. WWW: http://kcat.strangesoft.net/openal.html PR: ports/131260 Submitted by: Marcus von Appen <mva at sysfault.org>
24 lines
506 B
Makefile
24 lines
506 B
Makefile
# New ports collection makefile for: openal-soft
|
|
# Date created: 2009-02-01
|
|
# Whom: Marcus von Appen <mva@sysfault.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= openal-soft
|
|
PORTVERSION= 1.6.372
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://kcat.strangesoft.net/openal-releases/
|
|
|
|
MAINTAINER= mva@sysfault.org
|
|
COMMENT= A software implementation of the OpenAL specification
|
|
|
|
CONFLICTS= openal-200[0-9]*
|
|
|
|
USE_BZIP2= yes
|
|
USE_CMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
CMAKE_USE_PTHREAD= yes
|
|
CMAKE_ARGS= -DALSA:BOOL=OFF
|
|
|
|
.include <bsd.port.mk>
|