1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/devel/fujaba/Makefile
Herve Quiroz 5a0f39ebd8 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>
2005-07-15 12:48:11 +00:00

63 lines
1.8 KiB
Makefile

# 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>