f79573370a
foo-* to foo-[0-9]*. This is to cause the dependencies to match only the packages whose base package name is "foo", and not those named "foo-bar". A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also change dependency examples in Packages.txt to reflect this.
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2001/09/27 23:18:05 jlam Exp $
|
|
|
|
DISTNAME= medium
|
|
PKGNAME= ${CHESS_ENGINE}-book-${DISTNAME}-20000511
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.cis.uab.edu/pub/hyatt/common/${DISTNAME}/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= jlam@netbsd.org
|
|
COMMENT= chess opening book for EXchess (medium)
|
|
|
|
DEPENDS+= exchess-[0-9]*:../../games/exchess
|
|
|
|
CONFLICTS= ${CHESS_ENGINE}-book-[0-9]*
|
|
|
|
CHESS_ENGINE= exchess
|
|
DIST_SUBDIR= chessbooks
|
|
WRKSRC= ${WRKDIR}
|
|
NO_CONFIGURE= # defined
|
|
|
|
PLIST_SUBST+= CHESS_ENGINE=${CHESS_ENGINE}
|
|
PLIST_SUBST+= BOOK_FILE=${BOOK_FILE}
|
|
|
|
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"
|