svn commit: r435458 - branches/2017Q1/audio/fluidsynth

Thomas Zander riggs at FreeBSD.org
Sun Mar 5 08:51:24 UTC 2017


Author: riggs
Date: Sun Mar  5 08:51:22 2017
New Revision: 435458
URL: https://svnweb.freebsd.org/changeset/ports/435458

Log:
  MFH: r435389
  
  Add default OPTION for READLINE so users can disable it for custom builds
  
  PR:		213513
  Reported by:	rozhuk.im at gmail.com
  
  Approved by:	ports-secteam (junovitch)

Modified:
  branches/2017Q1/audio/fluidsynth/Makefile
Directory Properties:
  branches/2017Q1/   (props changed)

Modified: branches/2017Q1/audio/fluidsynth/Makefile
==============================================================================
--- branches/2017Q1/audio/fluidsynth/Makefile	Sun Mar  5 08:24:42 2017	(r435457)
+++ branches/2017Q1/audio/fluidsynth/Makefile	Sun Mar  5 08:51:22 2017	(r435458)
@@ -3,7 +3,7 @@
 
 PORTNAME=	fluidsynth
 PORTVERSION=	1.1.6
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	audio
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 
@@ -13,8 +13,9 @@ COMMENT=	Real-time software synthesizer 
 LICENSE=	LGPL20
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-OPTIONS_DEFINE=	JACK ALSA DBUS LADSPA LASH PORTAUDIO PULSEAUDIO SNDFILE SNDIO
-OPTIONS_DEFAULT=	JACK
+OPTIONS_DEFINE=	JACK ALSA DBUS LADSPA LASH PORTAUDIO PULSEAUDIO READLINE \
+		SNDFILE SNDIO
+OPTIONS_DEFAULT=	JACK READLINE
 
 USE_GNOME=	glib20
 USES=		cmake pkgconfig ninja tar:bzip2
@@ -46,6 +47,9 @@ PORTAUDIO_CMAKE_ON=	-Denable-portaudio:B
 PULSEAUDIO_LIB_DEPENDS=	libpulse.so:audio/pulseaudio
 PULSEAUDIO_CMAKE_OFF=	-Denable-pulseaudio:BOOL=FALSE
 
+READLINE_USES=		readline
+READLINE_CMAKE_OFF=	-Denable-readline:BOOL=FALSE
+
 SNDFILE_LIB_DEPENDS=	libsndfile.so:audio/libsndfile
 SNDFILE_CMAKE_OFF=	-Denable-libsndfile:BOOL=FALSE
 


More information about the svn-ports-all mailing list