1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00

add fsmgenerator 1.0b7

Finite State Machine generating software
This commit is contained in:
Ying-Chieh Liao 2004-01-05 08:26:43 +00:00
parent a98e8965c6
commit 5743a97e4d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=97336
5 changed files with 40 additions and 0 deletions

View File

@ -226,6 +226,7 @@
SUBDIR += freelibiberty
SUBDIR += freescope
SUBDIR += frink
SUBDIR += fsmgenerator
SUBDIR += ftnchek
SUBDIR += funnelweb
SUBDIR += g-wrap

View File

@ -0,0 +1,27 @@
# ex:ts=8
# Ports collection makefile for: FSMGenerator
# Date created: Jan 5, 2004
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= fsmgenerator
PORTVERSION= 1.0.b.7
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= FSMGenerator${PORTVERSION:S/.//g}
MAINTAINER= ports@FreeBSD.org
COMMENT= Finite State Machine generating software
USE_REINPLACE= yes
USE_GMAKE= yes
post-patch:
@${FIND} ${WRKSRC} -name "Makefile" | ${XARGS} \
${REINPLACE_CMD} -e "s|make$$|${GMAKE}|" \
-e "s|^CFLAGS[ ]+=|CFLAGS +=|"
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (FSMGenerator10b7.tar.gz) = 121a7ad50004e5fb858e76bc51efb737

View File

@ -0,0 +1,10 @@
Similarly to the Finite Automata model in Computer Science, Finite State
Machine model finds its widest use in Software Engineering. As a software
development design pattern, FSM occurs in many software solutions, but unlike
most of its pattern counterparts, FSM requires substantial time for manual
implementation. But the really devastating part of manual implementation is
usually in its increasing cost of change and maintenance. All of the above
considerations eventually converge to a necessity of automatic, fault-free FSM
generation.
WWW: http://fsmgenerator.sourceforge.net/

View File

@ -0,0 +1 @@
bin/fsmgenerator