diff options
author | Matthew Hunt <mph@FreeBSD.org> | 1998-04-24 01:54:53 +0000 |
---|---|---|
committer | Matthew Hunt <mph@FreeBSD.org> | 1998-04-24 01:54:53 +0000 |
commit | 7b810eafd8ec02a3c7eb68d8e1ed3eebe10f5ee8 (patch) | |
tree | bb8e5662508ccb2454769d1cc9ad51e2fea79733 /games | |
parent | I checksummed the wrong release. (diff) |
Import of xjumpjump, a logic game for X11.
PR: 6257
Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Notes
Notes:
svn path=/head/; revision=10655
Diffstat (limited to 'games')
-rw-r--r-- | games/xjumpjump/Makefile | 30 | ||||
-rw-r--r-- | games/xjumpjump/distinfo | 1 | ||||
-rw-r--r-- | games/xjumpjump/files/patch-aa | 35 | ||||
-rw-r--r-- | games/xjumpjump/pkg-comment | 1 | ||||
-rw-r--r-- | games/xjumpjump/pkg-descr | 6 | ||||
-rw-r--r-- | games/xjumpjump/pkg-plist | 4 |
6 files changed, 77 insertions, 0 deletions
diff --git a/games/xjumpjump/Makefile b/games/xjumpjump/Makefile new file mode 100644 index 000000000000..4da23a0a358c --- /dev/null +++ b/games/xjumpjump/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: xjumpjump +# Version required: 0.12 +# Date created: 9 April 1998 +# Whom: Andrey Zakhvatov +# +# $Id$ +# + +DISTNAME= xjumpjump +PKGNAME= xjumpjump-0.12 +CATEGORIES= games x11 +MASTER_SITES= http://makosteszta.sote.hu/linux/jumpjump/ +EXTRACT_SUFX= .tgz + +MAINTAINER= andy@icc.surw.chel.su + +LIB_DEPENDS= xforms\\.0\\.:${PORTSDIR}/x11/xforms + +USE_X11= yes + +pre-build: + @ ${RM} ${WRKSRC}/xjumpjump + +do-install: + @ ${INSTALL_PROGRAM} ${WRKSRC}/xjumpjump ${PREFIX}/bin + @ ${MKDIR} ${PREFIX}/share/xjumpjump + @ ${INSTALL_DATA} ${WRKSRC}/READ.ME ${PREFIX}/share/xjumpjump + @ ${INSTALL_DATA} ${WRKSRC}/OLVASS.EL ${PREFIX}/share/xjumpjump + +.include <bsd.port.mk> diff --git a/games/xjumpjump/distinfo b/games/xjumpjump/distinfo new file mode 100644 index 000000000000..9a7b3bbe7138 --- /dev/null +++ b/games/xjumpjump/distinfo @@ -0,0 +1 @@ +MD5 (xjumpjump.tgz) = 074ad73f35fc4cdff81b14eb9e6dd42f diff --git a/games/xjumpjump/files/patch-aa b/games/xjumpjump/files/patch-aa new file mode 100644 index 000000000000..6ec68f344099 --- /dev/null +++ b/games/xjumpjump/files/patch-aa @@ -0,0 +1,35 @@ +--- Makefile.orig Wed Feb 26 15:21:57 1997 ++++ Makefile Thu Apr 23 21:50:56 1998 +@@ -8,16 +8,16 @@ + # Flags that might be overriden by top makefile + #================================================================= + +-CC = gcc +-CCFLAG = -O2 -Wall -fno-strength-reduce +-LDFLAG = -O ++#CC = gcc ++#CCFLAG = -O2 -Wall -fno-strength-reduce ++#LDFLAG = -O + SYSLIB = -lX11 -lm +-XINCLUDE= -I/usr/X11R6/include +-XLIB = -L/usr/X11R6/lib ++XINCLUDE= -I$(X11BASE)/include ++XLIB = -L$(X11BASE)/lib + +-INSTDIR = /usr/local ++INSTDIR = $(PREFIX) + BINDIR = $(INSTDIR)/bin +-INFODIR = $(INSTDIR)/lib/$(PROG) ++INFODIR = $(INSTDIR)/share/$(PROG) + INSTALL = install + + INFODIR_DEFINE = -DINFO_TXT_FILE=\"$(INFODIR)/\" +@@ -28,7 +28,7 @@ + + CFLAGS = $(CCFLAG) $(XINCLUDE) + LDFLAGS = $(LDFLAG) +-LIBS = -lforms $(SYSLIB) $(XLIB) ++LIBS = -lxforms $(SYSLIB) $(XLIB) + + #================================================================= + diff --git a/games/xjumpjump/pkg-comment b/games/xjumpjump/pkg-comment new file mode 100644 index 000000000000..5a2372ba7a7c --- /dev/null +++ b/games/xjumpjump/pkg-comment @@ -0,0 +1 @@ +logical game for X Window System diff --git a/games/xjumpjump/pkg-descr b/games/xjumpjump/pkg-descr new file mode 100644 index 000000000000..4f9e06ed34c7 --- /dev/null +++ b/games/xjumpjump/pkg-descr @@ -0,0 +1,6 @@ +The game is played on a table which contains 21 fields. The +fields have a value of 0 to 9 at the begining of the game. +The player can jump on the table one field right/left/up/down. +If the player jumps on a field, the value of the field gets +decreased by 1. The player cannot jump on a field with a value +of 0. The purpose of the game is setting all the fields to 0. diff --git a/games/xjumpjump/pkg-plist b/games/xjumpjump/pkg-plist new file mode 100644 index 000000000000..e6fe6ac0f6a4 --- /dev/null +++ b/games/xjumpjump/pkg-plist @@ -0,0 +1,4 @@ +bin/xjumpjump +share/xjumpjump/READ.ME +share/xjumpjump/OLVASS.EL +@dirrm share/xjumpjump |