From 5febbf85c8b9500d957611132af8289a0cd8ba7d Mon Sep 17 00:00:00 2001 From: Curtis Rueden Date: Mon, 23 Feb 2015 13:24:25 -0600 Subject: Fix the remote repository URLs This fork uses Git+GitHub, not SVN+java.net. Signed-off-by: Curtis Rueden Signed-off-by: Harvey Harrison --- README-build.html | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'README-build.html') diff --git a/README-build.html b/README-build.html index c1750f9..9734c16 100644 --- a/README-build.html +++ b/README-build.html @@ -12,26 +12,25 @@ the 3D packages style="font-weight: bold;">

To -build the 3D packages, you must checkout the following three -svn +build the 3D packages, you must clone the following three repositories:

These three top-level directories must be named exactly as shown above and they must be sibling directories. To ensure this, run -the svn checkout command for each of the respositories from the same +the git clone command for each of the respositories from the same parent directory. For example:

    cd <j3d-root-dir>
    - svn checkout https://vecmath.dev.java.net/svn/vecmath/branches/dev-1_6 vecmath
    - svn checkout https://j3d-core.dev.java.net/svn/j3d-core/branches/dev-1_6 j3d-core
    - svn checkout https://j3d-core-utils.dev.java.net/svn/j3d-core-utils/branches/dev-1_6 j3d-core-utils + git clone git://github.com/hharrison/vecmath
    + git clone git://github.com/hharrison/java3d-core j3d-core
    + git clone git://github.com/hharrison/java3d-utils j3d-utils

NOTE: you must first build the javax.vecmath package before building the javax.media.j3d and com.sun.j3d.* packages. See the Date: Sun, 19 Apr 2015 20:07:18 -0700 Subject: README: expand the build instructions to include the jogl jars Signed-off-by: Harvey Harrison --- README-build.html | 9 ++++++--- build.xml | 4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) (limited to 'README-build.html') diff --git a/README-build.html b/README-build.html index 9734c16..c12cd7f 100644 --- a/README-build.html +++ b/README-build.html @@ -23,14 +23,17 @@ repositories:

These three top-level directories must be named exactly as shown above and they must be sibling directories. To ensure this, run the git clone command for each of the respositories from the same -parent -directory. For example:
+parent directory. You will also need the gluegen and jogl builds for at least +version 2.3.1. For example:

    cd <j3d-root-dir>
    git clone git://github.com/hharrison/vecmath
    git clone git://github.com/hharrison/java3d-core j3d-core
    - git clone git://github.com/hharrison/java3d-utils j3d-utils + git clone git://github.com/hharrison/java3d-utils j3d-utils
    + mkdir jogl-v2.3.1
    + curl http://jogamp.org/deployment/v2.3.1/jar/gluegen-rt.jar > jogl-v2.3.1/gluegen-rt.jar
    + curl http://jogamp.org/deployment/v2.3.1/jar/jogl-all.jar > jogl-v2.3.1/jogl-all.jar

NOTE: you must first build the javax.vecmath package before building the javax.media.j3d and com.sun.j3d.* packages. See the - - + + -- cgit v1.2.3