CVS gjdoc/debian

Arnaud Vandyck avdyk@haydn.debian.org
Thu Nov 18 14:51:07 2004


Update of /cvsroot/pkg-java/gjdoc/debian
In directory haydn:/tmp/cvs-serv28299

Modified Files:
	changelog control gjdoc.postinst 
Added Files:
	README.Debian 
Log Message:
debian/README.Debian: added to explain how to override CLASSPATH and virtual machine; gjdoc: modify the script to check for an existing JAVA_HOME, JAVACMD and CLASSPATH

--- /cvsroot/pkg-java/gjdoc/debian/changelog	2004/01/17 04:08:13	1.3
+++ /cvsroot/pkg-java/gjdoc/debian/changelog	2004/11/18 21:50:46	1.4
@@ -1,3 +1,43 @@
+gjdoc (0.6.1-13) unstable; urgency=low
+
+  * debian/README.Debian: added to explain how to override CLASSPATH and
+    virtual machine
+  * gjdoc: modify the script to check for an existing JAVA_HOME, JAVACMD
+    and CLASSPATH.
+
+ -- Arnaud Vandyck <avdyk@debian.org>  Thu, 18 Nov 2004 22:42:24 +0100
+
+gjdoc (0.6.1-12) unstable; urgency=low
+
+  * support saxon XSLT processor.
+
+ -- Takashi Okamoto <tora@debian.org>  Sun, 25 Jul 2004 11:41:32 +0900
+
+gjdoc (0.6.1-11) unstable; urgency=low
+
+  * javadoc alternative solved, applyed postinst patch, thanks to Loic
+    Minier. (closes: #252309)
+  * dh_javadoc: removed the generated gjdoc_rawcomment.cache file.
+
+ -- Arnaud Vandyck <avdyk@debian.org>  Tue, 13 Jul 2004 22:53:15 +0200
+
+gjdoc (0.6.1-10) unstable; urgency=low
+
+  * problem with the @param tag when html is used as the first word of the
+    description
+
+ -- Arnaud Vandyck <avdyk@debian.org>  Wed,  5 May 2004 13:01:00 +0200
+
+gjdoc (0.6.1-9) unstable; urgency=low
+
+  * added Takashi Okamoto <tora@debian.org> and I as uploaders
+  * removed libxalan2-java as a dependency, gnujaxp is enough, so gjdoc
+    can go back to main!
+  * modified the gjdoc script to work only with gnujaxp
+  * gjdoc only works with kaffe at the moment
+
+ -- Arnaud Vandyck <avdyk@debian.org>  Fri, 16 Apr 2004 21:19:06 +0200
+
 gjdoc (0.6.1-8) unstable; urgency=low
 
   * Use encoding utf-8 instead of iso-8859-1 for I18N.
--- /cvsroot/pkg-java/gjdoc/debian/control	2003/12/17 09:23:05	1.2
+++ /cvsroot/pkg-java/gjdoc/debian/control	2004/11/18 21:50:47	1.3
@@ -1,14 +1,14 @@
 Source: gjdoc
-Section: contrib/devel
+Section: devel
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
-Uploaders: Mark Howard <mh@debian.org>
-Build-Depends-Indep: debhelper (>> 4), fastjar, jikes-classpath, libgnujaxp-java
+Uploaders: Mark Howard <mh@debian.org>, Takashi Okamoto <tora@debian.org>, Arnaud Vandyck <avdyk@debian.org>
+Build-Depends-Indep: debhelper (>> 4), fastjar, jikes-classpath, libgnujaxp-java (>= 0.0.cvs20040416)
 Standards-Version: 3.5.10
 
 Package: gjdoc
 Architecture: all
-Depends: debhelper (>>4), sablevm | java2-runtime | java1-runtime, libgnujaxp-java, libxalan2-java
+Depends: debhelper (>>4), kaffe (>= 1.1.4), libgnujaxp-java (>= 0.0.cvs20040416)
 Conflicts: gjdoc-native
 Replaces: gjdoc-native
 Description: Free drop-in replacement for Sun's "javadoc" written in java
--- /cvsroot/pkg-java/gjdoc/debian/gjdoc.postinst	2003/09/11 19:36:47	1.1.1.1
+++ /cvsroot/pkg-java/gjdoc/debian/gjdoc.postinst	2004/11/18 21:50:47	1.2
@@ -8,8 +8,11 @@
         update-alternatives \
             --install /usr/bin/javadoc javadoc /usr/bin/gjdoc 350 \
             --slave $man/javadoc.1.gz javadoc.1.gz $man/gjdoc.1.gz
-	if ("dpkg" "--compare-versions" "${2} " "<<" "0.6.1"); then
-		update-alternatives --remove javadoc /usr/bin/gjdoc;
+	# is this a first install?
+	if [ "${2}" ]; then
+		if ("dpkg" "--compare-versions" "${2} " "<<" "0.6.1"); then
+			update-alternatives --remove javadoc /usr/bin/gjdoc;
+		fi
 	fi
 
     ;;