svn commit: r541329 - head/games/vvvvvv
Emmanuel Vadot
manu at FreeBSD.org
Mon Jul 6 09:26:37 UTC 2020
Author: manu
Date: Mon Jul 6 09:26:36 2020
New Revision: 541329
URL: https://svnweb.freebsd.org/changeset/ports/541329
Log:
games/vvvvvv: Fix linking after sdl20 update
sdl20 was updated in r541153 and the cmake file was changed to add
directly /usr/local/lib/libSDL2 without adding -L/usr/local/lib/.
Since sdl2_mixer doesn't have a cmake file -L/usr/local/lib and this
port doesn't have other dependancy that adds it it fails to link.
Fix that by adding USES=localbase:ldflags
Reported by: pkg-fallout
Modified:
head/games/vvvvvv/Makefile
Modified: head/games/vvvvvv/Makefile
==============================================================================
--- head/games/vvvvvv/Makefile Mon Jul 6 09:10:16 2020 (r541328)
+++ head/games/vvvvvv/Makefile Mon Jul 6 09:26:36 2020 (r541329)
@@ -15,7 +15,7 @@ LICENSE_PERMS= dist-mirror no-dist-sell pkg-mirror no-
ONLY_FOR_ARCHS= amd64 powerpc64
-USES= sdl cmake
+USES= sdl cmake localbase:ldflags
USE_GITHUB= yes
GH_ACCOUNT= TerryCavanagh
GH_PROJECT= ${PORTNAME}
More information about the svn-ports-head
mailing list