blob: 5873239b23b111663154f893a45f3b7f452042ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $NetBSD: Makefile,v 1.16 2004/01/20 12:15:41 agc Exp $
#
DISTNAME= xblast-2.6.beta-sound
PKGNAME= xblast-2.6b
PKGREVISION= 1
CATEGORIES= games x11
MASTER_SITES= http://www.ikp.uni-koeln.de/~vogel/archive/
MAINTAINER= root@garbled.net
HOMEPAGE= http://www.ikp.uni-koeln.de/~vogel/xblast/xblast.html
COMMENT= 2-6 player kill the other guy with bombs game. A real blast!
DEPENDS+= tk>=8.3.2:../../x11/tk
WRKSRC= ${WRKDIR}/XBlast-2.6.beta
USE_IMAKE= yes
post-patch:
cd ${WRKSRC} ; ${SED} '/file_appl_def/s@/usr/lib/X11@'${PREFIX}'/lib/X11@' defaults.h >xx ; ${MV} xx defaults.h
${TOUCH} ${WRKSRC}/xbsndsrv.man
for dir in bitmap image; do \
for sub in block explosion misc score sprite; do \
${MV} ${WRKSRC}/$$dir/$$sub/Imakefile ${WRKSRC}/$$dir/$$sub/foo; \
${SED} -e 's|XBLASTDIR=.*/xblast|XBLASTDIR=${PREFIX}/share/xblast|' <${WRKSRC}/$$dir/$$sub/foo>${WRKSRC}/$$dir/$$sub/Imakefile; \
${RM} ${WRKSRC}/$$dir/$$sub/foo; \
done; \
done
post-build:
cd ${WRKSRC}/tkXBlast && ${MAKE_ENV} ${MAKE}
post-install:
${RM} ${PREFIX}/man/cat1/xbsndsrv.0
.include "../../mk/bsd.pkg.mk"
|