CVS java-package/debian

Barry Hawkins barryh-guest@haydn.debian.org
Mon Mar 14 01:59:02 2005


Update of /cvsroot/pkg-java/java-package/debian
In directory haydn:/tmp/cvs-serv14564/debian

Modified Files:
	.cvsignore README.Debian changelog control rules 
Log Message:
Enabled IBM JRE/JDK support.
Enabled Blackdown JRE/JDK support for PowerPC.


--- /cvsroot/pkg-java/java-package/debian/.cvsignore	2005/01/24 23:53:55	1.1
+++ /cvsroot/pkg-java/java-package/debian/.cvsignore	2005/03/14 08:58:37	1.2
@@ -1,2 +1,4 @@
 files
 java-package
+make-jpkg.*
+SUPPORTED
--- /cvsroot/pkg-java/java-package/debian/README.Debian	2005/01/24 23:33:44	1.2
+++ /cvsroot/pkg-java/java-package/debian/README.Debian	2005/03/14 08:58:37	1.3
@@ -24,9 +24,24 @@
    RPM!)
 
  * Blackdown Java-Linux (http://www.blackdown.org)
-   - The J2SE Development Kit (JDK); version 1.3 to 1.4.2; i586, amd64 and
-     sparc are supported
+   - The J2SE Development Kit (JDK); version 1.3 to 1.4.2; i586, amd64, 
+     powerpc (1.3.1 only), and sparc are supported
    - The J2SE Runtime Environment (JRE), ditto
    - Documentation packages are not yet supported
+   - Some Blackdown mirrors will deliver a file whose permissions are
+     not correctly set.  Confirm that permission on the downloaded .bin
+     file are 755 before running make-jpkg against them.
 
- -- Jeroen van Wolffelaar <jeroen@wolffelaar.nl>  Mon, 03 Jan 2005 21:18:49 +0100
+ * IBM (http://www.ibm.com/developerworks/java/jdk/linux140/)
+   - The J2SE Development Kit (JDK), version 1.3.1 to 1.4.2, tested on 
+     x86 and powerpc; other available architectures should work as well
+   - The J2SE Runtime Environment (JRE), ditto
+   - Documentation packages are not yet supported
+   - Users of PowerPC architecture must be aware that the 
+     JITC_PROCESSOR_TYPE environment variable must be properly set in 
+     order for JIT to work as expected.  The most common setting for 
+     is the one used for Apple and Pegasos hardware, a value of "6".
+     Please see the following resource for details:
+     http://www-128.ibm.com/developerworks/linux/library/l-pow-apple.html
+
+ -- Barry Hawkins <barry@alltc.com>  Mon, 14 Mar 2005 03:17:43 -0500
--- /cvsroot/pkg-java/java-package/debian/changelog	2005/02/08 16:40:54	1.27
+++ /cvsroot/pkg-java/java-package/debian/changelog	2005/03/14 08:58:37	1.28
@@ -1,3 +1,14 @@
+java-package (0.21) unstable; urgency=low
+
+  * Enable support for IBM JDKs and JREs for x86, amd64, powerpc, 
+    powerpc64, and s390 architectures, based upon a patch by Rico 
+    Schiekel (Closes: #264137)
+  * Enable suppport for Blackdown 1.3.1 JDK and JRE for PowerPC 
+    architecture.
+  * Update documentation and to reflect current supported JDKs and JREs
+
+ -- Barry Hawkins <barry@alltc.com>  Mon, 14 Mar 2005 03:18:39 -0500
+
 java-package (0.20) unstable; urgency=low
 
   * Make the postinst & rm for generated packages #!/bin/bash, as we use
--- /cvsroot/pkg-java/java-package/debian/control	2005/02/08 14:13:51	1.8
+++ /cvsroot/pkg-java/java-package/debian/control	2005/03/14 08:58:37	1.9
@@ -2,7 +2,7 @@
 Section: contrib/misc
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
-Uploaders: Takashi Okamoto <tora@debian.org>, Carlos Laviola <claviola@debian.org>, Arnaud Vandyck <avdyk@debian.org>, Jeroen van Wolffelaar <jeroen@wolffelaar.nl>
+Uploaders: Takashi Okamoto <tora@debian.org>, Carlos Laviola <claviola@debian.org>, Arnaud Vandyck <avdyk@debian.org>, Jeroen van Wolffelaar <jeroen@wolffelaar.nl>, Barry Hawkins <barry@alltc.com>
 Build-Depends: debhelper (>= 4.0.0)
 Standards-Version: 3.6.1
 
@@ -13,6 +13,7 @@
  This package provides the capability to create a debian package from
  a Java(TM) 2 distribution by just running make-jpkg <filename>.
  .
- This program works currently with the latest Java(TM) 2 REs and SDKs
- (1.4 and 1.5) Standard Edition, from Sun Microsystems(TM) and
- Blackdown Java-Linux.
+ This program works currently with the following Java(TM) 2 REs and SDKs.
+ Sun Microsystems(TM)  1.4 and 1.5 Standard Edition
+ IBM(TM) 1.3 and 1.4 Standard Edition
+ Blackdown Java-Linux 1.3 and 1.4 Standard Edition
--- /cvsroot/pkg-java/java-package/debian/rules	2005/01/24 23:54:51	1.5
+++ /cvsroot/pkg-java/java-package/debian/rules	2005/03/14 08:58:37	1.6
@@ -1,6 +1,9 @@
 #!/usr/bin/make -f
 # debian/rules for java-package
 
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
 # Extract source package version number from changelog
 VERSION := $(shell head -n 1 $(CURDIR)/debian/changelog | sed 's/.*(//;s/).*//')
 B := $(CURDIR)/debian/java-package
@@ -8,6 +11,7 @@
 build: build-stamp 
 
 build-stamp:
+	dh_testdir
 	# Add here commands to compile the indep part of the package.
 	sed s/@VERSION@/$(VERSION)/ make-jpkg > make-jpkg.out
 	touch $@
@@ -26,7 +30,7 @@
 
 	install -m 755 make-jpkg.out $(B)/usr/bin/make-jpkg
 	cp lib/*.sh $(B)/usr/share/java-package/
-	for dir in $(wildcard blackdown-j2*) $(wildcard sun-j2*); do \
+	for dir in $(wildcard blackdown-j2*) $(wildcard sun-j2*) $(wildcard ibm-j2*); do \
 		cp -a $$dir $(B)/usr/share/java-package/; \
 	done
 	find $(B) -type d -name CVS | xargs -r rm -r
@@ -49,7 +53,7 @@
 	dh_installdocs
 	dh_installman make-jpkg.1
 	dh_link
-	dh_strip
+#	dh_strip
 	dh_compress 
 	dh_fixperms
 	dh_makeshlibs