Date: Mon, 6 Jul 2020 09:26:37 +0000 (UTC) From: Emmanuel Vadot <manu@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541329 - head/games/vvvvvv Message-ID: <202007060926.0669Qb66022492@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007060926.0669Qb66022492>