svn commit: r502689 - head/games/exult
Tobias Kortkamp
tobik at FreeBSD.org
Sun May 26 05:32:40 UTC 2019
Author: tobik
Date: Sun May 26 05:32:39 2019
New Revision: 502689
URL: https://svnweb.freebsd.org/changeset/ports/502689
Log:
games/exult: Fix SDL1 and SDL2 options
There is no opt_CONFIGURE_ARGS helper. Change it to opt_CONFIGURE_ON.
Without this and with both SDL 1.2 and SDL 2 installed in the build
environment it would always pick SDL 1.2 otherwise. Always broken
since r418018.
Modified:
head/games/exult/Makefile
Modified: head/games/exult/Makefile
==============================================================================
--- head/games/exult/Makefile Sun May 26 05:08:17 2019 (r502688)
+++ head/games/exult/Makefile Sun May 26 05:32:39 2019 (r502689)
@@ -3,7 +3,7 @@
PORTNAME= exult
PORTVERSION= 1.5.0.20160514
-PORTREVISION= 6
+PORTREVISION= 7
CATEGORIES= games
MAINTAINER= ports at FreeBSD.org
@@ -44,10 +44,10 @@ GIMP_LIB_DEPENDS= libgimp-2.0.so:graphics/gimp-app
GIMP_CONFIGURE_ENABLE= gimp-plugin
SDL1_DESC= Simple Direct Media Layer 1 support
SDL1_USE= sdl=mixer
-SDL1_CONFIGURE_ARGS= --with-sdl=sdl12
+SDL1_CONFIGURE_ON= --with-sdl=sdl12
SDL2_DESC= Simple Direct Media Layer 2 support
SDL2_USE= sdl=mixer2
-SDL2_CONFIGURE_ARGS= --with-sdl=sdl2
+SDL2_CONFIGURE_ON= --with-sdl=sdl2
STUDIO_DESC= Install Exult Studio
STUDIO_CONFIGURE_ENABLE=\
exult-studio exult-studio-support
More information about the svn-ports-head
mailing list