| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2012 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/nsplugins.eclass,v 1.20 2005/07/23 09:17:17 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.30 2012/06/02 19:16:31 zmedico Exp $ |
| 4 | # |
4 | # |
|
|
5 | # @ECLASS: nsplugins.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # Mozilla Team <mozilla@gentoo.org> |
|
|
8 | # @AUTHOR: |
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
9 | # Original Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 | # |
|
|
| 7 | # Just some re-usable functions for the netscape/moz plugins sharing |
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. |
| 8 | |
14 | |
| 9 | inherit eutils |
15 | inherit eutils multilib |
| 10 | |
16 | |
| 11 | DESCRIPTION="Based on the ${ECLASS} eclass" |
17 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 12 | |
|
|
| 13 | #DEPEND="www-client/update-nsplugins" |
|
|
| 14 | |
|
|
| 15 | NSPLUGINS_DIR="/usr/$(get_libdir)/nsplugins" |
|
|
| 16 | NSBROWSERS_DIR="${NSPLUGINS_DIR}/nsbrowsers" |
|
|
| 17 | |
|
|
| 18 | # This function installs a plugin with dosym to NSPLUGINS_DIR. |
|
|
| 19 | # First argument should be the plugin file. |
|
|
| 20 | install_nsplugin() { |
|
|
| 21 | local plugin=$1 |
|
|
| 22 | |
|
|
| 23 | dodir "${NSPLUGINS_DIR}" |
|
|
| 24 | dosym "${plugin}" "${NSPLUGINS_DIR}" |
|
|
| 25 | } |
|
|
| 26 | |
|
|
| 27 | # First argument should be the browser name (usually $PN), second |
|
|
| 28 | # is its plugin dir. This basically just makes update-nsplugins aware |
|
|
| 29 | # of the browser. |
|
|
| 30 | register_nsbrowser() { |
|
|
| 31 | local browser=$1 |
|
|
| 32 | local plugindir=$2 |
|
|
| 33 | |
|
|
| 34 | dodir "${NSBROWSERS_DIR}" |
|
|
| 35 | echo "${plugindir}" > "${D}${NSBROWSERS_DIR}/${browser}" |
|
|
| 36 | } |
|
|
| 37 | |
|
|
| 38 | |
|
|
| 39 | ############################################################################### |
|
|
| 40 | # |
|
|
| 41 | # Depriciated Functions - Please do not use any more ! |
|
|
| 42 | # |
|
|
| 43 | ############################################################################### |
|
|
| 44 | |
18 | |
| 45 | PLUGINS_DIR="nsbrowser/plugins" |
19 | PLUGINS_DIR="nsbrowser/plugins" |
| 46 | |
20 | |
| 47 | # This function move the plugin dir in src_install() to |
21 | # This function move the plugin dir in src_install() to |
| 48 | # ${D}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
22 | # ${D}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
| 49 | # the full path (without $D) to old plugin dir. |
23 | # the full path (without $D) to old plugin dir. |
| 50 | src_mv_plugins() { |
24 | src_mv_plugins() { |
|
|
25 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED="${D}" |
| 51 | |
26 | |
| 52 | # Move plugins dir. We use keepdir so that it might not be unmerged |
27 | # Move plugins dir. We use keepdir so that it might not be unmerged |
| 53 | # by mistake ... |
28 | # by mistake ... |
| 54 | keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
29 | keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
| 55 | cp -a ${D}/$1/* ${D}/usr/$(get_libdir)/${PLUGINS_DIR} |
30 | cp -a "${ED}"/$1/* "${ED}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 56 | rm -rf ${D}/$1 |
31 | rm -rf "${ED}"/$1 |
| 57 | dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
32 | dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
| 58 | } |
33 | } |
| 59 | |
34 | |
| 60 | # This function move plugins in pkg_preinst() in old dir to |
35 | # This function move plugins in pkg_preinst() in old dir to |
| 61 | # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
36 | # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
| 62 | # the full path (without $ROOT) to old plugin dir. |
37 | # the full path (without $ROOT) to old plugin dir. |
| 63 | pkg_mv_plugins() { |
38 | pkg_mv_plugins() { |
|
|
39 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED="${ROOT}" |
| 64 | |
40 | |
| 65 | # Move old plugins dir |
41 | # Move old plugins dir |
| 66 | if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ] |
42 | if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ] |
| 67 | then |
43 | then |
| 68 | mkdir -p ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
44 | mkdir -p "${EROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 69 | cp -a ${ROOT}/$1/* ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
45 | cp -a "${EROOT}"/$1/* "${EROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 70 | rm -rf ${ROOT}/$1 |
46 | rm -rf "${EROOT}"/$1 |
| 71 | fi |
47 | fi |
| 72 | } |
48 | } |
| 73 | |
49 | |
| 74 | # This function installs a plugin with dosym to PLUGINS_DIR. |
50 | # This function installs a plugin with dosym to PLUGINS_DIR. |
| 75 | # First argument should be the plugin file. |
51 | # First argument should be the plugin file. |
| 76 | inst_plugin() { |
52 | inst_plugin() { |
|
|
53 | if [[ -z "${1}" ]]; then |
|
|
54 | eerror "The plugin file \"${1}\" does not exist." |
|
|
55 | die "No such file or directory." |
|
|
56 | fi |
|
|
57 | |
| 77 | dodir /usr/$(get_libdir)/${PLUGINS_DIR} |
58 | dodir /usr/$(get_libdir)/${PLUGINS_DIR} |
| 78 | dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR} |
59 | dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR}/$(basename ${1}) |
| 79 | } |
60 | } |
|
|
61 | |
|
|
62 | # This function ensures we use proper plugin path for Gentoo. |
|
|
63 | # This should only be used by mozilla packages. |
|
|
64 | # ${MOZILLA_FIVE_HOME} must be defined in src_install to support |
|
|
65 | share_plugins_dir() { |
|
|
66 | if [[ ${PN} == seamonkey ]] ; then |
|
|
67 | rm -rf "${D}"${MOZILLA_FIVE_HOME}/plugins \ |
|
|
68 | || die "failed to remove existing plugins dir" |
|
|
69 | fi |
|
|
70 | |
|
|
71 | if [[ ${PN} == *-bin ]] ; then |
|
|
72 | PLUGIN_BASE_PATH="/usr/$(get_libdir)" |
|
|
73 | else |
|
|
74 | PLUGIN_BASE_PATH=".." |
|
|
75 | fi |
|
|
76 | |
|
|
77 | dosym "${PLUGIN_BASE_PATH}/nsbrowser/plugins" "${MOZILLA_FIVE_HOME}/plugins" |
|
|
78 | } |