2d-rewriter is fractals generator based on pattern matching and rewriting. The program takes input containing initial object placement and rewriting rules and keeps applying rules to the data field until it reaches an arrangement where no rules can be applied. PR: ports/118906 Submitted by: Igor Serikov <bt@turtle.freedns.us>
26 lines
608 B
Makefile
26 lines
608 B
Makefile
# New ports collection makefile for: 2d-rewriter
|
|
# Date created: 8 December 2007
|
|
# Whom: Igor Serikov <bt@turtle.freedns.us>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= 2d-rewriter
|
|
DISTVERSION= 1.2
|
|
CATEGORIES= science
|
|
MASTER_SITES= http://www.crowdeduniverse.org/distfiles/
|
|
|
|
MAINTAINER= bt@turtle.freedns.us
|
|
COMMENT= Cellular automata simulator
|
|
|
|
MAN1= 2d-rewriter.1
|
|
MANCOMPRESSED= yes
|
|
USE_IMAKE= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTEXAMPLES)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|