| 1 |
# Copyright 1999-2004 Gentoo Foundation |
| 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 $ |
| 4 |
# |
| 5 |
# Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 |
# |
| 7 |
# Just some re-usable functions for the netscape/moz plugins sharing |
| 8 |
|
| 9 |
inherit eutils |
| 10 |
|
| 11 |
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 |
|
| 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 |
# This function installs a plugin with dosym to NSPLUGINS_DIR. |
| 31 |
# 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 |
local plugin=$1 |
| 36 |
|
| 37 |
dodir "${NSPLUGINS_DIR}" |
| 38 |
dosym "${plugin}" "${NSPLUGINS_DIR}" |
| 39 |
} |
| 40 |
|
| 41 |
# 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 |
|
| 59 |
PLUGINS_DIR="nsbrowser/plugins" |
| 60 |
|
| 61 |
# This function move the plugin dir in src_install() to |
| 62 |
# ${D}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
| 63 |
# the full path (without $D) to old plugin dir. |
| 64 |
src_mv_plugins() { |
| 65 |
|
| 66 |
# Move plugins dir. We use keepdir so that it might not be unmerged |
| 67 |
# by mistake ... |
| 68 |
keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
| 69 |
cp -a ${D}/$1/* ${D}/usr/$(get_libdir)/${PLUGINS_DIR} |
| 70 |
rm -rf ${D}/$1 |
| 71 |
dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
| 72 |
} |
| 73 |
|
| 74 |
# This function move plugins in pkg_preinst() in old dir to |
| 75 |
# ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
| 76 |
# the full path (without $ROOT) to old plugin dir. |
| 77 |
pkg_mv_plugins() { |
| 78 |
|
| 79 |
# Move old plugins dir |
| 80 |
if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ] |
| 81 |
then |
| 82 |
mkdir -p ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
| 83 |
cp -a ${ROOT}/$1/* ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
| 84 |
rm -rf ${ROOT}/$1 |
| 85 |
fi |
| 86 |
} |
| 87 |
|
| 88 |
# This function installs a plugin with dosym to PLUGINS_DIR. |
| 89 |
# First argument should be the plugin file. |
| 90 |
inst_plugin() { |
| 91 |
dodir /usr/$(get_libdir)/${PLUGINS_DIR} |
| 92 |
dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR} |
| 93 |
} |