diff options
Diffstat (limited to 'audio/ardour/ardour.SlackBuild')
-rw-r--r-- | audio/ardour/ardour.SlackBuild | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/audio/ardour/ardour.SlackBuild b/audio/ardour/ardour.SlackBuild index 2570e723d3..078707d944 100644 --- a/audio/ardour/ardour.SlackBuild +++ b/audio/ardour/ardour.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=ardour -VERSION=2.8.12 +VERSION=2.8.14 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -41,9 +41,9 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "${LV2:-no}" = "no" ]; then - lv2opt="LV2=0" + lv2opt="LV2=0 LV2_UI=0" else - lv2opt="LV2=1" + lv2opt="LV2=1 LV2_UI=1" fi if [ "${WIIMOTE:-no}" = "no" ]; then @@ -99,21 +99,17 @@ patch -d gtk2_ardour -p0 -i $CWD/SConscript.diff # Omit -O3 from the CFLAGS patch -p1 -i $CWD/SConstruct.diff -# Fix issues with gcc-4.7 -patch -p1 -i $CWD/ardour-gcc47.patch - -# fix building vst support -sed -i "s|string.h|ustring.h|" libs/ardour/vst_plugin.cc - scons \ PREFIX=/usr \ LIBDIR=/usr/lib${LIBDIRSUFFIX} \ DIST_TARGET="$TARGET" \ ARCH="$(echo $SLKCFLAGS)" \ FREEDESKTOP=1 \ + SYSLIBS=1 \ $wiiopt \ $lv2opt \ $vstopt + scons \ --implicit-deps-unchanged \ PREFIX=/usr \ @@ -121,6 +117,7 @@ scons \ DIST_TARGET="$TARGET" \ ARCH="$(echo $SLKCFLAGS)" \ FREEDESKTOP=1 \ + SYSLIBS=1 \ $wiiopt \ $lv2opt \ $vstopt \ |