blob: 45835da4d4abab90be450b4ba406222d8a849461 (
plain)
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
46
47
48
49
50
51
52
53
54
55
|
THIS_JRE='java-7-openjdk/jre'
fix_default() {
if [ ! -x /usr/bin/java ]; then
/usr/bin/parabola-java unset
echo ""
else
/usr/bin/parabola-java get
fi
}
post_install() {
default=$(fix_default)
case ${default} in
"")
/usr/bin/parabola-java set ${THIS_JRE}
;;
${THIS_JRE} | ${THIS_JRE/\/jre})
# Nothing
;;
*)
echo "Default Java environment is already set to '${default}'"
echo "See 'parabola-java help' to change it"
;;
esac
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
echo "when you use a non-reparenting window manager,"
echo "set _JAVA_AWT_WM_NONREPARENTING=1 in /etc/profile.d/jre.sh"
# update-desktop-database -q
}
post_upgrade() {
if [ -z $(fix_default) ]; then
/usr/bin/parabola-java set ${THIS_JRE}
fi
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
# update-desktop-database -q
}
pre_remove() {
if [ "x$(fix_default)" = "x${THIS_JRE/\/jre}" ]; then
/usr/bin/parabola-java unset
echo "No Java environment is set as default anymore"
fi
}
post_remove() {
xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
# update-desktop-database -q
}
|