| 1 |
vapier |
1.14 |
# Copyright 1999-2004 Gentoo Foundation
|
| 2 |
azarah |
1.1 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
azarah |
1.21 |
# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.20 2005/07/23 09:17:17 azarah Exp $
|
| 4 |
vapier |
1.8 |
#
|
| 5 |
azarah |
1.1 |
# Author: Martin Schlemmer <azarah@gentoo.org>
|
| 6 |
vapier |
1.8 |
#
|
| 7 |
azarah |
1.1 |
# Just some re-usable functions for the netscape/moz plugins sharing
|
| 8 |
|
|
|
| 9 |
eradicator |
1.15 |
inherit eutils
|
| 10 |
|
|
|
| 11 |
azarah |
1.20 |
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 |
azarah |
1.21 |
|
| 19 |
|
|
# This function installs a plugin in ${S} to NSPLUGINS_DIR.
|
| 20 |
|
|
# First argument should be the plugin file. This is for stuff like
|
| 21 |
|
|
# mplayerplug-in that you can move the plugin to any directory ...
|
| 22 |
|
|
install_nsplugin() {
|
| 23 |
|
|
local plugin=$1
|
| 24 |
|
|
|
| 25 |
|
|
dodir "${NSPLUGINS_DIR}"
|
| 26 |
|
|
exeinto "${NSPLUGINS_DIR}"
|
| 27 |
|
|
doexe "${plugin}"
|
| 28 |
|
|
}
|
| 29 |
|
|
|
| 30 |
azarah |
1.20 |
# This function installs a plugin with dosym to NSPLUGINS_DIR.
|
| 31 |
azarah |
1.21 |
# First argument should be the plugin file. This is for stuff like
|
| 32 |
|
|
# the java plugins that should be symlinked, and not moved from the VM
|
| 33 |
|
|
# directory ...
|
| 34 |
|
|
symlink_nsplugin() {
|
| 35 |
azarah |
1.20 |
local plugin=$1
|
| 36 |
|
|
|
| 37 |
|
|
dodir "${NSPLUGINS_DIR}"
|
| 38 |
|
|
dosym "${plugin}" "${NSPLUGINS_DIR}"
|
| 39 |
|
|
}
|
| 40 |
azarah |
1.1 |
|
| 41 |
azarah |
1.20 |
# First argument should be the browser name (usually $PN), second
|
| 42 |
|
|
# is its plugin dir. This basically just makes update-nsplugins aware
|
| 43 |
|
|
# of the browser.
|
| 44 |
|
|
register_nsbrowser() {
|
| 45 |
|
|
local browser=$1
|
| 46 |
|
|
local plugindir=$2
|
| 47 |
|
|
|
| 48 |
|
|
dodir "${NSBROWSERS_DIR}"
|
| 49 |
|
|
echo "${plugindir}" > "${D}${NSBROWSERS_DIR}/${browser}"
|
| 50 |
|
|
}
|
| 51 |
|
|
|
| 52 |
|
|
|
| 53 |
|
|
###############################################################################
|
| 54 |
|
|
#
|
| 55 |
|
|
# Depriciated Functions - Please do not use any more !
|
| 56 |
|
|
#
|
| 57 |
|
|
###############################################################################
|
| 58 |
azarah |
1.1 |
|
| 59 |
|
|
PLUGINS_DIR="nsbrowser/plugins"
|
| 60 |
|
|
|
| 61 |
|
|
# This function move the plugin dir in src_install() to
|
| 62 |
eradicator |
1.15 |
# ${D}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be
|
| 63 |
azarah |
1.1 |
# the full path (without $D) to old plugin dir.
|
| 64 |
|
|
src_mv_plugins() {
|
| 65 |
|
|
|
| 66 |
azarah |
1.7 |
# Move plugins dir. We use keepdir so that it might not be unmerged
|
| 67 |
|
|
# by mistake ...
|
| 68 |
eradicator |
1.15 |
keepdir /usr/$(get_libdir)/${PLUGINS_DIR}
|
| 69 |
|
|
cp -a ${D}/$1/* ${D}/usr/$(get_libdir)/${PLUGINS_DIR}
|
| 70 |
azarah |
1.1 |
rm -rf ${D}/$1
|
| 71 |
eradicator |
1.15 |
dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1
|
| 72 |
azarah |
1.1 |
}
|
| 73 |
|
|
|
| 74 |
swegener |
1.19 |
# This function move plugins in pkg_preinst() in old dir to
|
| 75 |
eradicator |
1.15 |
# ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be
|
| 76 |
azarah |
1.3 |
# the full path (without $ROOT) to old plugin dir.
|
| 77 |
azarah |
1.1 |
pkg_mv_plugins() {
|
| 78 |
|
|
|
| 79 |
|
|
# Move old plugins dir
|
| 80 |
azarah |
1.11 |
if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ]
|
| 81 |
azarah |
1.1 |
then
|
| 82 |
eradicator |
1.15 |
mkdir -p ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR}
|
| 83 |
|
|
cp -a ${ROOT}/$1/* ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR}
|
| 84 |
azarah |
1.1 |
rm -rf ${ROOT}/$1
|
| 85 |
|
|
fi
|
| 86 |
|
|
}
|
| 87 |
|
|
|
| 88 |
phoenix |
1.4 |
# This function installs a plugin with dosym to PLUGINS_DIR.
|
| 89 |
|
|
# First argument should be the plugin file.
|
| 90 |
|
|
inst_plugin() {
|
| 91 |
genstef |
1.16 |
dodir /usr/$(get_libdir)/${PLUGINS_DIR}
|
| 92 |
|
|
dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR}
|
| 93 |
phoenix |
1.4 |
}
|