diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2008-09-24 05:27:40 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2008-09-24 05:27:40 +0000 |
commit | b4008048752267e2d1e1e4781d58af311ab30d43 (patch) | |
tree | e5bba0b8a2966dc5c2acf4d0984a856ddb4701cb /graphics | |
parent | - Update to 1.2.1 (diff) |
graphics/processing : Serial cannot be used
The graphics/processing have their own serial library at
libexec/processing/libraris/serial/library. But this serial
library use linux version of shared library, so we cannot run
this function.
The processing serial library is same as comms/rxtx, so we must
add RUN_DEPENDS.
PR: ports/127600
Submitted by: Takeshi MUTOH <mutoh@openedu.org>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/processing-devel/Makefile | 2 | ||||
-rw-r--r-- | graphics/processing/Makefile | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/graphics/processing-devel/Makefile b/graphics/processing-devel/Makefile index 2e60cfa036be..b8e514a73f1d 100644 --- a/graphics/processing-devel/Makefile +++ b/graphics/processing-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= processing-devel PORTVERSION= 0142 +PORTREVISION= 1 CATEGORIES= graphics cad java MASTER_SITES= http://processing.org./download/ DISTNAME= ${PORTNAME:S/-devel//}-${PORTVERSION} @@ -16,6 +17,7 @@ MAINTAINER= edwin@mavetju.org COMMENT= Open source programming language and environment for people who want to program images, animation, and interactions RUN_DEPENDS= jikes:${PORTSDIR}/java/jikes + ${JAVA_HOME}/jre/RXTXcomm.jar:${PORTSDIR}/comms/rxtx USE_JAVA= 1.5+ NO_BUILD= yes diff --git a/graphics/processing/Makefile b/graphics/processing/Makefile index 0f5ed3abac1c..b4433e186d99 100644 --- a/graphics/processing/Makefile +++ b/graphics/processing/Makefile @@ -7,6 +7,7 @@ PORTNAME= processing PORTVERSION= 0135 +PORTREVISION= 1 CATEGORIES= graphics cad java MASTER_SITES= http://processing.org./download/ EXTRACT_SUFX= .tgz @@ -14,7 +15,8 @@ EXTRACT_SUFX= .tgz MAINTAINER= edwin@mavetju.org COMMENT= Open source programming language and environment for people who want to program images, animation, and interactions -RUN_DEPENDS= jikes:${PORTSDIR}/java/jikes +RUN_DEPENDS= jikes:${PORTSDIR}/java/jikes \ + ${JAVA_HOME}/jre/RXTXcomm.jar:${PORTSDIR}/comms/rxtx USE_JAVA= 1.5+ NO_BUILD= yes |