aboutsummaryrefslogtreecommitdiffstats
path: root/games/stockfish/Makefile
blob: 5cd342a0e701a89a975d0c37abcad2969eb0040e (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
72
73
74
75
76
77
78
79
80
81
82
83
# New ports collection makefile for:   stockfish
# Date created:     Apr 21 2011
# Whom:         Gautam Mani <execve@gmail.com>
#
# $FreeBSD$
#

PORTNAME=   stockfish
PORTVERSION=    2.2.2
CATEGORIES= games
MASTER_SITES=   http://dl.dropbox.com/u/2116588/sf-archive/:src \
        http://www.execve.net/sf/:src \
        http://f.cl.ly/items/1y0Q3P2n0I2S0g0Y100E/:book \
        http://www.execve.net/sf/:book
DISTNAME=   stockfish-${PORTVERSION:S/.//g}-ja
DISTFILES=  stockfish-${PORTVERSION:S/.//g}-ja.zip:src \
        sf-211-book.zip:book

MAINTAINER= execve@gmail.com
COMMENT=    Open source chess engine

LICENSE=    GPLv3

USE_ZIP=    yes
WRKSRC=     ${WRKDIR}/${DISTNAME}/src
USE_GMAKE=  yes
MYARCH=     ${ARCH}
BOOKDIR=    sf-211-book
PORTDOCS=   Readme.txt polyglot.ini
PORTDATA=   Book.bin

PLIST_FILES=    bin/stockfish
PLIST_DIRSTRY=  share/data/${PORTNAME} \
        share/docs/${PORTNAME}

ALL_TARGET= build ARCH=${MYARCH}

OPTIONS=    POPCNT_PROFILE_BUILD       "Make a Profile build (POPCNT enabled)" Off \
        PROFILE_BUILD "Make a Profile build" Off

TGTBLD=     build

.include <bsd.port.options.mk>

.if defined(WITH_PROFILE_BUILD)
TGTBLD=     profile-build
.endif

.if defined(WITH_POPCNT_PROFILE_BUILD)
.if ${ARCH} != "amd64"
BROKEN=     WITH_POPCNT_PROFILE_BUILD compiles only on amd64
.endif
TGTBLD=     popcnt-profile-build
.endif

.include <bsd.port.pre.mk>

# workaround the ARCH usage in the stockfish Makefile
.if ${MYARCH} == "i386"
ALL_TARGET= ${TGTBLD} ARCH=x86-32
.elif ${MYARCH} == "amd64"
ALL_TARGET= ${TGTBLD} ARCH=x86-64
.endif

.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
BROKEN=     Does not compile on ia64, powerpc, or sparc64
.endif

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/stockfish ${PREFIX}/bin/stockfish

post-install:
.if !defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/Readme.txt ${DOCSDIR}
    ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/polyglot.ini ${DOCSDIR}
.endif
.if !defined(NOPORTDATA)
    ${MKDIR} ${DATADIR}
    ${INSTALL_DATA} ${WRKDIR}/${BOOKDIR}/${PORTDATA} ${DATADIR}
.endif

.include <bsd.port.post.mk>