diff options
Diffstat (limited to 'games/crafty-open-large/Makefile')
-rw-r--r-- | games/crafty-open-large/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/games/crafty-open-large/Makefile b/games/crafty-open-large/Makefile new file mode 100644 index 000000000000..69d93341fff2 --- /dev/null +++ b/games/crafty-open-large/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: crafty-open-large +# Version required: 10 September 1996 +# Date created: 1 June 1998 +# Whom: Stefan Eggers <seggers@semyam.dinoco.de> +# +# $Id$ +# + +DISTNAME= crafty-open-large-19960910 +CATEGORIES= games +MASTER_SITES= ftp://ftp.cis.uab.edu/pub/hyatt/common/ +DISTFILES= large1.zip large2.zip large3.zip large4.zip + +MAINTAINER= seggers@semyam.dinoco.de + +BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip \ + crafty:${PORTSDIR}/games/crafty +RUN_DEPENDS= crafty:${PORTSDIR}/games/crafty + +DIST_SUBDIR= crafty +EXTRACT_AFTER_ARGS= +EXTRACT_BEFORE_ARGS= +EXTRACT_CMD= unzip +NO_WRKSUBDIR= yes + +post-extract: + @${ECHO_MSG} '================================================================' + @${ECHO_MSG} 'Ignore warnings about illegal moves. These warnings are normal.' + @${ECHO_MSG} '================================================================' + ${CAT} ${WRKDIR}/Book1.pgn ${WRKDIR}/Book2.pgn ${WRKDIR}/Book3.pgn ${WRKDIR}/Book4.pgn >${WRKDIR}/Book.pgn + ${RM} ${WRKDIR}/Book1.pgn ${WRKDIR}/Book2.pgn ${WRKDIR}/Book3.pgn ${WRKDIR}/Book4.pgn + +do-build: + (cd ${WRKDIR}; crafty <${FILESDIR}/book-building) + +do-install: + ${MKDIR} ${PREFIX}/lib/crafty + ${INSTALL_DATA} ${WRKDIR}/book.bin ${PREFIX}/lib/crafty/large-book.bin + +.include <bsd.port.mk> |