]> git.sven.stormbind.net Git - sven/java-package.git/blob - make-jpkg
Fixed the dh_shlibdeps error when generating a documentation package (Closes: #753071)
[sven/java-package.git] / make-jpkg
1 #! /bin/bash -e
2
3 shopt -s nullglob
4
5 ### global variables
6
7 # version of this package
8 version="@VERSION@"
9
10 working_dir="$( pwd )"
11 program_name="$( basename "$0" )"
12 program_dir="$( cd "$( dirname "$( type -p "$0" )" )" ; pwd )"
13
14 lib_dir="/usr/share/java-package"
15 [ "$J2SE_PACKAGE_LIBDIR" ] && lib_dir="$J2SE_PACKAGE_LIBDIR"
16
17 # If a default has been set for either of the
18 # environment variables, use it; otherwise,
19 # default to the name and email used by the
20 # Debian Java Maintainers project.
21 if [ -z "$J2SE_PACKAGE_FULL_NAME" ]; then
22     maintainer_name="Debian Java Maintainers"
23 else
24     maintainer_name="$J2SE_PACKAGE_FULL_NAME"
25 fi
26
27 if [ -z "$J2SE_PACKAGE_EMAIL" ]; then
28     maintainer_email="pkg-java-maintainers@lists.alioth.debian.org"
29 else
30     maintainer_email="$J2SE_PACKAGE_EMAIL"
31 fi
32
33 genchanges=""
34 build_source=""
35
36 ### check for run in fakeroot
37
38 # are we running as fakeroot
39 if ! dh_testroot >/dev/null 2>&1; then
40     if [ -n "$FAKEROOTKEY" ]; then
41         echo "Internal error, fakeroot seems to fail faking root" >&2
42         exit 1
43     fi
44     exec fakeroot "$0" "$@"
45 fi
46
47 # check whether I'm real root, and bail out if so... ugly, but needed
48 if touch /lib/.test 2>/dev/null; then
49     rm -f /lib/.test
50     echo "You are real root -- unfortunately, some Java distributions have" >&2
51     echo "install scripts that directly manipulate /etc, and may cause some" >&2
52     echo "inconsistencies on your system. Instead, you should become a" >&2
53     echo "non-root user and run:" >&2
54     echo >&2
55     echo "fakeroot make-jpkg $@" >&2
56     echo >&2
57     echo "which will allow no damage to be done to your system files and" >&2
58     echo "still permit the Java distribution to successfully extract." >&2
59     echo >&2
60     echo "Aborting." >&2
61     exit 1
62 fi
63
64
65 ### Parse options
66
67 print_usage() {
68     cat << EOF
69 Usage: $program_name [OPTION]... FILE
70
71 $program_name builds a Debian package from the given Java binary distribution FILE
72
73 Supported java binary distributions currently include:
74   * Oracle (http://www.oracle.com/technetwork/java/javase/downloads) :
75     - The Java Development Kit (JDK), version 6, 7 and 8
76     - The Java Runtime Environment (JRE), version 6, 7 and 8
77     - The Java API Javadoc, version 6, 7 and 8
78   (Choose tar.gz archives or self-extracting archives, do _not_ choose the RPM!)
79
80 The following options are recognized:
81
82   --full-name NAME     full name used in the maintainer field of the package
83   --email EMAIL        email address used in the maintainer field of the package
84   --changes            create a .changes file
85   --revision           add debian revision
86   --source             build a source package instead of a binary deb package
87   --with-system-certs  integrate with the system's keystore
88
89   --help               display this help and exit
90   --version            output version information and exit
91
92 EOF
93 }
94
95 unrecognized_option() {
96     cat >&2 << EOF
97 $program_name: unrecognized option \`$1'
98 Try \`$program_name --help' for more information.
99 EOF
100     exit 1
101 }
102
103 missing_argument() {
104     cat >&2 << EOF
105 $program_name: missing argument for option \`$1'
106 Try \`$program_name --help' for more information.
107 EOF
108     exit 1
109 }
110
111 # options
112 while [[ $# -gt 0 && "x$1" == x--* ]]; do
113     if [[ "x$1" == x--version ]]; then
114     echo "make-jpkg $version"
115     exit 0
116     elif [[ "x$1" == x--help ]]; then
117     print_usage
118     exit 0
119     elif [[ "x$1" == x--full-name ]]; then
120     [ $# -le 1 ] && missing_argument "$1"
121     shift
122     maintainer_name="$1"
123     elif [[ "x$1" == x--email ]]; then
124     [ $# -le 1 ] && missing_argument "$1"
125     shift
126     maintainer_email="$1"
127     elif [[ "x$1" == x--revision ]]; then
128     [ $# -le 1 ] && missing_argument "$1"
129     shift
130     revision="-${1}"
131     elif [[ "x$1" == x--changes ]]; then
132     genchanges="true"
133     elif [[ "x$1" == x--source ]]; then
134     build_source="true"
135     elif [[ "x$1" == x--with-system-certs ]]; then
136     create_cert_softlinks="true"
137     else
138     unrecognized_option "$1"
139     fi
140     shift
141 done
142
143 # last argument
144 if [[ $# -ne 1 ]]; then
145     cat >&2 << EOF
146 $program_name: missing pathname
147 Try \`$program_name --help' for more information.
148 EOF
149     exit 1
150 fi
151 archive="$1"
152
153 if [[ ! -e "$archive" ]]; then
154     echo "Error: The file \"$archive\" does not exist."
155     exit 1
156 elif [[ ! -r "$archive" ]]; then
157     echo "Error: The file \"$archive\" is not readable."
158     exit 1
159 fi
160
161 archive_name="$( basename "$archive" )"
162 archive_dir="$( cd "$( dirname "$archive" )" ; pwd )"
163 archive_path="$archive_dir/$archive_name"
164
165
166 # error handling
167
168 success=
169 failed=
170 tmp=
171
172 # function is called when script terminates
173 on_exit() {
174     lastcmd="$_"
175     if [[ -z "$success" && -z "$failed" ]]; then
176     cat >&2 << EOF
177
178 Aborted ($lastcmd).
179
180 EOF
181     fi
182     # remove temporary directory
183     if [ -n "$tmp" -a -d "$tmp" ]; then
184     echo -n "Removing temporary directory: "
185     rm -rf "$tmp"
186     echo "done"
187     fi
188 }
189 trap on_exit EXIT
190
191 # print error message and terminate
192 error_exit() {
193     cat >&2 << EOF
194
195 Aborted.
196
197 EOF
198     failed=true
199     exit 1
200 }
201
202
203
204 # The environment variable tmp points to a secure temporary directory.
205 # There should be enough free disk space.
206 echo -n "Creating temporary directory: "
207 tmp="$( mktemp -d -t "$program_name.XXXXXXXXXX" )"
208 echo "$tmp"
209
210 package_dir="$tmp/package"
211 install -d -m 755 "$package_dir"
212
213 debian_dir="$package_dir/debian"
214 install -d -m 755 "$debian_dir"
215
216 # load and execute plugins
217 echo -n "Loading plugins:"
218 files=($lib_dir/*.sh)
219 for file in "${files[@]}"; do
220     echo -n " $file"
221     source "$file"
222 done
223
224 echo
225
226 # get architecture information
227 get_architecture
228
229 # get browser plugin directories
230 get_browser_plugin_dirs
231
232 jvm_base="/usr/lib/jvm/"
233 javadoc_base="/usr/share/doc/"
234
235 j2se_found=
236 for var in ${!j2se_detect_*}; do
237     eval "\$$var"
238     if [[ "$j2se_found" == "true" ]]; then
239     break;
240     fi
241 done
242 echo
243
244 if [[ -z "$j2se_found" ]]; then
245     echo "No matching packaging method was found for $archive_name."
246     echo "Please make sure you are using a tar.gz or a self-extracting archive"
247 fi
248
249
250
251 ### exit
252 success=true
253 exit 0