diff options
author | jedgar <jedgar@FreeBSD.org> | 2002-02-22 10:59:32 +0800 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2002-02-22 10:59:32 +0800 |
commit | d1d17b7bafe91a432d787262c8d5e18f67938b44 (patch) | |
tree | 5d6e049142b39d0eab6746ffbea2c03b97978b9f /games | |
parent | d3535ca6797252fdd415b1dcd505b120b9f8b4a8 (diff) | |
download | freebsd-ports-gnome-d1d17b7bafe91a432d787262c8d5e18f67938b44.tar.gz freebsd-ports-gnome-d1d17b7bafe91a432d787262c8d5e18f67938b44.tar.zst freebsd-ports-gnome-d1d17b7bafe91a432d787262c8d5e18f67938b44.zip |
Add eights, a simple text-based games of eights
(and my brother's first port :)
Submitted by: Bob Bomar <bob@fly.homeunix.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/Makefile | 1 | ||||
-rw-r--r-- | games/eights/Makefile | 24 | ||||
-rw-r--r-- | games/eights/distinfo | 1 | ||||
-rw-r--r-- | games/eights/pkg-comment | 1 | ||||
-rw-r--r-- | games/eights/pkg-descr | 7 | ||||
-rw-r--r-- | games/eights/pkg-plist | 1 |
6 files changed, 35 insertions, 0 deletions
diff --git a/games/Makefile b/games/Makefile index 22e7a04b677c..e7bc5ffb2d74 100644 --- a/games/Makefile +++ b/games/Makefile @@ -70,6 +70,7 @@ SUBDIR += dungeon SUBDIR += eboard SUBDIR += editss + SUBDIR += eights SUBDIR += empire SUBDIR += falconseye SUBDIR += farblazer diff --git a/games/eights/Makefile b/games/eights/Makefile new file mode 100644 index 000000000000..b35bc7d6b7df --- /dev/null +++ b/games/eights/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: eights +# Date created: 21 Febuary 2002 +# Whom: Bob Bomar <bob@fly.homeunix.org> +# +# $FreeBSD$ +# + +PORTNAME= eights +PORTVERSION= 1.0 +CATEGORIES= games +MASTER_SITES= http://dxkelly.freeshell.org/ +DISTNAME= ${PORTNAME} + +MAINTAINER= bob@fly.homeunix.org + +WRKSRC= ${WRKDIR}/${PORTNAME} + +do-build: + @cd ${WRKSRC} && ${CC} ${CFLAGS} ${PORTNAME}.c -o ${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/games/eights/distinfo b/games/eights/distinfo new file mode 100644 index 000000000000..0e9098174b81 --- /dev/null +++ b/games/eights/distinfo @@ -0,0 +1 @@ +MD5 (eights.tar.gz) = 66a2158343556d0adc26b7b038dcb58d diff --git a/games/eights/pkg-comment b/games/eights/pkg-comment new file mode 100644 index 000000000000..06ae2fdf83f0 --- /dev/null +++ b/games/eights/pkg-comment @@ -0,0 +1 @@ +Text based card game, the objective is to get rid of all your cards diff --git a/games/eights/pkg-descr b/games/eights/pkg-descr new file mode 100644 index 000000000000..6e1a22ad494e --- /dev/null +++ b/games/eights/pkg-descr @@ -0,0 +1,7 @@ +Eights is a text based card game. The objective is to get rid of all your cards +before the computer does. You must play the same number or suit as what is +discarded. Eights are wild and are worth 50 points. You want the least amount +of points. + +- Bob Bomar +<bob@fly.homeunix.org> diff --git a/games/eights/pkg-plist b/games/eights/pkg-plist new file mode 100644 index 000000000000..cb40e42ffd88 --- /dev/null +++ b/games/eights/pkg-plist @@ -0,0 +1 @@ +bin/eights |