dev-util/qbs: version bump
[gentoo.git] / eclass / nsplugins.eclass
1 # Copyright 1999-2013 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Id$
4 #
5 # @ECLASS: nsplugins.eclass
6 # @MAINTAINER:
7 # Mozilla Team <mozilla@gentoo.org>
8 # @AUTHOR:
9 # Original Author: Martin Schlemmer <azarah@gentoo.org>
10 # @BLURB: reusable functions for netscape/moz plugin sharing
11 # @DESCRIPTION:
12 # Reusable functions that promote sharing of netscape/moz plugins, also provides
13 # share_plugins_dir function for mozilla applications.
14
15 inherit eutils multilib versionator mozextension
16
17 PLUGINS_DIR="nsbrowser/plugins"
18
19 # This function move the plugin dir in src_install() to
20 # ${D}/usr/$(get_libdir)/${PLUGIN_DIR}.  First argument should be
21 # the full path (without $D) to old plugin dir.
22 src_mv_plugins() {
23         has "${EAPI:-0}" 0 1 2 && ! use prefix && ED="${D}"
24
25         # Move plugins dir.  We use keepdir so that it might not be unmerged
26         # by mistake ...
27         keepdir /usr/$(get_libdir)/${PLUGINS_DIR}
28         cp -a "${ED}"/$1/* "${ED}"/usr/$(get_libdir)/${PLUGINS_DIR}
29         rm -rf "${ED}"/$1
30         dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1
31 }
32
33 # This function move plugins in pkg_preinst() in old dir to
34 # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}.  First argument should be
35 # the full path (without $ROOT) to old plugin dir.
36 pkg_mv_plugins() {
37         has "${EAPI:-0}" 0 1 2 && ! use prefix && ED="${ROOT}"
38
39         # Move old plugins dir
40         if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ]
41         then
42                 mkdir -p "${EROOT}"/usr/$(get_libdir)/${PLUGINS_DIR}
43                 cp -a "${EROOT}"/$1/* "${EROOT}"/usr/$(get_libdir)/${PLUGINS_DIR}
44                 rm -rf "${EROOT}"/$1
45         fi
46 }
47
48 # This function installs a plugin with dosym to PLUGINS_DIR.
49 # First argument should be the plugin file.
50 inst_plugin() {
51         if [[ -z "${1}" ]]; then
52                 eerror "The plugin file \"${1}\" does not exist."
53                 die "No such file or directory."
54         fi
55
56         dodir /usr/$(get_libdir)/${PLUGINS_DIR}
57         dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR}/$(basename ${1})
58 }
59
60 # This function ensures we use proper plugin path for Gentoo.
61 # This should only be used by mozilla packages.
62 # ${MOZILLA_FIVE_HOME} must be defined in src_install to support
63 share_plugins_dir() {
64         if [[ ${PN} == seamonkey ]] ; then
65                 rm -rf "${D}"${MOZILLA_FIVE_HOME}/plugins \
66                         || die "failed to remove existing plugins dir"
67         fi
68
69         if [[ ${PN} == *-bin ]] ; then
70                 PLUGIN_BASE_PATH="/usr/$(get_libdir)"
71         else
72                 PLUGIN_BASE_PATH=".."
73         fi
74
75         if $(mozversion_extension_location) ; then
76                 dosym "${PLUGIN_BASE_PATH}/nsbrowser/plugins" "${MOZILLA_FIVE_HOME}/browser/plugins"
77         else
78                 dosym "${PLUGIN_BASE_PATH}/nsbrowser/plugins" "${MOZILLA_FIVE_HOME}/plugins"
79         fi
80 }