| 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 |
swegener |
1.19 |
# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.18 2005/07/06 20:23:20 agriffis 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.1 |
|
| 12 |
vapier |
1.10 |
DESCRIPTION="Based on the ${ECLASS} eclass"
|
| 13 |
azarah |
1.1 |
|
| 14 |
|
|
PLUGINS_DIR="nsbrowser/plugins"
|
| 15 |
|
|
|
| 16 |
|
|
# This function move the plugin dir in src_install() to
|
| 17 |
eradicator |
1.15 |
# ${D}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be
|
| 18 |
azarah |
1.1 |
# the full path (without $D) to old plugin dir.
|
| 19 |
|
|
src_mv_plugins() {
|
| 20 |
|
|
|
| 21 |
azarah |
1.7 |
# Move plugins dir. We use keepdir so that it might not be unmerged
|
| 22 |
|
|
# by mistake ...
|
| 23 |
eradicator |
1.15 |
keepdir /usr/$(get_libdir)/${PLUGINS_DIR}
|
| 24 |
|
|
cp -a ${D}/$1/* ${D}/usr/$(get_libdir)/${PLUGINS_DIR}
|
| 25 |
azarah |
1.1 |
rm -rf ${D}/$1
|
| 26 |
eradicator |
1.15 |
dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1
|
| 27 |
azarah |
1.1 |
}
|
| 28 |
|
|
|
| 29 |
swegener |
1.19 |
# This function move plugins in pkg_preinst() in old dir to
|
| 30 |
eradicator |
1.15 |
# ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be
|
| 31 |
azarah |
1.3 |
# the full path (without $ROOT) to old plugin dir.
|
| 32 |
azarah |
1.1 |
pkg_mv_plugins() {
|
| 33 |
|
|
|
| 34 |
|
|
# Move old plugins dir
|
| 35 |
azarah |
1.11 |
if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ]
|
| 36 |
azarah |
1.1 |
then
|
| 37 |
eradicator |
1.15 |
mkdir -p ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR}
|
| 38 |
|
|
cp -a ${ROOT}/$1/* ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR}
|
| 39 |
azarah |
1.1 |
rm -rf ${ROOT}/$1
|
| 40 |
|
|
fi
|
| 41 |
|
|
}
|
| 42 |
|
|
|
| 43 |
phoenix |
1.4 |
# This function installs a plugin with dosym to PLUGINS_DIR.
|
| 44 |
|
|
# First argument should be the plugin file.
|
| 45 |
|
|
inst_plugin() {
|
| 46 |
genstef |
1.16 |
dodir /usr/$(get_libdir)/${PLUGINS_DIR}
|
| 47 |
|
|
dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR}
|
| 48 |
phoenix |
1.4 |
}
|