mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
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/
This commit is contained in:
parent
93e7f89ef3
commit
de073a52fd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=199889
@ -493,6 +493,7 @@
|
||||
SUBDIR += jakelib2
|
||||
SUBDIR += jam
|
||||
SUBDIR += java-util-concurrent
|
||||
SUBDIR += javolution
|
||||
SUBDIR += jclassinfo
|
||||
SUBDIR += jcmdline
|
||||
SUBDIR += jep
|
||||
|
39
devel/javolution/Makefile
Normal file
39
devel/javolution/Makefile
Normal file
@ -0,0 +1,39 @@
|
||||
# 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>
|
3
devel/javolution/distinfo
Normal file
3
devel/javolution/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
MD5 (javolution-5.2.4-bin.zip) = 53b085ac010bf86355244c6501ca0ed7
|
||||
SHA256 (javolution-5.2.4-bin.zip) = 3cba0d4e375a2d373ef5b1b7781e1331b4a5be4b8a26252c778d0acb6ddd57b7
|
||||
SIZE (javolution-5.2.4-bin.zip) = 1016007
|
23
devel/javolution/pkg-descr
Normal file
23
devel/javolution/pkg-descr
Normal file
@ -0,0 +1,23 @@
|
||||
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/
|
||||
|
||||
- Alex Dupre
|
||||
ale@FreeBSD.org
|
Loading…
Reference in New Issue
Block a user