svn commit: r384334 - head/audio/sooperlooper
John Marino
marino at FreeBSD.org
Mon Apr 20 07:19:34 UTC 2015
Author: marino
Date: Mon Apr 20 07:19:33 2015
New Revision: 384334
URL: https://svnweb.freebsd.org/changeset/ports/384334
Log:
audio/sooperlooper: Unbreak on some platforms
This unmaintained port is breaking on Wx 3.0, which is only an GUI option.
Downgrading to Wx 2.8 allows it to build on all platforms (as well as
having the option by default). The second iteration of the PR suggested
Wx3.0 for FreeBSD 8 and 9, but Wx 2.8 for F10+, but I didn't like that
approach. It only works on F8 and F9 because of compiler deficiencies.
Simple attempts of setting -std to c++11 didn't work, of course.
PR: 199221
Submitted by: ports fury
Modified:
head/audio/sooperlooper/Makefile
Modified: head/audio/sooperlooper/Makefile
==============================================================================
--- head/audio/sooperlooper/Makefile Mon Apr 20 06:01:58 2015 (r384333)
+++ head/audio/sooperlooper/Makefile Mon Apr 20 07:19:33 2015 (r384334)
@@ -3,6 +3,7 @@
PORTNAME= sooperlooper
PORTVERSION= 1.7.3
+PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://essej.net/sooperlooper/
@@ -22,7 +23,7 @@ LIB_DEPENDS= libjack.so:${PORTSDIR}/audi
libfftw3.so:${PORTSDIR}/math/fftw3
RUN_DEPENDS= ladspa>0:${PORTSDIR}/audio/ladspa
-USES= compiler:c++0x gmake ncurses pkgconfig
+USES= gmake ncurses pkgconfig
USE_GNOME= libxml2
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
@@ -37,7 +38,7 @@ OPTIONS_SUB= yes
ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib
ALSA_CONFIGURE_ENV_OFF= ac_cv_header_alsa_asoundlib_h=no
-WXGTK_USE= WX=3.0
+WXGTK_USE= WX=2.8
WXGTK_CONFIGURE_ON= --with-wxconfig-path=${WX_CONFIG}
WXGTK_CONFIGURE_OFF= --without-gui
More information about the svn-ports-all
mailing list