diff options
author | edwin <edwin@FreeBSD.org> | 2008-09-24 13:27:40 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2008-09-24 13:27:40 +0800 |
commit | 248a612edd285de3bd2fbc8424206dcedd9c6346 (patch) | |
tree | 3958fbd302091404e1dccf276ce73d30eefc9136 /graphics | |
parent | c4b77b2650da8727f47467eaf008b1ffe3a302f7 (diff) | |
download | freebsd-ports-gnome-248a612edd285de3bd2fbc8424206dcedd9c6346.tar.gz freebsd-ports-gnome-248a612edd285de3bd2fbc8424206dcedd9c6346.tar.zst freebsd-ports-gnome-248a612edd285de3bd2fbc8424206dcedd9c6346.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')
-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 |