diff options
author | tg <tg@FreeBSD.org> | 2000-09-22 12:36:08 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2000-09-22 12:36:08 +0000 |
commit | 1b136a6735ff0e29d8f160f368fc2d8f82ad0a90 (patch) | |
tree | e137f3da2d59da4df057d00cc09b8925b80f4294 /games/gomoku.app | |
parent | e343bed80e8b5510a431a6db750a0b50279f3027 (diff) | |
download | FreeBSD-ports-1b136a6735ff0e29d8f160f368fc2d8f82ad0a90.zip FreeBSD-ports-1b136a6735ff0e29d8f160f368fc2d8f82ad0a90.tar.gz |
New ports gomoku.app, a five-in-a-row game for GNUstep.
Diffstat (limited to 'games/gomoku.app')
-rw-r--r-- | games/gomoku.app/Makefile | 45 | ||||
-rw-r--r-- | games/gomoku.app/distinfo | 1 | ||||
-rw-r--r-- | games/gomoku.app/pkg-comment | 1 | ||||
-rw-r--r-- | games/gomoku.app/pkg-descr | 15 | ||||
-rw-r--r-- | games/gomoku.app/pkg-plist | 14 |
5 files changed, 76 insertions, 0 deletions
diff --git a/games/gomoku.app/Makefile b/games/gomoku.app/Makefile new file mode 100644 index 0000000..13e2be7 --- /dev/null +++ b/games/gomoku.app/Makefile @@ -0,0 +1,45 @@ +# New ports collection makefile for: Gomoku +# Date created: 19 Sep 2000 +# Whom: Thomas Gellekum <tg@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= gomoku.app +PORTVERSION= 1.0.2 +CATEGORIES= games +MASTER_SITES= http://www.gnustep.it/nicola/Applications/Gomoku/ +DISTNAME= Gomoku-${PORTVERSION} +EXTRACT_SUFX= .tgz + +MAINTAINER= ports@FreeBSD.org + +BUILD_DEPENDS= ${LOCALBASE}/GNUstep/System/Makefiles/GNUstep.sh:${PORTSDIR}/devel/gnustep +RUN_DEPENDS= ${LOCALBASE}/GNUstep/System/Makefiles/GNUstep.sh:${PORTSDIR}/devel/gnustep + +PREFIX= ${LOCALBASE}/GNUstep +USE_NEWGCC= yes +USE_GMAKE= yes +MAKEFILE= GNUmakefile +ALL_TARGET= +NO_MTREE= yes + +.include <bsd.port.pre.mk> + +.if ${MACHINE_ARCH} == "i386" +GNU_ARCH= ix86 +.else +GNU_ARCH= ${MACHINE_ARCH} +.endif + +PLIST_SUB+= GNU_ARCH=${GNU_ARCH} + +do-build: + @(cd ${WRKSRC}; . ${PREFIX}/System/Makefiles/GNUstep.sh; \ + ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${ALL_TARGET}) + +do-install: + @(cd ${WRKSRC}; . ${PREFIX}/System/Makefiles/GNUstep.sh; \ + ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET}) + +.include <bsd.port.post.mk> diff --git a/games/gomoku.app/distinfo b/games/gomoku.app/distinfo new file mode 100644 index 0000000..baff8b2 --- /dev/null +++ b/games/gomoku.app/distinfo @@ -0,0 +1 @@ +MD5 (Gomoku-1.0.2.tgz) = ae474a4504244b62a518ce085459887a diff --git a/games/gomoku.app/pkg-comment b/games/gomoku.app/pkg-comment new file mode 100644 index 0000000..9b6cd4f --- /dev/null +++ b/games/gomoku.app/pkg-comment @@ -0,0 +1 @@ +An extended TicTacToe game for GNUstep diff --git a/games/gomoku.app/pkg-descr b/games/gomoku.app/pkg-descr new file mode 100644 index 0000000..e973c5a --- /dev/null +++ b/games/gomoku.app/pkg-descr @@ -0,0 +1,15 @@ +Gomoku.app is an extended TicTacToe game for GNUstep. +You win the game if you are able to put 5 of your pieces +in a row, column or diagonal. You loose if the computer +does it before you. You can play the game on boards of different +size; the default size is 8 but 10 is also nice to play. +Pass the size of the board as argument of Gomoku.app. For example, to +play on a 10x10 board, you can start Gomoku with: + +openapp Gomoku.app 10 + +Warning: board size must be >= 8. + +BUGS: Please mail them to <n.pero@mi.flashnet.it> + +WWW: http://www.gnustep.it/nicola/Applications/Gomoku/ diff --git a/games/gomoku.app/pkg-plist b/games/gomoku.app/pkg-plist new file mode 100644 index 0000000..3c2d8cef --- /dev/null +++ b/games/gomoku.app/pkg-plist @@ -0,0 +1,14 @@ +Local/Apps/Gomoku.app/%%GNU_ARCH%%/freebsdelf/gnu-gnu-gnu-xgps/Gomoku +Local/Apps/Gomoku.app/%%GNU_ARCH%%/freebsdelf/gnu-gnu-gnu-xgps/library_paths.openapp +Local/Apps/Gomoku.app/Gomoku +Local/Apps/Gomoku.app/Resources/Info-gnustep.plist +Local/Apps/Gomoku.app/Resources/Gomoku.tiff +Local/Apps/Gomoku.app/Resources/computer.tiff +Local/Apps/Gomoku.app/Resources/human.tiff +Local/Apps/Gomoku.app/Resources/nothing.tiff +@dirrm Local/Apps/Gomoku.app/%%GNU_ARCH%%/freebsdelf/gnu-gnu-gnu-xgps +@dirrm Local/Apps/Gomoku.app/%%GNU_ARCH%%/freebsdelf +@dirrm Local/Apps/Gomoku.app/%%GNU_ARCH%% +@dirrm Local/Apps/Gomoku.app/Resources +@dirrm Local/Apps/Gomoku.app +@unexec rmdir %D/Local/Apps 2>/dev/null || true |