diff --git a/audio/din/Makefile b/audio/din/Makefile index d7a653630aa9..5758c92b2ee8 100644 --- a/audio/din/Makefile +++ b/audio/din/Makefile @@ -1,37 +1,36 @@ PORTNAME= din -PORTVERSION= 56 -PORTREVISION= 1 +PORTVERSION= 57 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} LIBS+= -L${LOCALBASE}/lib -ltcl${TCL_SHLIB_VER} -lthr -ljack .include diff --git a/audio/din/distinfo b/audio/din/distinfo index 1252cb8708b3..1a00e3f08fb6 100644 --- a/audio/din/distinfo +++ b/audio/din/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1675512868 -SHA256 (din-56.tar.gz) = 2dd35ec6f2a56113f9167ed10fe3d9205781142987c16cbcaf8bdf9d26974f5f -SIZE (din-56.tar.gz) = 3716779 +TIMESTAMP = 1694482105 +SHA256 (din-57.tar.gz) = 2603e7deb403855cff97427379b51554a9b336469e2a5e0c3f514d840d14618e +SIZE (din-57.tar.gz) = 3693381 diff --git a/audio/din/files/patch-src_RtAudio.cpp b/audio/din/files/patch-src_RtAudio.cpp deleted file mode 100644 index 255de58f394e..000000000000 --- a/audio/din/files/patch-src_RtAudio.cpp +++ /dev/null @@ -1,17 +0,0 @@ -Add support for compiling in ISO C++17 ---- src/RtAudio.cpp.orig 2023-07-15 17:18:23 UTC -+++ src/RtAudio.cpp -@@ -10050,8 +10050,13 @@ void RtApi :: byteSwapBuffer( char *buffer, unsigned i - - void RtApi :: byteSwapBuffer( char *buffer, unsigned int samples, RtAudioFormat format ) - { -+ #if __cplusplus < 201703L - register char val; - register char *ptr; -+ #else -+ char val; -+ char *ptr; -+ #endif - - ptr = buffer; - if ( format == RTAUDIO_SINT16 ) {