freebsd-ports/net/danamics/Makefile
Edwin Groothuis d456fae5c5 new port: net/danamics 1.1
The DaNAMiCS project is to build a Petri Net editor that
	allows for both correctness and performance analysis.  The
	performance analysis will be performed by Steady State
	anaylsis and by simulation.

	DaNAMiCS will also include support for Inhibitor Arcs.  This
	will allow for priorities to be modelled and will increase
	the modelling power of Petri Nets to that of Turing Machines.
	DaNAMiCS will also enable the user to model with Coloured
	Tokens, which greatly reduce the complexity of the resultant
	nets.

	WWW: http://www.cs.uct.ac.za/Research/DNA/DaNAMiCS/

PR:		ports/50108
Submitted by:	Matthew West <mwest@uct.ac.za>
2003-04-18 06:58:36 +00:00

43 lines
916 B
Makefile

# New ports collection makefile for: danamics
# Date created: 18 March 2003
# Whom: mwest@uct.ac.za
#
# $FreeBSD$
#
PORTNAME= danamics
PORTVERSION= 1.1
CATEGORIES= net java
MASTER_SITES= ftp://ftp.cs.uct.ac.za/pub/FreeBSD/distfiles-local/
MAINTAINER= mwest@uct.ac.za
COMMENT= Petri Net editor for correctness and performance analysis
USE_JAVA= 1.1+
NO_BUILD= yes
WRKSRC= ${WRKDIR}/DaNAMiCS
.include <bsd.port.pre.mk>
PLIST= ${WRKDIR}/plist
SORT?= /usr/bin/sort
do-install:
${MKDIR} ${PREFIX}/danamics
${CP} -R ${WRKSRC}/* ${PREFIX}/danamics
cd ${PREFIX}; ${FIND} danamics -type f \
| ${SORT} >${PLIST}
cd ${PREFIX}; ${FIND} danamics -type d \
| ${SORT} -r | ${SED} -e 's|^|@dirrm |' >>${PLIST}
${SED} \
-e s,%%PREFIX%%,${PREFIX},g \
< ${FILESDIR}/danamics.sh > ${PREFIX}/bin/danamics; \
${CHMOD} a+x ${PREFIX}/bin/danamics
${ECHO} bin/danamics >>${PLIST}
.include <bsd.port.post.mk>