blob: 547136d84eb47ad0e20b7bdb5839ee7fc9a0ffbf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# New ports collection makefile for: crafty
# Date created: 31 May 1998
# Whom: Stefan Eggers <seggers@semyam.dinoco.de>
#
# $FreeBSD$
#
PORTNAME= crafty
PORTVERSION= 19.1
CATEGORIES= games
MASTER_SITES= ftp://ftp.cis.uab.edu/pub/hyatt/book/:data \
ftp://ftp.cis.uab.edu/pub/hyatt/documentation/:doc \
ftp://ftp.cis.uab.edu/pub/hyatt/src/:src
DISTFILES= crafty-${PORTVERSION}.zip:src \
start.pgn:data
DIST_SUBDIR= crafty
EXTRACT_ONLY= crafty-${PORTVERSION}.zip
MAINTAINER= seggers@semyam.dinoco.de
COMMENT= A chess programm for playing and analyzing games
USE_ZIP= yes
.if !defined(NOPORTDOCS)
DOCFILES= crafty.doc.ascii crafty.doc.ps
DISTFILES+= ${DOCFILES:S/$/:doc/}
.endif
ALL_TARGET= crafty
OPT= -DCOMPACT_ATTACKS -DUSE_ATTACK_FUNCTIONS
.if ${MACHINE_ARCH} == "i386"
MAKE_ENV+= asm=X86-elf.o
OPT+= -DUSE_ASSEMBLY_A -DUSE_ASSEMBLY_B -DFAST
# XXX Someone with ASM knowledge would have to fix the Sparc.S
.elif ${MACHINE_ARCH} == "sparc64" && defined(CRAFTY_SPARC_ASM)
MAKE_ENV+= asm=Sparc.o
OPT+= -DUSE_ASSEMBLY_A
.else
OPT+= -DFAST
.endif
MAKE_ENV+= opt="${OPT}" target=${OPSYS} CXFLAGS="${CXXFLAGS}"
MAN6= crafty.6
post-extract:
${CP} ${DISTDIR}/${DIST_SUBDIR}/start.pgn ${WRKSRC}/start.pgn
${MV} ${WRKSRC}/Sparc.s ${WRKSRC}/Sparc.S
.ifdef CRAFTY_SPARC_ASM
########################################################
#
# Sparc.S is known to segfault! Use at your own risk or
# turn off the CRAFTY_SPARC_ASM defined
#
########################################################
.endif
post-build:
(cd ${WRKSRC}; ./crafty <${FILESDIR}/books-building)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/crafty ${PREFIX}/bin/crafty
${MKDIR} ${PREFIX}/lib/crafty
${INSTALL_DATA} ${WRKSRC}/books.bin ${PREFIX}/lib/crafty/books.bin
${INSTALL_MAN} ${FILESDIR}/crafty.6 ${MANPREFIX}/man/man6/crafty.6
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
cd ${DISTDIR}/${DIST_SUBDIR} && ${INSTALL_DATA} ${DOCFILES} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|