| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/java-vm-2.eclass,v 1.4 2006/06/30 15:00:07 nichoj Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/java-vm-2.eclass,v 1.34 2011/10/11 10:55:06 grobian Exp $ |
| 4 | # |
|
|
| 5 | # Author: Karl Trygve Kalleberg <karltk@gentoo.org> |
|
|
| 6 | |
4 | |
| 7 | inherit eutils |
5 | # ----------------------------------------------------------------------------- |
|
|
6 | # @eclass-begin |
|
|
7 | # @eclass-shortdesc Java Virtual Machine eclass |
|
|
8 | # @eclass-maintainer java@gentoo.org |
|
|
9 | # |
|
|
10 | # This eclass provides functionality which assists with installing |
|
|
11 | # virtual machines, and ensures that they are recognized by java-config. |
|
|
12 | # |
|
|
13 | # ----------------------------------------------------------------------------- |
| 8 | |
14 | |
| 9 | DEPEND=" |
15 | inherit eutils fdo-mime multilib prefix |
|
|
16 | |
| 10 | =dev-java/java-config-2.0* |
17 | DEPEND="=dev-java/java-config-2*" |
| 11 | =dev-java/java-config-1.3* |
18 | has "${EAPI}" 0 1 && DEPEND="${DEPEND} >=sys-apps/portage-2.1" |
| 12 | >=sys-apps/portage-2.1" |
19 | |
| 13 | RDEPEND=" |
20 | RDEPEND=" |
| 14 | =dev-java/java-config-2.0* |
21 | =dev-java/java-config-2*" |
| 15 | =dev-java/java-config-1.3*" |
|
|
| 16 | |
22 | |
| 17 | export WANT_JAVA_CONFIG=2 |
23 | export WANT_JAVA_CONFIG=2 |
| 18 | |
|
|
| 19 | if [[ "${SLOT}" != "0" ]]; then |
|
|
| 20 | VMHANDLE=${PN}-${SLOT} |
|
|
| 21 | else |
|
|
| 22 | VMHANDLE=${PN} |
|
|
| 23 | fi |
|
|
| 24 | |
24 | |
| 25 | JAVA_VM_CONFIG_DIR="/usr/share/java-config-2/vm" |
25 | JAVA_VM_CONFIG_DIR="/usr/share/java-config-2/vm" |
| 26 | JAVA_VM_DIR="/usr/lib/jvm" |
26 | JAVA_VM_DIR="/usr/lib/jvm" |
|
|
27 | JAVA_VM_BUILD_ONLY="${JAVA_VM_BUILD_ONLY:-FALSE}" |
| 27 | |
28 | |
| 28 | EXPORT_FUNCTIONS pkg_postinst pkg_prerm |
29 | EXPORT_FUNCTIONS pkg_setup pkg_postinst pkg_prerm pkg_postrm |
|
|
30 | |
|
|
31 | java-vm-2_pkg_setup() { |
|
|
32 | if [[ "${SLOT}" != "0" ]]; then |
|
|
33 | VMHANDLE=${PN}-${SLOT} |
|
|
34 | else |
|
|
35 | VMHANDLE=${PN} |
|
|
36 | fi |
|
|
37 | } |
| 29 | |
38 | |
| 30 | java-vm-2_pkg_postinst() { |
39 | java-vm-2_pkg_postinst() { |
| 31 | # Set the generation-2 system VM, if it isn't set |
40 | # Set the generation-2 system VM, if it isn't set |
| 32 | if [[ -z "$(java-config-2 -f)" ]]; then |
41 | if [[ -z "$(java-config-2 -f)" ]]; then |
| 33 | java_set_default_vm_ |
42 | java_set_default_vm_ |
| 34 | fi |
43 | fi |
| 35 | |
44 | |
| 36 | if [[ ${JAVA_VM_NO_GENERATION1} != "true" ]]; then |
45 | java-vm_check-nsplugin |
| 37 | local systemvm1="$(java-config-1 -f)" |
46 | java_mozilla_clean_ |
| 38 | # no generation-1 system-vm was yet set |
47 | fdo-mime_desktop_database_update |
| 39 | if [[ -z "${systemvm1}" ]]; then |
48 | } |
| 40 | einfo "No valid generation-1 system-vm set, setting to ${P}" |
49 | |
| 41 | java-config-1 --set-system-vm=${P} |
50 | java-vm_check-nsplugin() { |
| 42 | # dirty check to see if we are upgrading current generation-1 system vm |
51 | local libdir |
| 43 | elif [[ ${systemvm1} =~ "^${VMHANDLE}" ]]; then |
52 | if [[ ${VMHANDLE} =~ emul-linux-x86 ]]; then |
| 44 | einfo "Upgrading generation-1 system-vm... updating its env file" |
53 | libdir=lib32 |
| 45 | java-config-1 --set-system-vm=${P} |
54 | else |
|
|
55 | libdir=lib |
|
|
56 | fi |
|
|
57 | |
|
|
58 | has ${EAPI:-0} 0 1 2 && ! use prefix && EPREFIX= |
|
|
59 | |
|
|
60 | # Install a default nsplugin if we don't already have one |
|
|
61 | if has nsplugin ${IUSE} && use nsplugin; then |
|
|
62 | if [[ ! -f "${EPREFIX}"/usr/${libdir}/nsbrowser/plugins/javaplugin.so ]]; then |
|
|
63 | einfo "No system nsplugin currently set." |
|
|
64 | java-vm_set-nsplugin |
|
|
65 | else |
|
|
66 | einfo "System nsplugin is already set, not changing it." |
| 46 | fi |
67 | fi |
| 47 | # else... some other VM is being updated, so we don't have to worry |
68 | einfo "You can change nsplugin with eselect java-nsplugin." |
| 48 | fi |
69 | fi |
|
|
70 | } |
| 49 | |
71 | |
| 50 | if has nsplugin ${IUSE} && use nsplugin; then |
72 | java-vm_set-nsplugin() { |
| 51 | if [[ ! -f /usr/lib/nsbrowser/plugins/javaplugin.so ]]; then |
73 | local extra_args |
| 52 | eselect java-nsplugin set ${VMHANDLE} |
74 | if use amd64; then |
|
|
75 | if [[ ${VMHANDLE} =~ emul-linux-x86 ]]; then |
|
|
76 | extra_args="32bit" |
|
|
77 | else |
|
|
78 | extra_args="64bit" |
| 53 | fi |
79 | fi |
|
|
80 | einfo "Setting ${extra_args} nsplugin to ${VMHANDLE}" |
|
|
81 | else |
|
|
82 | einfo "Setting nsplugin to ${VMHANDLE}..." |
| 54 | fi |
83 | fi |
| 55 | |
84 | eselect java-nsplugin set ${extra_args} ${VMHANDLE} |
| 56 | java_mozilla_clean_ |
|
|
| 57 | } |
85 | } |
| 58 | |
86 | |
| 59 | java-vm-2_pkg_prerm() { |
87 | java-vm-2_pkg_prerm() { |
| 60 | if [[ "$(java-config -f)" == "${VMHANDLE}" ]]; then |
88 | if [[ "$(java-config -f 2>/dev/null)" == "${VMHANDLE}" ]]; then |
| 61 | ewarn "It appears you are removing your default system VM!" |
89 | ewarn "It appears you are removing your system-vm!" |
| 62 | ewarn "Please run java-config -L then java-config -S to set a new system VM!" |
90 | ewarn "Please run java-config -L to list available VMs," |
|
|
91 | ewarn "then use java-config -S to set a new system-vm!" |
| 63 | fi |
92 | fi |
|
|
93 | } |
|
|
94 | |
|
|
95 | java-vm-2_pkg_postrm() { |
|
|
96 | fdo-mime_desktop_database_update |
| 64 | } |
97 | } |
| 65 | |
98 | |
| 66 | java_set_default_vm_() { |
99 | java_set_default_vm_() { |
| 67 | java-config-2 --set-system-vm="${VMHANDLE}" |
100 | java-config-2 --set-system-vm="${VMHANDLE}" |
| 68 | |
101 | |
| 69 | einfo " After installing ${P} this" |
102 | einfo " ${P} set as the default system-vm." |
| 70 | einfo " was set as the default JVM to run." |
|
|
| 71 | } |
103 | } |
| 72 | |
104 | |
| 73 | get_system_arch() { |
105 | get_system_arch() { |
| 74 | local sarch |
106 | local sarch |
| 75 | sarch=$(echo ${ARCH} | sed -e s/[i]*.86/i386/ -e s/x86_64/amd64/ -e s/sun4u/sparc/ -e s/sparc64/sparc/ -e s/arm.*/arm/ -e s/sa110/arm/) |
107 | sarch=$(echo ${ARCH} | sed -e s/[i]*.86/i386/ -e s/x86_64/amd64/ -e s/sun4u/sparc/ -e s/sparc64/sparc/ -e s/arm.*/arm/ -e s/sa110/arm/) |
| … | |
… | |
| 79 | echo ${sarch} |
111 | echo ${sarch} |
| 80 | } |
112 | } |
| 81 | |
113 | |
| 82 | # TODO rename to something more evident, like install_env_file |
114 | # TODO rename to something more evident, like install_env_file |
| 83 | set_java_env() { |
115 | set_java_env() { |
|
|
116 | debug-print-function ${FUNCNAME} $* |
|
|
117 | |
|
|
118 | if has ${EAPI:-0} 0 1 2 && ! use prefix ; then |
|
|
119 | ED="${D}" |
|
|
120 | EPREFIX="" |
|
|
121 | fi |
|
|
122 | |
| 84 | local platform="$(get_system_arch)" |
123 | local platform="$(get_system_arch)" |
| 85 | local env_file="${D}${JAVA_VM_CONFIG_DIR}/${VMHANDLE}" |
124 | local env_file="${ED}${JAVA_VM_CONFIG_DIR}/${VMHANDLE}" |
| 86 | local old_env_file="${D}/etc/env.d/java/20${P}" |
125 | local old_env_file="${ED}/etc/env.d/java/20${P}" |
|
|
126 | if [[ ${1} ]]; then |
|
|
127 | local source_env_file="${1}" |
|
|
128 | else |
| 87 | local source_env_file="${FILESDIR}/${VMHANDLE}.env" |
129 | local source_env_file="${FILESDIR}/${VMHANDLE}.env" |
|
|
130 | fi |
| 88 | |
131 | |
| 89 | if [[ ! -f ${source_env_file} ]]; then |
132 | if [[ ! -f ${source_env_file} ]]; then |
| 90 | die "Unable to find the env file: ${source_env_file}" |
133 | die "Unable to find the env file: ${source_env_file}" |
| 91 | fi |
134 | fi |
| 92 | |
135 | |
| 93 | dodir ${JAVA_VM_CONFIG_DIR} |
136 | dodir ${JAVA_VM_CONFIG_DIR} |
| 94 | dodir /etc/env.d/java # generation-1 compatibility |
|
|
| 95 | sed \ |
137 | sed \ |
| 96 | -e "s/@P@/${P}/g" \ |
138 | -e "s/@P@/${P}/g" \ |
| 97 | -e "s/@PN@/${PN}/g" \ |
139 | -e "s/@PN@/${PN}/g" \ |
| 98 | -e "s/@PV@/${PV}/g" \ |
140 | -e "s/@PV@/${PV}/g" \ |
| 99 | -e "s/@PF@/${PF}/g" \ |
141 | -e "s/@PF@/${PF}/g" \ |
| 100 | -e "s/@PLATFORM@/${platform}/g" \ |
142 | -e "s/@PLATFORM@/${platform}/g" \ |
|
|
143 | -e "s/@LIBDIR@/$(get_libdir)/g" \ |
| 101 | -e "/^LDPATH=.*lib\\/\\\"/s|\"\\(.*\\)\"|\"\\1${platform}/:\\1${platform}/server/\"|" \ |
144 | -e "/^LDPATH=.*lib\\/\\\"/s|\"\\(.*\\)\"|\"\\1${platform}/:\\1${platform}/server/\"|" \ |
| 102 | < ${source_env_file} \ |
145 | < "${source_env_file}" \ |
| 103 | > ${env_file} || die "sed failed" |
146 | > "${env_file}" || die "sed failed" |
| 104 | |
147 | |
|
|
148 | ( |
| 105 | echo "VMHANDLE=\"${VMHANDLE}\"" >> ${env_file} |
149 | echo "VMHANDLE=\"${VMHANDLE}\"" |
| 106 | |
150 | echo "BUILD_ONLY=\"${JAVA_VM_BUILD_ONLY}\"" |
| 107 | # generation-1 compatibility |
151 | ) >> "${env_file}" |
| 108 | if [[ ${JAVA_VM_NO_GENERATION1} != true ]]; then |
152 | |
| 109 | # We need to strip some things out of the new style env, |
153 | eprefixify ${env_file} |
| 110 | # because these end up going in the env |
|
|
| 111 | sed -e 's/.*CLASSPATH.*//' \ |
|
|
| 112 | -e 's/.*PROVIDES.*//' \ |
|
|
| 113 | ${env_file} \ |
|
|
| 114 | > ${old_env_file} || die "failed to create old-style env file" |
|
|
| 115 | fi |
|
|
| 116 | |
154 | |
| 117 | [[ -n ${JAVA_PROVIDE} ]] && echo "PROVIDES=\"${JAVA_PROVIDE}\"" >> ${env_file} |
155 | [[ -n ${JAVA_PROVIDE} ]] && echo "PROVIDES=\"${JAVA_PROVIDE}\"" >> ${env_file} |
| 118 | |
156 | |
| 119 | local java_home=$(source ${env_file}; echo ${JAVA_HOME}) |
157 | local java_home=$(source "${env_file}"; echo ${JAVA_HOME}) |
| 120 | [[ -z ${java_home} ]] && die "No JAVA_HOME defined in ${env_file}" |
158 | [[ -z ${java_home} ]] && die "No JAVA_HOME defined in ${env_file}" |
| 121 | |
159 | |
| 122 | # Make the symlink |
160 | # Make the symlink |
|
|
161 | dodir "${JAVA_VM_DIR}" |
| 123 | dosym ${java_home} ${JAVA_VM_DIR}/${VMHANDLE} \ |
162 | dosym ${java_home#${EPREFIX}} ${JAVA_VM_DIR}/${VMHANDLE} \ |
| 124 | || die "Failed to make VM symlink at ${JAVA_VM_DIR}/${VMHANDE}" |
163 | || die "Failed to make VM symlink at ${JAVA_VM_DIR}/${VMHANDLE}" |
| 125 | } |
164 | } |
| 126 | |
165 | |
|
|
166 | # ----------------------------------------------------------------------------- |
|
|
167 | # @ebuild-function java-vm_revdep-mask |
|
|
168 | # |
|
|
169 | # Installs a revdep-rebuild control file which SEARCH_DIR_MASK set to the path |
|
|
170 | # where the VM is installed. Prevents pointless rebuilds - see bug #177925. |
|
|
171 | # Also gives a notice to the user. |
|
|
172 | # |
|
|
173 | # @example |
|
|
174 | # java-vm_revdep-mask |
|
|
175 | # java-vm_revdep-mask /path/to/jdk/ |
|
|
176 | # |
|
|
177 | # @param $1 - Path of the VM (defaults to /opt/${P} if not set) |
|
|
178 | # ------------------------------------------------------------------------------ |
|
|
179 | java-vm_revdep-mask() { |
|
|
180 | if has ${EAPI:-0} 0 1 2 && ! use prefix; then |
|
|
181 | ED="${D}" |
|
|
182 | EPREFIX= |
|
|
183 | fi |
|
|
184 | |
|
|
185 | local VMROOT="${1-"${EPREFIX}"/opt/${P}}" |
|
|
186 | |
|
|
187 | dodir /etc/revdep-rebuild/ |
|
|
188 | echo "SEARCH_DIRS_MASK=\"${VMROOT}\""> "${ED}/etc/revdep-rebuild/61-${VMHANDLE}" |
|
|
189 | |
|
|
190 | elog "A revdep-rebuild control file was installed to prevent reinstalls due to" |
|
|
191 | elog "missing dependencies (see bug #177925 for more info). Note that some parts" |
|
|
192 | elog "of the JVM may require dependencies that are pulled only through respective" |
|
|
193 | elog "USE flags (typically X, alsa, odbc) and some Java code may fail without them." |
|
|
194 | } |
| 127 | |
195 | |
| 128 | java_get_plugin_dir_() { |
196 | java_get_plugin_dir_() { |
|
|
197 | has ${EAPI:-0} 0 1 2 && ! use prefix && EPREFIX= |
| 129 | echo /usr/$(get_libdir)/nsbrowser/plugins |
198 | echo "${EPREFIX}"/usr/$(get_libdir)/nsbrowser/plugins |
| 130 | } |
199 | } |
| 131 | |
200 | |
| 132 | install_mozilla_plugin() { |
201 | install_mozilla_plugin() { |
| 133 | local plugin=${1} |
202 | local plugin="${1}" |
|
|
203 | local variant="${2}" |
| 134 | |
204 | |
|
|
205 | has ${EAPI:-0} 0 1 2 && ! use prefix && ED="${D}" |
| 135 | if [ ! -f "${D}/${plugin}" ] ; then |
206 | if [[ ! -f "${ED}/${plugin}" ]]; then |
| 136 | die "Cannot find mozilla plugin at ${D}/${plugin}" |
207 | die "Cannot find mozilla plugin at ${ED}/${plugin}" |
| 137 | fi |
208 | fi |
| 138 | |
209 | |
|
|
210 | if [[ -n "${variant}" ]]; then |
|
|
211 | variant="-${variant}" |
|
|
212 | fi |
|
|
213 | |
| 139 | local plugin_dir=/usr/share/java-config-2/nsplugin |
214 | local plugin_dir="/usr/share/java-config-2/nsplugin" |
| 140 | dodir ${plugin_dir} |
215 | dodir "${plugin_dir}" |
| 141 | dosym ${plugin} ${plugin_dir}/${VMHANDLE}-javaplugin.so |
216 | dosym "${plugin}" "${plugin_dir}/${VMHANDLE}${variant}-javaplugin.so" |
| 142 | } |
217 | } |
| 143 | |
218 | |
| 144 | java_mozilla_clean_() { |
219 | java_mozilla_clean_() { |
| 145 | # Because previously some ebuilds installed symlinks outside of pkg_install |
220 | # Because previously some ebuilds installed symlinks outside of pkg_install |
| 146 | # and are left behind, which forces you to manualy remove them to select the |
221 | # and are left behind, which forces you to manualy remove them to select the |
| … | |
… | |
| 152 | for file in ${plugin_dir}/libjavaplugin*; do |
227 | for file in ${plugin_dir}/libjavaplugin*; do |
| 153 | rm -f ${file} |
228 | rm -f ${file} |
| 154 | done |
229 | done |
| 155 | } |
230 | } |
| 156 | |
231 | |
|
|
232 | # ------------------------------------------------------------------------------ |
|
|
233 | # @eclass-end |
|
|
234 | # ------------------------------------------------------------------------------ |