ports/devel/py-dynrules/Makefile
Marcus von Appen a382bbffeb - Rename PYTHON_FEATURES to USE_PYTHON to comply to USE_PERL5 and to avoid a
conflict in behaviour with the read-only COMPILER_FEATURES knob
- Fix the deprecated USE_PYTHON_BUILD and USE_PYTHON_RUN behaviour, which
  usually should be mutually exclusive, but some ports include both knobs

Phabric:		D581
Recommended by:	danfe@, makc@
Reviewed by:	danfe, wg, antoine
Approved by:	portmgr
With hat:		python@
2014-08-14 17:04:30 +00:00

29 lines
601 B
Makefile

# $FreeBSD$
PORTNAME= dynrules
PORTVERSION= 0.1.0
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= http://cdn.bitbucket.org/marcusva/py-dynrules/downloads/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= mva@FreeBSD.org
COMMENT= Dynamic Scripting for adaptive AI systems
LICENSE= ZLIB
USES= python
USE_PYTHON= autoplist distutils
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${INSTALL} -d ${STAGEDIR}${DOCSDIR}/html
@${TAR} -C ${WRKSRC}/doc/html -cf - . | \
${TAR} -C ${STAGEDIR}${DOCSDIR}/html -xf -
.endif
.include <bsd.port.mk>