mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
b5f3c62f3b
Reported by: se
63 lines
2.0 KiB
Makefile
63 lines
2.0 KiB
Makefile
# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= freecell-solver
|
|
PORTVERSION= 4.20.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://fc-solve.shlomifish.org/downloads/fc-solve/
|
|
|
|
MAINTAINER= danilo@FreeBSD.org
|
|
COMMENT= Open source framework for solving Freecell
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= p5-Path-Tiny>=0.076:devel/p5-Path-Tiny \
|
|
p5-Template-Toolkit>=2.26:www/p5-Template-Toolkit \
|
|
gperf:devel/gperf \
|
|
asciidoc:textproc/asciidoc \
|
|
${PYTHON_PKGNAMEPREFIX}random2>=1.0.1:math/py-random2@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}six>=1.11.0:devel/py-six@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}random2>=1.0.1:math/py-random2@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}six>=1.11.0:devel/py-six@${PY_FLAVOR}
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES TCMALLOC
|
|
TCMALLOC_DESC= Use Google's TCMalloc
|
|
|
|
USES= cmake:outsource compiler:c11 perl5 python:3.4+ shebangfix tar:xz
|
|
USE_PERL5= build
|
|
SHEBANG_FILES= board_gen/make_pysol_freecell_board.py \
|
|
board_gen/transpose-freecell-board.py \
|
|
board_gen/find-freecell-deal-index.py \
|
|
board_gen/fc_solve_find_index_s2ints.py \
|
|
patsolve/patsolve/param.py
|
|
CMAKE_ARGS= -DFCS_WITH_TEST_SUITE:BOOL=OFF
|
|
USE_LDCONFIG= yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
TCMALLOC_LIB_DEPENDS= libtcmalloc.so:devel/google-perftools
|
|
TCMALLOC_CMAKE_OFF= -DFCS_AVOID_TCMALLOC:BOOL=ON
|
|
|
|
post-patch:
|
|
.for f in Shlomif_Common.cmake
|
|
@${REINPLACE_CMD} -e 's|share/man|man|' ${WRKSRC}/cmake/${f}
|
|
.endfor
|
|
.for f in children-playing-ball.sh sentient-pearls.sh
|
|
@${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' ${WRKSRC}/Presets/presets/${f}
|
|
.endfor
|
|
@${REINPLACE_CMD} -e 's|COMMAND "python3"|COMMAND "${PYTHON_VERSION}"|' ${WRKSRC}/CMakeLists.txt
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in AUTHORS.txt HACKING.txt INSTALL.txt NEWS.txt README.txt \
|
|
README.win32.txt TODO.txt USAGE.txt
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
.for f in ctypes-test.py
|
|
${INSTALL_DATA} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|