pkgsrc/games/exchess-book-medium/Makefile
jlam 9c8b5ede43 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-03-04 21:28:51 +00:00

49 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.13 2006/03/04 21:29:41 jlam Exp $
DISTNAME= medium
PKGNAME= ${CHESS_ENGINE}-book-${DISTNAME}-20000511
PKGREVISION= 1
CATEGORIES= games
MASTER_SITES= ftp://ftp.cis.uab.edu/pub/hyatt/common/${DISTNAME}/
EXTRACT_SUFX= .zip
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Chess opening book for EXchess (medium)
DEPENDS+= exchess-[0-9]*:../../games/exchess
CONFLICTS= ${CHESS_ENGINE}-book-[0-9]*
WRKSRC= ${WRKDIR}
CHESS_ENGINE= exchess
DIST_SUBDIR= chessbooks
NO_CONFIGURE= yes
PLIST_SUBST+= CHESS_ENGINE=${CHESS_ENGINE:Q}
PLIST_SUBST+= BOOK_FILE=${BOOK_FILE:Q}
BOOKDIR= ${PREFIX}/lib/${CHESS_ENGINE}
PGN_FILE= book.txt
BOOK_FILE= open_bk.dat
CMDFILE= ${WRKSRC}/exchess.input
do-build:
@${ECHO} ""
@${ECHO} " ** Get yourself a shower and a big mug of coffee,"
@${ECHO} " ** this will take _very_ long!"
@${ECHO} ""
${RM} -f ${CMDFILE}
${ECHO} "build" > ${CMDFILE}
${ECHO} "${PGN_FILE}" >> ${CMDFILE}
${ECHO} "60" >> ${CMDFILE}
${ECHO} "3" >> ${CMDFILE}
${ECHO} "${BOOK_FILE}" >> ${CMDFILE}
${ECHO} "quit" >> ${CMDFILE}
cd ${WRKSRC} && exchess < ${CMDFILE}
do-install:
${INSTALL_DATA_DIR} ${BOOKDIR}
${INSTALL_DATA} ${WRKSRC}/${BOOK_FILE} ${BOOKDIR}
.include "../../mk/bsd.pkg.mk"