diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2006-11-08 21:19:09 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2006-11-08 21:19:09 +0000 |
commit | 1fe4323ba11340e8897952c316df1c51b809b8b9 (patch) | |
tree | 737068cc7fd1493df6eee24fabde52d9af89ffe7 /games/frozenbubble | |
parent | bf6b36e043f22ac843ff1db977cb156129bf18b8 (diff) |
Notes
Diffstat (limited to 'games/frozenbubble')
-rw-r--r-- | games/frozenbubble/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/games/frozenbubble/Makefile b/games/frozenbubble/Makefile index a1673f291c46..1b93491fdcf9 100644 --- a/games/frozenbubble/Makefile +++ b/games/frozenbubble/Makefile @@ -7,7 +7,7 @@ PORTNAME= frozenbubble PORTVERSION= 2.0.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.frozen-bubble.org/data/ DISTNAME= frozen-bubble-${PORTVERSION} @@ -40,6 +40,12 @@ COPYTREE_SHARE= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ ${FIND} $$1/ -type d -exec ${CHMOD} 755 {} \; && \ ${FIND} $$1/ -type f -exec ${CHMOD} ${SHAREMODE} {} \;' -- +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 600020 +IGNORE= doesn't work unless MSG_NOSIGNAL is defined (FreeBSD version 600020 and higher) +.endif + post-patch: @${REINPLACE_CMD} -e 's|sdl-config|\${SDL_CONFIG}|g' \ ${WRKSRC}/c_stuff/Makefile.PL @@ -68,4 +74,4 @@ post-install: @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |