File: 01_build.patch

package info (click to toggle)
libmetadata-extractor-java 2.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,784 kB
  • ctags: 3,315
  • sloc: java: 19,359; xml: 329; sh: 93; makefile: 16
file content (43 lines) | stat: -rw-r--r-- 2,043 bytes parent folder | download
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
Description: Tweaks to build the project
Author: Emmanuel Bourg <ebourg@apache.org>
--- a/build.xml
+++ b/build.xml
@@ -130,7 +130,6 @@
             <file file="LICENSE-2.0.txt" />
             <file file="README.txt" />
         </zip>
-        <delete file="${bin-jar}" />
     </target>
 
     <target name="dist-source" depends="clean, compile, test" description="generate source distribution">
@@ -151,6 +150,7 @@
         <delete verbose="${verbose}" dir="${javadoc}" />
         <javadoc
             destdir="${javadoc}"
+            encoding="UTF-8"
             defaultexcludes="yes"
             author="true"
             version="true"
@@ -162,12 +162,7 @@
             <!-- be sure to only use single quotes in the CDATA sections below -->
             <!-- TODO include <link rel='shortcut icon' href='https://raw.githubusercontent.com/drewnoakes/metadata-extractor/master/Resources/metadata-extractor.ico' /> -->
             <header><![CDATA[<a href='https://drewnoakes.com/code/exif/' title='Go to the project home page.'><img src='https://raw.githubusercontent.com/drewnoakes/metadata-extractor/master/Resources/metadata-extractor-logo-131x30.png' border="0" alt='Metadata Extractor Logo'></a>]]></header>
-            <bottom><![CDATA[<i>Copyright &#169; 2002-2015 Drew Noakes. All Rights Reserved.</i>
-<script src='http://www.google-analytics.com/urchin.js' type='text/javascript'></script>
-<script type='text/javascript'>
-_uacct = 'UA-936661-1';
-urchinTracker();
-</script>]]></bottom>
+            <bottom><![CDATA[<i>Copyright &#169; 2002-2015 Drew Noakes. All Rights Reserved.</i>]]></bottom>
 
             <!-- Only build Java -->
             <packageset dir="${src}" defaultexcludes="yes">
@@ -181,6 +176,8 @@
                 </fileset>
             </classpath>
 
+            <link href="/usr/share/doc/default-jdk-doc/api"/>
+
         </javadoc>
         <copy file="Resources/javadoc-stylesheet.css" tofile="${javadoc}/stylesheet.css" overwrite="yes" />
     </target>