Date: Sun, 26 May 2019 05:32:39 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502689 - head/games/exult Message-ID: <201905260532.x4Q5Wdf4063960@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905260532.x4Q5Wdf4063960>