This is an automated email from the git hooks/post-receive script. apo pushed a commit to branch master in repository vecmath.
commit 7ff7ab9643621da45b0a313965873bd53118613a Author: Petter Reinholdtsen <[email protected]> Date: Sat Sep 20 09:33:18 2008 +0000 First draft on the vecmath package from SUN. --- debian/ant.properties | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++ debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 16 +++++++++++++++ debian/copyright | 7 +++++++ debian/patches/series | 0 debian/rules | 31 +++++++++++++++++++++++++++++ 7 files changed, 115 insertions(+) diff --git a/debian/ant.properties b/debian/ant.properties new file mode 100644 index 0000000..d73613e --- /dev/null +++ b/debian/ant.properties @@ -0,0 +1,54 @@ +############################################################################### +# The host specific properties. The build will inform you of required +# properties. This file must be copied into your home directory (pointed +# to by the Java system property user.home) and the copy modified appropriately. +############################################################################### +# +# java.home.dir is usually inferred from the java.home variable. +# If it appears the build is failing because of an inability to +# find e.g. JAWT or JNI headers, override this to point to the +# root directory of your JDK. +# +# java.home.dir=C:/jdk1.4.2 + +# If you are building on Windows and have the Microsoft Visual C++ +# compilers installed, you can choose an alternate compiler with which +# to build the JOGL native code. Valid strings here are "vc6", "vc7", +# "vc8", and "mingw". +win32.c.compiler=vc6 + +# If you are building on a Mac OS X system supporting +# cross-compilation and want to generate fat (PPC and x86) binaries, +# uncomment the property below +# macosxfat=true + +# +# If you are building the Cg binding (by specifying -Djogl.cg=1 to the +# Ant build) and have installed the Cg SDK in somewhere other than the +# default location, modify the appropriate variable to point to the +# absolute path of the lib directory +# +windows.cg.lib=C:/Program Files/Nvidia Corporation/Cg/lib +x11.cg.lib=/usr/lib + +# +# The required antlr.jar property that is the full path to the antlr.jar +# including the name of the jar +# +# Windows +#antlr.jar=C:/Users/kbr/ANTLR/antlr-2.7.2/antlr.jar +# Linux +# antlr.jar=/home/kbr/antlr-2.7.2/antlr.jar +# Mac OS X +# antlr.jar=/Users/kbr/antlr-2.7.2/antlr.jar +# Solaris +# antlr.jar=/export/kbr/ANTLR/antlr-2.7.2/antlr.jar + +antlr.jar=/usr/share/java/antlrall.jar + +# commented because cg lib is not available under Debian +# jogl.cg=1 + + + +user.properties.file=true diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..47986bb --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +sun-vecmath (1.5.2-1) unstable; urgency=low + + * Initial Release (closes: #) + + -- Petter Reinholdtsen <[email protected]> Fri, 19 Sep 2008 22:19:43 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..311956a --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: sun-vecmath +Section: libs +Priority: optional +Maintainer: Debian Java Maintainers <[email protected]> +Uploaders: Petter Reinholdtsen <[email protected]> +Build-Depends: debhelper (>= 5), cdbs, quilt, default-jdk-builddep | sun-java6-jdk +Standards-Version: 3.8.0 +Homepage: http://java3d.dev.java.net +Vcs-Cvs: :pserver:[email protected]:/cvs +Vcs-Browser: http://bollin.googlecode.com/svn/libjava3d-java/trunk +XS-Autobuild: yes + +Package: libsun-vecmath-java +Architecture: all +Depends: java-gcj-compat | java1-runtime | java2-runtime +Description: Java3D API (java library) diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c86898f --- /dev/null +++ b/debian/copyright @@ -0,0 +1,7 @@ +This package was intially debianized by Petter Reinholdtsen +<[email protected]> on Fri Sep 19 22:12:39 CEST 2008. + +It was downloaded usinv svn from +<:pserver:[email protected]:/cvs> + +Copyright: XXX Fix, track down and document. diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..e69de29 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..9aed74d --- /dev/null +++ b/debian/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/ant.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk + +# Probably better to use /usr/lib/jvm/default-java ? +JAVA_HOME := /usr/lib/jvm/java-6-sun + +DEB_JARS := ant-launcher +DEB_ANT_CLEAN_TARGET := clean +DEB_ANT_BUILD_TARGET := jar +DEB_BUILDDIR := vecmath + +install/libsun-vecmath-java:: + install -m 644 -D vecmath/build/opt/lib/ext/vecmath.jar debian/libsun-vecmath-java/usr/share/java/vecmath-$(DEB_UPSTREAM_VERSION).jar + ln -s vecmath-$(DEB_UPSTREAM_VERSION).jar debian/libsun-vecmath-java/usr/share/java/vecmath.jar + +clean:: + $(RM) -r gluegen/build + +CVS_TAG = rel-1_5_2-fcs +CVS_VER = 1.5.2 + +get-orig-source:: + @ echo "Password for the guest CVS user is an empty password (press [enter])" + cvs -d :pserver:[email protected]:/cvs login + mkdir source-cvs && cd source-cvs && \ + cvs -d :pserver:[email protected]:/cvs co -r $(CVS_TAG) vecmath + tar -zcv --exclude '*/CVS' --exclude .cvsignore -f ../sun-vecmath_$(CVS_VER).orig.tar.gz source-cvs + rm -rf source-cvs -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/vecmath.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

