blob: 2d336ca5a42e22ff8b68128565e00ac027891fb7 (
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
|
# ex:ts=8
# Ports collection Makefile for: poker-engine
# Date created: Dec 14, 2006
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= poker-engine
PORTVERSION= 1.3.5
CATEGORIES= games
MASTER_SITES= http://download.gna.org/pokersource/sources/
MAINTAINER= ports@FreeBSD.org
COMMENT= A python library that implements poker rules
BUILD_DEPENDS= ${LOCALBASE}/bin/rsync:${PORTSDIR}/net/rsync \
${PYTHON_SITELIBDIR}/pokereval.py:${PORTSDIR}/games/py-poker-eval \
${PYTHON_SITELIBDIR}/libxml2.py:${PORTSDIR}/textproc/py-libxml2 \
${PYTHON_SITELIBDIR}/libxslt.py:${PORTSDIR}/textproc/py-libxslt
RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_GNOME= pkgconfig
USE_PYTHON= 2.4+
USE_GMAKE= yes
GNU_CONFIGURE= yes
MAN8= pokerconfigupgrade.8
post-patch:
@${REINPLACE_CMD} -e \
's|{datadir}/pkgconfig|(prefix)/libdata/pkgconfig|g' \
${WRKSRC}/Makefile.in
test:
@cd ${WRKSRC} && ${GMAKE} check
.include <bsd.port.mk>
|