freebsd-ports/devel/javolution/Makefile
Alex Dupre de073a52fd Javolution is the Java solution for real-time and embedded systems.
Javolution real-time goals are simple: to make your application
faster and more time predictable!

That being accomplished through:
 * High performance and time-deterministic (real-time)
   util / lang / text / io / xml base classes.
 * Context programming in order to achieve true separation of
   concerns (logging, performance, etc).
 * A testing framework addressing not only unit tests but also
   performance and regression tests as well.
 * Straightforward and low-level parallel computing capabilities
   with ConcurrentContext.
 * Struct and Union base classes for direct interfacing with native
   applications (e.g. C/C++).
 * World's fastest and first hard real-time XML
   marshalling/unmarshalling facility.
 * Simple yet flexible configuration management of your application.

WWW: http://javolution.org/
2007-09-22 07:43:42 +00:00

39 lines
1 KiB
Makefile

# Ports collection makefile for: javolution
# Date created: 22 September 2007
# Whom: Alex Dupre <ale@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= javolution
PORTVERSION= 5.2.4
CATEGORIES= devel java
MASTER_SITES= http://javolution.org/
DISTNAME= ${PORTNAME}-${PORTVERSION}-bin
MAINTAINER= ale@FreeBSD.org
COMMENT= A Java solution for real time and embedded systems
USE_ZIP= yes
USE_JAVA= yes
JAVA_VERSION= 1.5+
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/([0-9].[0-9]).[0-9]/\1/}
PORTDOCS= *
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar
do-install:
@${ECHO_MSG} -n ">> Installing JAR file as ${JAVAJARDIR}/${PORTNAME}.jar..."
@${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${JAVAJARDIR}/${PORTNAME}.jar
@${ECHO_MSG} " [DONE]"
.if !defined(NOPORTDOCS)
@${ECHO_MSG} -n ">> Installing documentation..."
@${MKDIR} ${DOCSDIR}
@cd ${WRKSRC} && ${FIND} index.html api css doc \
| ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} > /dev/null 2>&1
@${ECHO_MSG} " [DONE]"
.endif
.include <bsd.port.mk>