]> git.sven.stormbind.net Git - sven/java-package.git/blob - make-jpkg
Create build depends for JDK.
[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 and 7
76     - The Java Runtime Environment (JRE), version 6 and 7
77     - The Java API Javadoc, version 6 and 7
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
88   --help             display this help and exit
89   --version          output version information and exit
90
91 EOF
92 }
93
94 unrecognized_option() {
95     cat >&2 << EOF
96 $program_name: unrecognized option \`$1'
97 Try \`$program_name --help' for more information.
98 EOF
99     exit 1
100 }
101
102 missing_argument() {
103     cat >&2 << EOF
104 $program_name: missing argument for option \`$1'
105 Try \`$program_name --help' for more information.
106 EOF
107     exit 1
108 }
109
110 # options
111 while [[ $# -gt 0 && "x$1" == x--* ]]; do
112     if [[ "x$1" == x--version ]]; then
113     echo "make-jpkg $version"
114     exit 0
115     elif [[ "x$1" == x--help ]]; then
116     print_usage
117     exit 0
118     elif [[ "x$1" == x--full-name ]]; then
119     [ $# -le 1 ] && missing_argument "$1"
120     shift
121     maintainer_name="$1"
122     elif [[ "x$1" == x--email ]]; then
123     [ $# -le 1 ] && missing_argument "$1"
124     shift
125     maintainer_email="$1"
126     elif [[ "x$1" == x--revision ]]; then
127     [ $# -le 1 ] && missing_argument "$1"
128     shift
129     revision="-${1}"
130     elif [[ "x$1" == x--changes ]]; then
131     genchanges="true"
132     elif [[ "x$1" == x--source ]]; then
133     build_source="true"
134     else
135     unrecognized_option "$1"
136     fi
137     shift
138 done
139
140 # last argument
141 if [[ $# -ne 1 ]]; then
142     cat >&2 << EOF
143 $program_name: missing pathname
144 Try \`$program_name --help' for more information.
145 EOF
146     exit 1
147 fi
148 archive="$1"
149
150 if [[ ! -e "$archive" ]]; then
151     echo "Error: The file \"$archive\" does not exist."
152     exit 1
153 elif [[ ! -r "$archive" ]]; then
154     echo "Error: The file \"$archive\" is not readable."
155     exit 1
156 fi
157
158 archive_name="$( basename "$archive" )"
159 archive_dir="$( cd "$( dirname "$archive" )" ; pwd )"
160 archive_path="$archive_dir/$archive_name"
161
162
163 # error handling
164
165 success=
166 failed=
167 tmp=
168
169 # function is called when script terminates
170 on_exit() {
171     lastcmd="$_"
172     if [[ -z "$success" && -z "$failed" ]]; then
173     cat >&2 << EOF
174
175 Aborted ($lastcmd).
176
177 EOF
178     fi
179     # remove temporary directory
180     if [ -n "$tmp" -a -d "$tmp" ]; then
181     echo -n "Removing temporary directory: "
182     rm -rf "$tmp"
183     echo "done"
184     fi
185 }
186 trap on_exit EXIT
187
188 # print error message and terminate
189 error_exit() {
190     cat >&2 << EOF
191
192 Aborted.
193
194 EOF
195     failed=true
196     exit 1
197 }
198
199
200
201 # The environment variable tmp points to a secure temporary directory.
202 # There should be enough free disk space.
203 echo -n "Creating temporary directory: "
204 tmp="$( mktemp -d -t "$program_name.XXXXXXXXXX" )"
205 echo "$tmp"
206
207 package_dir="$tmp/package"
208 install -d -m 755 "$package_dir"
209
210 debian_dir="$package_dir/debian"
211 install -d -m 755 "$debian_dir"
212
213 # load and execute plugins
214 echo -n "Loading plugins:"
215 files=($lib_dir/*.sh)
216 for file in "${files[@]}"; do
217     echo -n " $file"
218     source "$file"
219 done
220
221 echo
222
223 # get architecture information
224 get_architecture
225
226 # get browser plugin directories
227 get_browser_plugin_dirs
228
229 jvm_base="/usr/lib/jvm/"
230 javadoc_base="/usr/share/doc/"
231
232 j2se_found=
233 for var in ${!j2se_detect_*}; do
234     eval "\$$var"
235     if [[ "$j2se_found" == "true" ]]; then
236     break;
237     fi
238 done
239 echo
240
241 if [[ -z "$j2se_found" ]]; then
242     echo "No matching packaging method was found for $archive_name."
243     echo "Please make sure you are using a tar.gz or a self-extracting archive"
244 fi
245
246
247
248 ### exit
249 success=true
250 exit 0