mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
32588501c4
Changes since 57: DIN Is Noise 58: /* position affects velocity and acceleration vectors instead of just velocity vectors Menu > Drone Tools > Position affects Vectors *\ /* rotate acceleration *\ /* rotation direction switch on velocity, accelerations *\ /* reverse orbital direction *\ * drone & voice volume displayed on microtonal keyboard is absolute not % * improved documentation, see https://dinisnoise.org/docs/ :( fixed visual modulation behaviour on drones :) - removed Boost library requirement to build DIN Is Noise from source code.
37 lines
866 B
Makefile
37 lines
866 B
Makefile
PORTNAME= din
|
|
PORTVERSION= 58.1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= https://archive.org/download/dinisnoise_source_code/
|
|
|
|
MAINTAINER= fox@FreeBSD.org
|
|
COMMENT= Open source, cross-platform sound synthesizer
|
|
WWW= https://dinisnoise.org/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libasound.so:audio/alsa-lib \
|
|
libboost_system.so:devel/boost-libs \
|
|
libjack.so:audio/jack
|
|
|
|
USES= autoreconf gl gnome sdl tcl:86+ xorg
|
|
USE_GL= gl
|
|
USE_SDL= sdl
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS_SINGLE= BACKEND
|
|
OPTIONS_SINGLE_BACKEND= ALSA JACK
|
|
OPTIONS_DEFAULT= JACK
|
|
|
|
JACK_DESC= Uses JACK sound server
|
|
ALSA_DESC= Uses ALSA sound server
|
|
|
|
ALSA_CXXFLAGS+= -D__LINUX_ALSA__
|
|
JACK_CXXFLAGS+= -D__UNIX_JACK__
|
|
|
|
CXXFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/tcl${TCL_VER} -Wno-register
|
|
LIBS+= -L${LOCALBASE}/lib -ltcl${TCL_SHLIB_VER} -lthr -ljack
|
|
|
|
.include <bsd.port.mk>
|