| 1 |
# Copyright 1999-2002 Gentoo Technologies, Inc. |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# Author: Martin Schlemmer <azarah@gentoo.org> |
| 4 |
# $Header: /home/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.6 2002/12/13 20:50:33 phoenix Exp $ |
| 5 |
# Just some re-usable functions for the netscape/moz plugins sharing |
| 6 |
|
| 7 |
ECLASS=nsplugins |
| 8 |
INHERITED="$INHERITED $ECLASS" |
| 9 |
|
| 10 |
DESCRIPTION="Based on the ${ECLASS} eclass" |
| 11 |
|
| 12 |
PLUGINS_DIR="nsbrowser/plugins" |
| 13 |
|
| 14 |
# This function move the plugin dir in src_install() to |
| 15 |
# ${D}/usr/lib/${PLUGIN_DIR}. First argument should be |
| 16 |
# the full path (without $D) to old plugin dir. |
| 17 |
src_mv_plugins() { |
| 18 |
|
| 19 |
# Move plugins dir. We use keepdir so that it might not be unmerged |
| 20 |
# by mistake ... |
| 21 |
keepdir /usr/lib/${PLUGINS_DIR} |
| 22 |
cp -a ${D}/$1/* ${D}/usr/lib/${PLUGINS_DIR} |
| 23 |
rm -rf ${D}/$1 |
| 24 |
dosym ../${PLUGINS_DIR} $1 |
| 25 |
} |
| 26 |
|
| 27 |
# This function move plugins in pkg_preinst() in old dir to |
| 28 |
# ${ROOT}//usr/lib/${PLUGIN_DIR}. First argument should be |
| 29 |
# the full path (without $ROOT) to old plugin dir. |
| 30 |
pkg_mv_plugins() { |
| 31 |
|
| 32 |
# Move old plugins dir |
| 33 |
if [ -d ${ROOT}/$1 ] |
| 34 |
then |
| 35 |
mkdir -p ${ROOT}/usr/lib/${PLUGINS_DIR} |
| 36 |
cp -a ${ROOT}/$1/* ${ROOT}/usr/lib/${PLUGINS_DIR} |
| 37 |
rm -rf ${ROOT}/$1 |
| 38 |
fi |
| 39 |
} |
| 40 |
|
| 41 |
# This function installs a plugin with dosym to PLUGINS_DIR. |
| 42 |
# First argument should be the plugin file. |
| 43 |
inst_plugin() { |
| 44 |
# Get the filename |
| 45 |
MYFILE="`echo ${1} | gawk -F '/' '{ print $NF }'`" |
| 46 |
|
| 47 |
# Install the plugin if none is installed |
| 48 |
if [ ! -L /usr/lib/${PLUGINS_DIR}/${MYFILE} ] |
| 49 |
then |
| 50 |
dodir /usr/lib/${PLUGINS_DIR} |
| 51 |
# $ROOT should only be used in pkg_*() functions ... |
| 52 |
# dosym ${1} ${ROOT}/usr/lib/${PLUGINS_DIR} |
| 53 |
echo dosym ${1} /usr/lib/${PLUGINS_DIR} |
| 54 |
dosym ${1} /usr/lib/${PLUGINS_DIR} |
| 55 |
einfo "Symlinked the java plugin into the mozilla/phoenix/galeon plugin directory." |
| 56 |
else |
| 57 |
einfo "Not creating symlink for the java plugin, because there already is a java plugin installed." |
| 58 |
fi |
| 59 |
} |