summaryrefslogtreecommitdiff
path: root/games/lbreakout/Makefile
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-10-20 07:32:38 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-10-20 07:32:38 +0000
commit0050bccb4541dda8deed41e2ab4966ad77451bab (patch)
tree424ea624b05a7d892961577855a453e242e9cf67 /games/lbreakout/Makefile
parentRemove the garbage. (diff)
Add lbreakout - a SDL-based clone of classical Breakout game.
Notes
Notes: svn path=/head/; revision=34013
Diffstat (limited to 'games/lbreakout/Makefile')
-rw-r--r--games/lbreakout/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/games/lbreakout/Makefile b/games/lbreakout/Makefile
new file mode 100644
index 000000000000..230b595dee16
--- /dev/null
+++ b/games/lbreakout/Makefile
@@ -0,0 +1,38 @@
+# New ports collection makefile for: lbreakout
+# Date created: 19 October 2000
+# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= lbreakout
+PORTVERSION= 001018
+CATEGORIES= games
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= lgames
+
+MAINTAINER= sobomax@FreeBSD.org
+
+LIB_DEPENDS= SDL-1.0.2:${PORTSDIR}/devel/sdl
+
+SDL_CONFIG?= ${LOCALBASE}/bin/sdl-config
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ENV= LIBS="-lcompat"
+
+pre-patch:
+ @${PERL} -pi -e 's|-lpthread|-pthread|g' ${WRKSRC}/configure
+ @find ${WRKSRC} \( -name "*.[ch]" -or -name "*.cpp" \) | \
+ xargs ${PERL} -pi -e 's|"SDL/SDL|"SDL|g ; s|<SDL/SDL|<SDL|g'
+
+pre-install:
+ ${MKDIR} /var/games/${PORTNAME}
+
+post-install:
+ ${CHOWN} root:games ${PREFIX}/bin/${PORTNAME}
+ ${CHMOD} 2755 ${PREFIX}/bin/${PORTNAME}
+ ${CHMOD} 664 /var/games/${PORTNAME}/${PORTNAME}.hscr
+ ${CHOWN} root:games /var/games/${PORTNAME}/${PORTNAME}.hscr
+
+.include <bsd.port.mk>