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