diff options
author | Will Andrews <will@FreeBSD.org> | 2001-04-07 04:36:47 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-04-07 04:36:47 +0000 |
commit | 42dd5bff2cfad66d47deb7e2341c98381937e6a5 (patch) | |
tree | 727639e33240dfc84e5b5f1f68cde1c5256bd1a4 /games/deal/Makefile | |
parent | e5092d6e1b5c6d1cb69e3b1b1fcf8efc9face152 (diff) |
Add deal 2.1, a calculator for card-draw probabilities.
PR: 26288
Submitted by: Mark Pulford <mark@kyne.com.au>
Notes
Notes:
svn path=/head/; revision=40994
Diffstat (limited to 'games/deal/Makefile')
-rw-r--r-- | games/deal/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/games/deal/Makefile b/games/deal/Makefile new file mode 100644 index 000000000000..b6f9f3dd5f89 --- /dev/null +++ b/games/deal/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: deal +# Date created: Apr 2, 2001 +# Whom: Mark Pulford <mark@kyne.com.au> +# +# $FreeBSD$ +# + +PORTNAME= deal +PORTVERSION= 2.1 +CATEGORIES= games +MASTER_SITES= http://www.tuxedo.org/~esr/deal/ + +MAINTAINER= mark@kyne.com.au + +ALL_TARGET= deal +MAN1= deal.1 + +pre-build: + ${PERL} -pi -e "s@-g@${CFLAGS}@g" ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/deal ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/deal.1 ${PREFIX}/man/man1 + +.include <bsd.port.mk> |