I hear you're pretty much on your own if you want to use Processing under Linux but I hope this is not the case
I am getting some errors from running make.sh - seems like locations of files are not being referenced properly, so I suspect that some of the paths in make.sh could be wrong? Here is my output:
elea:/home/kevin/processing/build/linux# ./make.sh
Setting up directories to build for linux...
Extracting examples...
Extracting reference...
Building processing.core
./make.sh: line 75: ../build/linux/work/jikes: cannot execute binary file
find: bin: No such file or directory
./make.sh: line 78: cd: bin: No such file or directory
Building PDE for JDK 1.4
./make.sh: line 95: ../../build/linux/work/java/bin/java: cannot execute binary file
./make.sh: line 99: ../../build/linux/work/java/bin/java: cannot execute binary file
./make.sh: line 110: ../build/linux/work/jikes: cannot execute binary file
Building serial library...
./make.sh: line 138: ../build/linux/work/jikes: cannot execute binary file
zip error: Nothing to do! (try: zip -r0q ../library/serial.jar . -i processing)
cp: cannot stat `library/serial.jar': No such file or directory
Building net library...
./make.sh: line 150: cd: ../net: No such file or directory
./make.sh: line 152: ../build/linux/work/jikes: No such file or directory
zip error: Nothing to do! (try: zip -r0q ../library/net.jar . -i processing/net/*.class)
cp: cannot stat `library/net.jar': No such file or directory
Building OpenGL library...
./make.sh: line 162: cd: ../opengl: No such file or directory
./make.sh: line 164: ../build/linux/work/jikes: No such file or directory
zip error: Nothing to do! (try: zip -r0q ../library/opengl.jar . -i processing/opengl/*.class)
cp: cannot stat `library/opengl.jar': No such file or directory
Building PDF library...
./make.sh: line 176: cd: ../pdf: No such file or directory
./make.sh: line 178: ../build/linux/work/jikes: No such file or directory
zip error: Nothing to do! (try: zip -r0q ../library/pdf.jar . -i processing/pdf/*.class)
cp: cannot stat `library/pdf.jar': No such file or directory
Building DXF library...
./make.sh: line 190: cd: ../dxf: No such file or directory
./make.sh: line 192: ../build/linux/work/jikes: No such file or directory
zip error: Nothing to do! (try: zip -r0q ../library/dxf.jar . -i processing/dxf/*.class)
cp: cannot stat `library/dxf.jar': No such file or directory
Building XML library...
./make.sh: line 202: cd: ../xml: No such file or directory
./make.sh: line 204: ../build/linux/work/jikes: No such file or directory
zip error: Nothing to do! (try: zip -r0q ../library/xml.jar . -i processing/xml/*.class)
cp: cannot stat `library/xml.jar': No such file or directory
Building Candy SVG library...
./make.sh: line 214: cd: ../candy: No such file or directory
./make.sh: line 216: ../build/linux/work/jikes: No such file or directory
zip error: Nothing to do! (try: zip -r0q ../library/candy.jar . -i processing/candy/*.class)
cp: cannot stat `library/candy.jar': No such file or directory
Done.
____
Looking into the make.sh script it seems that there is an inconsistency in referencing the dirs... occasionally I have the impression that there needs to be an extra "../" in some of the paths but I am not experienced enough in the layout to know. When was the last time this script was checked? Has anyone else built processing on linux themselves?
Thanks!
Kevin