diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2004-07-20 17:41:09 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2004-07-20 17:41:09 +0000 |
commit | e7cb4c46d4569e3bc7e32b6a8dd0e209d3d02f4e (patch) | |
tree | 7f22365303bbff4b1552aad757bfeaf594526a52 /java/jomp | |
parent | -Update both www/opera and www/linux-opera to 7.53. (diff) |
. Add a port of jomp:
JOMP is a prototype OpenMP implementation for Java.
PR: 69057
Submitted by: brueffer
Notes
Notes:
svn path=/head/; revision=114303
Diffstat (limited to 'java/jomp')
-rw-r--r-- | java/jomp/Makefile | 35 | ||||
-rw-r--r-- | java/jomp/distinfo | 2 | ||||
-rw-r--r-- | java/jomp/pkg-descr | 3 |
3 files changed, 40 insertions, 0 deletions
diff --git a/java/jomp/Makefile b/java/jomp/Makefile new file mode 100644 index 000000000000..cc937d30fc2b --- /dev/null +++ b/java/jomp/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: jomp +# Date created: Wed Jul 14 14:02:25 CEST 2004 +# Whom: Christian Brueffer <brueffer@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= jomp +PORTVERSION= 1.0b +CATEGORIES= java parallel +MASTER_SITES= http://www.epcc.ed.ac.uk/research/jomp/download/ +DISTNAME= ${PORTNAME}${PORTVERSION} +EXTRACT_SUFX= .jar +EXTRACT_ONLY= + +MAINTAINER= brueffer@FreeBSD.org +COMMENT= Prototype OpenMP implementation for Java + +USE_JAVA= yes +JAVA_VERSION= 1.2+ + +NO_BUILD= yes +NO_WRKSUBDIR= yes + +JARFILE= ${DISTNAME}${EXTRACT_SUFX} + +PLIST_FILES= %%JAVAJARDIR%%/${JARFILE} + +do-install: + @${ECHO} -n ">> Installing JAR as ${JAVAJARDIR}/${JARFILE}..." + @${CP} ${DISTDIR}/${JARFILE} ${JAVAJARDIR}/${JARFILE} + @${CHOWN} ${SHAREOWN}:${SHAREGRP} ${JAVAJARDIR}/${JARFILE} + @${ECHO} " [ DONE ]" + +.include <bsd.port.mk> diff --git a/java/jomp/distinfo b/java/jomp/distinfo new file mode 100644 index 000000000000..c389b22d29e3 --- /dev/null +++ b/java/jomp/distinfo @@ -0,0 +1,2 @@ +MD5 (jomp1.0b.jar) = 4e242dafc649c2a06427211538b71b89 +SIZE (jomp1.0b.jar) = 175028 diff --git a/java/jomp/pkg-descr b/java/jomp/pkg-descr new file mode 100644 index 000000000000..2be74dc3806a --- /dev/null +++ b/java/jomp/pkg-descr @@ -0,0 +1,3 @@ +JOMP is a prototype OpenMP implementation for Java. + +WWW: http://www.epcc.ed.ac.uk/research/jomp/index_1.html |