diff options
author | hq <hq@FreeBSD.org> | 2005-07-15 20:48:11 +0800 |
---|---|---|
committer | hq <hq@FreeBSD.org> | 2005-07-15 20:48:11 +0800 |
commit | 052eb96e456255564ccac8d53e7bb29be00de242 (patch) | |
tree | f1979f80aa16a6fa47d0e66dbcbca4ecc2973d9a /devel | |
parent | ab60b4853c383943a5c460cbd23cf0edcd35f4d4 (diff) | |
download | freebsd-ports-gnome-052eb96e456255564ccac8d53e7bb29be00de242.tar.gz freebsd-ports-gnome-052eb96e456255564ccac8d53e7bb29be00de242.tar.zst freebsd-ports-gnome-052eb96e456255564ccac8d53e7bb29be00de242.zip |
Fujaba Tool Suite 4
The primary topic of the Fujaba Tool Suite project is to provide an easy to
extend UML and Java development platform with the ability to add plug-ins.
* Fujaba Tool Suite combines UML class diagrams and UML behaviour diagrams to
a powerful, easy to use, yet formal system design and specification language.
* Furthermore the Fujaba Tool Suite supports the generation of Java sourcecode
out of the whole design which results in an executable prototype, ideally.
* Moreover the way back is provided, too (to some extend so far), so that Java
sourcecode can be parsed and represented within UML.
WWW: http://wwwcs.uni-paderborn.de/cs/fujaba/index.html
PR: 83471
Submitted by: Gerrit Beine <tux@pinguru.net>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/fujaba/Makefile | 62 | ||||
-rw-r--r-- | devel/fujaba/distinfo | 2 | ||||
-rw-r--r-- | devel/fujaba/files/fujaba.sh.in | 5 | ||||
-rw-r--r-- | devel/fujaba/pkg-descr | 13 |
5 files changed, 83 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index f30c2febbd7b..33714c8be4d7 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -278,6 +278,7 @@ SUBDIR += frink SUBDIR += fsmgenerator SUBDIR += ftnchek + SUBDIR += fujaba SUBDIR += funnelweb SUBDIR += g-wrap SUBDIR += g2c diff --git a/devel/fujaba/Makefile b/devel/fujaba/Makefile new file mode 100644 index 000000000000..a6bd82e9510f --- /dev/null +++ b/devel/fujaba/Makefile @@ -0,0 +1,62 @@ +# Ports collection makefile for: Fujaba +# Date created: July 14, 2005 +# Whom: Gerrit Beine (<tux@pinguru.net>) +# +# $FreeBSD$ +# + +PORTNAME= fujaba +PORTVERSION= 4.3.1 +CATEGORIES= devel java +MASTER_SITES= http://wwwcs.uni-paderborn.de/cs/fujaba/downloads/packages/Fujaba_4/ +DISTNAME= FujabaToolSuite_Developer${PORTVERSION:S/./_/g} + +MAINTAINER= tux@pinguru.net +COMMENT= Another UML CASE tool + +RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper + +USE_ZIP= yes +USE_JAVA= yes +JAVA_VERSION= 1.4+ +USE_REINPLACE= yes +NO_BUILD= yes +WRKSRC= ${WRKDIR}/Fujaba\ Tool\ Suite\ ${PORTVERSION} + +DATAFILES= DTDs Templates libs plugins stylesheets\ + GNULesserGeneralPublicLicense.txt api.zip fujaba.jar src.jar + +PLIST_FILES= bin/fujaba %%DATADIR%%/bin/fujaba.sh + +.if !defined(NOPORTDOCS) +PORTDOCS= * +PLIST_FILES+= %%DATADIR%%/doc +.endif + +SUB_FILES= fujaba.sh +SUB_LIST= LOCALBASE="${LOCALBASE}" DATADIR="${DATADIR}" + +do-install: + ${MKDIR} ${DATADIR}/bin + ${INSTALL_SCRIPT} ${WRKDIR}/fujaba.sh ${DATADIR}/bin/ + ${LN} -s ${DATADIR}/bin/fujaba.sh ${PREFIX}/bin/fujaba + cd ${WRKSRC}/ \ + && ${FIND} ${DATAFILES} -type d -exec ${MKDIR} ${DATADIR}/{} \; \ + && ${FIND} ${DATAFILES} -type f -exec ${INSTALL_DATA} {} ${DATADIR}/{} \; +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${LN} -s ${DOCSDIR} ${DATADIR}/doc + cd ${WRKSRC}/doc/ \ + && ${FIND} . -type d -exec ${MKDIR} ${DOCSDIR}/{} \; \ + && ${FIND} . -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \; +.endif + +post-install: + @${FIND} -s ${DATAFILES:S,^,${WRKSRC}/,} -not -type d \ + | ${SED} -ne 's,^${WRKSRC},${DATADIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST} + @${FIND} -s -d ${DATAFILES:S,^,${WRKSRC}/,} -type d \ + | ${SED} -ne 's,^${WRKSRC},@dirrm ${DATADIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST} + @${ECHO_CMD} "@dirrm ${DATADIR:S,^${PREFIX}/,,}/bin" >> ${TMPPLIST} + @${ECHO_CMD} "@dirrm ${DATADIR:S,^${PREFIX}/,,}" >> ${TMPPLIST} + +.include <bsd.port.mk> diff --git a/devel/fujaba/distinfo b/devel/fujaba/distinfo new file mode 100644 index 000000000000..2fc15c653cac --- /dev/null +++ b/devel/fujaba/distinfo @@ -0,0 +1,2 @@ +MD5 (FujabaToolSuite_Developer4_3_1.zip) = 341f00a327486a2f1e4f69f521b82c20 +SIZE (FujabaToolSuite_Developer4_3_1.zip) = 19421032 diff --git a/devel/fujaba/files/fujaba.sh.in b/devel/fujaba/files/fujaba.sh.in new file mode 100644 index 000000000000..5025f1ea99e1 --- /dev/null +++ b/devel/fujaba/files/fujaba.sh.in @@ -0,0 +1,5 @@ +#!/bin/sh +# +# $FreeBSD$ + +JAVA_VERSION="%%JAVA_VERSION%%" "%%LOCALBASE%%/bin/java" -jar "%%DATADIR%%/fujaba.jar" "$@" diff --git a/devel/fujaba/pkg-descr b/devel/fujaba/pkg-descr new file mode 100644 index 000000000000..bfe6da3cb5dd --- /dev/null +++ b/devel/fujaba/pkg-descr @@ -0,0 +1,13 @@ +Fujaba Tool Suite 4 + +The primary topic of the Fujaba Tool Suite project is to provide an easy to +extend UML and Java development platform with the ability to add plug-ins. + +* Fujaba Tool Suite combines UML class diagrams and UML behaviour diagrams to + a powerful, easy to use, yet formal system design and specification language. +* Furthermore the Fujaba Tool Suite supports the generation of Java sourcecode + out of the whole design which results in an executable prototype, ideally. +* Moreover the way back is provided, too (to some extend so far), so that Java + sourcecode can be parsed and represented within UML. + +WWW: http://wwwcs.uni-paderborn.de/cs/fujaba/index.html |