Skip to content

Commit

Permalink
fluidsynth: Update to 2.1.0
Browse files Browse the repository at this point in the history
New features

    new, less "ringing" reverb engine (#380, thanks to @jjceresa)
    new, stereophonic chorus engine (#548, thanks to @jjceresa)
    support for Downloadable Sounds (DLS) files was added (#320, requires libinstpatch)
    improved integrity checking of SoundFont modulators (#467, thanks to @jjceresa)
    rendering to stdout is now possible (#553, thanks to @mawe42)
    the following Audio Drivers have been added:
        Oboe (#464, tested on Android, thanks to @atsushieno)
        OpenSLES (#464, tested on Android, thanks to @atsushieno)
        SDL2 (#478, thanks to @carlo-bramini)
        WaveOut (#466, tested on Win98, WinNT4.0, WinXP, thanks to @carlo-bramini)
    various performance improvements (#543, #545, #547, #569, #573)

Bug fixes

    generator modEnvAttack now has a convex shape according to SoundFont spec (#153)
    the default MIDI Pitch Wheel to Initial Pitch modulator now uses Fine Tune as destination generator, allowing it to be overridden by the soundfont designer (#154, thanks to @jjceresa)
  • Loading branch information
alarixnia committed Dec 1, 2019
1 parent 4af80a9 commit 895510b
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 11 deletions.
4 changes: 2 additions & 2 deletions audio/fluidsynth/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.31 2019/11/22 17:20:42 nia Exp $
# $NetBSD: Makefile,v 1.32 2019/12/01 12:51:57 nia Exp $

DISTNAME= fluidsynth-2.0.9
DISTNAME= fluidsynth-2.1.0
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GITHUB:=FluidSynth/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Expand Down
4 changes: 2 additions & 2 deletions audio/fluidsynth/PLIST
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.4 2019/10/31 14:02:55 nia Exp $
@comment $NetBSD: PLIST,v 1.5 2019/12/01 12:51:57 nia Exp $
bin/fluidsynth
include/fluidsynth.h
include/fluidsynth/audio.h
Expand All @@ -20,6 +20,6 @@ include/fluidsynth/version.h
include/fluidsynth/voice.h
lib/libfluidsynth.so
lib/libfluidsynth.so.2
lib/libfluidsynth.so.2.2.1
lib/libfluidsynth.so.2.3.0
lib/pkgconfig/fluidsynth.pc
man/man1/fluidsynth.1
10 changes: 5 additions & 5 deletions audio/fluidsynth/distinfo
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.18 2019/11/22 17:20:42 nia Exp $
$NetBSD: distinfo,v 1.19 2019/12/01 12:51:57 nia Exp $

SHA1 (fluidsynth-2.0.9.tar.gz) = 3c27be26c92de038af445d43d18a9ba27dd0d98d
RMD160 (fluidsynth-2.0.9.tar.gz) = c3b89dd2c0c99170ccd38b6cf5d02e0433130884
SHA512 (fluidsynth-2.0.9.tar.gz) = 3cc88ed3e83b15d5b3f397f3d93bf85a03dda122b570b8b09e83e9a5d00be7fc0592b2f1088151a1284c6c9125c309efd030f0fb8cb160051863e1a2fea53467
Size (fluidsynth-2.0.9.tar.gz) = 1316192 bytes
SHA1 (fluidsynth-2.1.0.tar.gz) = 3822f1406cbf6c810928277a3695b5e38a5dbde4
RMD160 (fluidsynth-2.1.0.tar.gz) = 205e8d5d7f7645637c22db291da91356a02939da
SHA512 (fluidsynth-2.1.0.tar.gz) = d7af4047ebde49ef48098ae9dbab5d90422a4536acf28a2de32d8da67a50ebbbcf30e06833b630bd54e441040be0e432b377e3b63bf666e63106e69cd408ea0d
Size (fluidsynth-2.1.0.tar.gz) = 1356096 bytes
SHA1 (patch-CMakeLists.txt) = 79804b84964e9557180c0f86e36d465fac7126fe
SHA1 (patch-src_drivers_fluid__alsa.c) = a482764f0bbc15b5cf04e6920374b2f4811760aa
17 changes: 15 additions & 2 deletions audio/fluidsynth/options.mk
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# $NetBSD: options.mk,v 1.2 2019/10/20 11:10:47 nia Exp $
# $NetBSD: options.mk,v 1.3 2019/12/01 12:51:57 nia Exp $

PKG_OPTIONS_VAR= PKG_OPTIONS.fluidsynth
PKG_SUPPORTED_OPTIONS= alsa jack portaudio pulseaudio
PKG_SUPPORTED_OPTIONS= alsa jack portaudio pulseaudio sdl2
PKG_SUGGESTED_OPTIONS.Linux= alsa

.include "../../mk/oss.buildlink3.mk"

.if ${OPSYS} != "Linux" && ${OSS_TYPE} == "none"
PKG_SUGGESTED_OPTIONS+= sdl2
.endif

.include "../../mk/bsd.options.mk"

.if !empty(PKG_OPTIONS:Malsa)
Expand Down Expand Up @@ -33,3 +39,10 @@ CMAKE_ARGS+= -Denable-pulseaudio=ON
.else
CMAKE_ARGS+= -Denable-pulseaudio=OFF
.endif

.if !empty(PKG_OPTIONS:Msdl2)
CMAKE_ARGS+= -Denable-sdl2=ON
.include "../../devel/SDL2/buildlink3.mk"
.else
CMAKE_ARGS+= -Denable-sdl2=OFF
.endif

0 comments on commit 895510b

Please sign in to comment.