diff options
author | bapt <bapt@FreeBSD.org> | 2014-05-27 00:25:23 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-05-27 00:25:23 +0800 |
commit | 6e1286ef862a1f4da3ef9aa89a7e904b06d37c1e (patch) | |
tree | a8e07a3e490e03f27701821a7ac953ff2a2f8a1c /devel | |
parent | 6dbbdcdee740ecb80d6e2d280d0973e0063e6dc5 (diff) | |
download | freebsd-ports-gnome-6e1286ef862a1f4da3ef9aa89a7e904b06d37c1e.tar.gz freebsd-ports-gnome-6e1286ef862a1f4da3ef9aa89a7e904b06d37c1e.tar.zst freebsd-ports-gnome-6e1286ef862a1f4da3ef9aa89a7e904b06d37c1e.zip |
Fix build with new lua 5.1
Diffstat (limited to 'devel')
-rw-r--r-- | devel/love07/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/love07/Makefile b/devel/love07/Makefile index 5c15043fead5..9a9b3581331e 100644 --- a/devel/love07/Makefile +++ b/devel/love07/Makefile @@ -23,7 +23,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost PORTSCOUT= limit:^0\.7\. -USES= gmake openal dos2unix lua:41 +USES= gmake openal dos2unix lua:51 USE_SDL= sdl mixer USE_GL= gl glu GNU_CONFIGURE= yes @@ -46,6 +46,7 @@ OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e '/^prefix=/ d; /^bindir=/ d; /^libdir=/ d' \ + -e "s/lua5.1/lua-${LUA_VER}/g" \ ${WRKSRC}/configure .if ${PORT_OPTIONS:MDOCS} |