File: 01_extensions.patch

package info (click to toggle)
libglazedlists-java 1.9.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,024 kB
  • ctags: 4,252
  • sloc: java: 22,561; xml: 818; sh: 51; makefile: 5
file content (45 lines) | stat: -rw-r--r-- 2,022 bytes parent folder | download | duplicates (3)
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
Description: Use "compile" instead of "compileall" in order to avoid building 
 the extensions
Origin: vendor
Forwarded: no
Author: <gregoa@debian.org>
Last-Update: 2013-06-23

--- a/build.xml
+++ b/build.xml
@@ -165,6 +165,8 @@
 		<javadoc
 			destdir="${docs.dir}/api" author="true" use="true" windowtitle="Glazed Lists" source="${java.target.version}">
 			<packageset dir="source"><exclude name="**/impl/**"/><exclude name="**/migrationkit/**"/></packageset>
+			<!--
+			we don't build docs for the extensions because they are not built
 			<packageset dir="extensions/calculation/source"><exclude name="**/impl/**"/></packageset>
 			<packageset dir="extensions/swt/source"><exclude name="**/impl/**"/><exclude name="**/migrationkit/**"/></packageset>
 			<packageset dir="extensions/ktable/source"><exclude name="**/impl/**"/></packageset>
@@ -182,6 +184,7 @@
             <link href="http://www.jfree.org/jfreechart/api/javadoc/"/>
             <link href="http://download.java.net/javadesktop/swinglabs/releases/0.8/docs/api/"/>
 			<link href="http://docs.jboss.org/hibernate/core/3.6/javadocs/"/>
+			-->
             <doctitle><![CDATA[<h1>${doctitle}</h1>]]></doctitle>
 			<bottom><![CDATA[<a href="http://www.glazedlists.com" target="_top">Glazed Lists</a>, Copyright &#169; 2003 publicobject.com, O'Dell Engineering.<br>Documentation build by ${user.name} at ${datestamp.dateAndTime}]]></bottom>
 		</javadoc>
@@ -226,7 +229,11 @@
         <property name="bundle.version" value="${implementation.version}"/>
     </target>
 	
+	<!--
+	we just depend on "compile" in order to leave out the extensions
     <target name="jar" depends="compileall,update-version-properties"
+    -->
+    <target name="jar" depends="compile,update-version-properties"
         description="Creates glazedlists jar file (which is also a valid OSGi bundle) containing all UI libraries.">
 
         <mkdir dir="tools"/>
@@ -980,4 +987,4 @@
         </delete>
     </target>
 
-</project>
\ No newline at end of file
+</project>