diff options
author | bapt <bapt@FreeBSD.org> | 2014-01-26 07:25:14 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-01-26 07:25:14 +0800 |
commit | 78a7cb6266033f6500ed261daed1b92f4901ec8a (patch) | |
tree | 3b77586e074151163010ec0bc8a2a6b9a9d9b22f /games | |
parent | 2ac2b25d254bb6a4e104a4c9412cf8bd36d6b452 (diff) | |
download | freebsd-ports-gnome-78a7cb6266033f6500ed261daed1b92f4901ec8a.tar.gz freebsd-ports-gnome-78a7cb6266033f6500ed261daed1b92f4901ec8a.tar.zst freebsd-ports-gnome-78a7cb6266033f6500ed261daed1b92f4901ec8a.zip |
Switch to use lua 5.2
Diffstat (limited to 'games')
-rw-r--r-- | games/pushover/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/pushover/Makefile b/games/pushover/Makefile index b8de4c6e465e..d52f4bc0059b 100644 --- a/games/pushover/Makefile +++ b/games/pushover/Makefile @@ -3,11 +3,12 @@ PORTNAME= pushover PORTVERSION= 0.0.5 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/Pushover/${PORTVERSION} MAINTAINER= amdmi3@FreeBSD.org -COMMENT= A puzzle game where the goal is to push over all dominoes +COMMENT= Puzzle game where the goal is to push over all dominoes LICENSE= GPLv3 @@ -15,10 +16,9 @@ LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png GNU_CONFIGURE= yes USE_SDL= sdl mixer ttf -USE_LUA= 5.1 CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -USES= gettext gmake pkgconfig +USES= gettext gmake pkgconfig lua PORTDOCS= * PORTDATA= * @@ -33,6 +33,6 @@ DESKTOP_ENTRIES="Pushover" \ OPTIONS_DEFINE= DOCS post-patch: - @${REINPLACE_CMD} -e 's|lua5.1|lua-5.1|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|lua5.1|lua-${LUA_VER}|' ${WRKSRC}/configure .include <bsd.port.mk> |