1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#! /bin/sh -e
##
## DP: Use the classpath.org javadoc as reference to improve the build time
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
if [ $# -ne 1 ]; then
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1
fi
case "$1" in
-patch)
patch $patch_opts -p0 < $0;;
-unpatch)
patch $patch_opts -p0 -R < $0;;
*)
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1;;
esac
exit 0
@DPATCH@
diff -u -r ../source-tree.orig/plugins/org.eclipse.jdt.doc.isv/jdtOptions source-tree/plugins/org.eclipse.jdt.doc.isv/jdtOptions
--- ../source-tree.orig/plugins/org.eclipse.jdt.doc.isv/jdtOptions 2005-10-21 17:15:47.000000000 +0200
+++ source-tree/plugins/org.eclipse.jdt.doc.isv/jdtOptions 2005-10-21 17:24:53.000000000 +0200
@@ -11,7 +11,7 @@
-bottom "Copyright (c) IBM Corp. and others 2000, 2005. All Rights Reserved."
-group "Java Development Tools Core Plug-in Packages" "org.eclipse.jdt.core:org.eclipse.jdt.core.*"
-group "Java Development Tools UI Plug-in Packages" "org.eclipse.jdt.ui:org.eclipse.jdt.ui.*"
--link http://java.sun.com/j2se/1.4/docs/api
+-linkoffline /usr/share/doc/classpath-doc/api /usr/share/doc/classpath-doc/api
-linkoffline ./../../../org.eclipse.platform.doc.isv/reference/api ../org.eclipse.platform.doc.isv/reference/api
-linkoffline ./../../../org.eclipse.platform.doc.isv/reference/osgi ../org.eclipse.platform.doc.isv/reference/osgi
diff -u -r ../source-tree.orig/plugins/org.eclipse.pde.doc.user/pdeOptions source-tree/plugins/org.eclipse.pde.doc.user/pdeOptions
--- ../source-tree.orig/plugins/org.eclipse.pde.doc.user/pdeOptions 2005-10-21 17:15:47.000000000 +0200
+++ source-tree/plugins/org.eclipse.pde.doc.user/pdeOptions 2005-10-21 17:25:57.000000000 +0200
@@ -9,7 +9,7 @@
-doctitle "Eclipse PDE API Specification"
-header "<b>Eclipse PDE</b><br>Release 3.1"
-bottom "Copyright (c) IBM Corp. and others 2000, 2005. All Rights Reserved."
--link http://java.sun.com/j2se/1.4/docs/api
+-linkoffline /usr/share/doc/classpath-doc/api /usr/share/doc/classpath-doc/api
-linkoffline ./../../../org.eclipse.platform.doc.isv/reference/api ../org.eclipse.platform.doc.isv/reference/api
-linkoffline ./../../../org.eclipse.platform.doc.isv/reference/osgi ../org.eclipse.platform.doc.isv/reference/osgi
-linkoffline ./../../../org.eclipse.jdt.doc.isv/reference/api ../org.eclipse.jdt.doc.isv/reference/api
diff -u -r ../source-tree.orig/plugins/org.eclipse.platform.doc.isv/platformOptions source-tree/plugins/org.eclipse.platform.doc.isv/platformOptions
--- ../source-tree.orig/plugins/org.eclipse.platform.doc.isv/platformOptions 2005-10-21 17:15:46.000000000 +0200
+++ source-tree/plugins/org.eclipse.platform.doc.isv/platformOptions 2005-10-21 17:23:19.000000000 +0200
@@ -10,7 +10,7 @@
-doctitle "Eclipse Platform API Specification"
-header "<b>Eclipse Platform</b><br>Release 3.1"
-bottom '<font size="-1"><p><a href="{@docRoot}/../misc/api-usage-rules.html">Guidelines for using Eclipse APIs</a>.</p><p>Copyright (c) IBM Corp. and others 2000, 2005. All rights reserved.</p></font>'
--link http://java.sun.com/j2se/1.4.2/docs/api
+-linkoffline /usr/share/doc/classpath-doc/api /usr/share/doc/classpath-doc/api
-link ../osgi
org.eclipse.ant.core
|