mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
87c569601b
- Convert to staging PR: 189786 Submitted by: iserikov@acm.org (maintainer)
26 lines
520 B
Makefile
26 lines
520 B
Makefile
# Created by: Igor Serikov <iserikov@acm.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= 2d-rewriter
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= science
|
|
MASTER_SITES= http://www.crowdeduniverse.org/distfiles/
|
|
|
|
MAINTAINER= iserikov@acm.org
|
|
COMMENT= Cellular automata simulator
|
|
|
|
USES= imake
|
|
USE_XORG= x11 xext
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|