1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

Jean-Marc Zucconi's port of xmris - an X11 based arcade game.

Submitted by:	Jean-Marc Zucconi
This commit is contained in:
Jordan K. Hubbard 1994-09-21 12:42:56 +00:00
parent 6c54fc0fa8
commit aadb1b6790
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=106
5 changed files with 56 additions and 0 deletions

8
games/xmris/Makefile Normal file
View File

@ -0,0 +1,8 @@
DISTNAME= xmris.4.02
USE_IMAKE= yes
MASTER_SITES= ftp://ftp.x.org/R5contrib/
pre-install:
@(cd ${WRKSRC}; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} install.man)
.include <bsd.port.mk>

1
games/xmris/pkg-comment Normal file
View File

@ -0,0 +1 @@
Xmris: a version of a popular video arcade game for the X Window System.

5
games/xmris/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
You control a gnome, who can walk around a garden, along paths already
marked, or create new paths wherever you wish. You also have a ball,
which can be thrown in the direction you're facing, towards the gnome's
feet. Points are scored for collecting cherries, killing monsters and
collecting the prize left when all the monsters have come out of their den.

22
games/xmris/pkg-plist Normal file
View File

@ -0,0 +1,22 @@
@cd /usr/local
@owner bin
@group bin
@mode 444
man/man6/xmris.6
man/man6/xmsit.6
man/man6/xmred.6
@chmod a+x %D/man
@chmod a+x %D/man/man6
@owner games
@mode 4755
bin/xmris
bin/xmsit
@mode 755
bin/xmred
@cd /usr/X386
@mode 444
lib/X11/app-defaults/Xmris
lib/X11/app-defaults/xmris/alphabet.gdn
lib/X11/app-defaults/xmris/digits.gdn
lib/X11/app-defaults/xmris/puzzle.gdn
lib/X11/app-defaults/xmris/xmred.gdn

View File

@ -0,0 +1,20 @@
#!/bin/sh
# X must be running when the scram program creates the bitmaps
xwd -root >/dev/null
if [ $? != 0 ]; then
echo "X needs to be started to build xmris"
exit 1
fi
mv $3/Imakefile $3/Imakefile.orig
echo "LOCAL=/usr/local" >$3/Imakefile || exit 1;
# remove extra space after \ in continuation lines
sed -e 's/\\ $/\\/' <$3/Imakefile.orig >>$3/Imakefile || exit 1
echo "CDEBUGFLAGS=-O2" >>$3/Imakefile || exit 1
echo "MANSUFFIX=6" >>$3/Imakefile || exit 1
exit 0