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