diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2008-09-24 13:27:40 +0800 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2008-09-24 13:27:40 +0800 |
commit | b4008048752267e2d1e1e4781d58af311ab30d43 (patch) | |
tree | e5bba0b8a2966dc5c2acf4d0984a856ddb4701cb /graphics/processing | |
parent | 0542c95c7682f563109ff041ab7c98db4d6e2d9a (diff) | |
download | freebsd-ports-gnome-b4008048752267e2d1e1e4781d58af311ab30d43.tar.gz freebsd-ports-gnome-b4008048752267e2d1e1e4781d58af311ab30d43.tar.zst freebsd-ports-gnome-b4008048752267e2d1e1e4781d58af311ab30d43.zip |
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/processing')
-rw-r--r-- | graphics/processing/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
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 |