1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
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.1.1.1 2005/11/30 09:59:24 chriswhite Exp $ |
|
|
4 | # |
|
|
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
3 | # Author: Martin Schlemmer <azarah@gentoo.org> |
6 | # |
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.5 2002/11/23 08:50:00 azarah Exp $ |
7 | # Just some re-usable functions for the netscape/moz plugins sharing |
5 | # Just some re-usable functions for the netscape/moz plugins sharing |
8 | |
6 | |
9 | inherit eutils |
7 | ECLASS=nsplugins |
|
|
8 | INHERITED="$INHERITED $ECLASS" |
10 | |
9 | |
11 | DESCRIPTION="Based on the ${ECLASS} eclass" |
10 | DESCRIPTION="Based on the ${ECLASS} eclass" |
12 | |
11 | |
13 | PLUGINS_DIR="nsbrowser/plugins" |
12 | PLUGINS_DIR="nsbrowser/plugins" |
14 | |
13 | |
15 | # This function move the plugin dir in src_install() to |
14 | # This function move the plugin dir in src_install() to |
16 | # ${D}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
15 | # ${D}/usr/lib/${PLUGIN_DIR}. First argument should be |
17 | # the full path (without $D) to old plugin dir. |
16 | # the full path (without $D) to old plugin dir. |
18 | src_mv_plugins() { |
17 | src_mv_plugins() { |
19 | |
18 | |
20 | # Move plugins dir. We use keepdir so that it might not be unmerged |
19 | # Move plugins dir |
21 | # by mistake ... |
|
|
22 | keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
20 | dodir /usr/lib/${PLUGINS_DIR} |
23 | cp -a ${D}/$1/* ${D}/usr/$(get_libdir)/${PLUGINS_DIR} |
21 | cp -a ${D}/$1/* ${D}/usr/lib/${PLUGINS_DIR} |
24 | rm -rf ${D}/$1 |
22 | rm -rf ${D}/$1 |
25 | dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
23 | dosym ../${PLUGINS_DIR} $1 |
26 | } |
24 | } |
27 | |
25 | |
28 | # This function move plugins in pkg_preinst() in old dir to |
26 | # This function move plugins in pkg_preinst() in old dir to |
29 | # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
27 | # ${ROOT}//usr/lib/${PLUGIN_DIR}. First argument should be |
30 | # the full path (without $ROOT) to old plugin dir. |
28 | # the full path (without $ROOT) to old plugin dir. |
31 | pkg_mv_plugins() { |
29 | pkg_mv_plugins() { |
32 | |
30 | |
33 | # Move old plugins dir |
31 | # Move old plugins dir |
34 | if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ] |
32 | if [ -d ${ROOT}/$1 ] |
35 | then |
33 | then |
36 | mkdir -p ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
34 | mkdir -p ${ROOT}/usr/lib/${PLUGINS_DIR} |
37 | cp -a ${ROOT}/$1/* ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
35 | cp -a ${ROOT}/$1/* ${ROOT}/usr/lib/${PLUGINS_DIR} |
38 | rm -rf ${ROOT}/$1 |
36 | rm -rf ${ROOT}/$1 |
39 | fi |
37 | fi |
40 | } |
38 | } |
41 | |
39 | |
42 | # This function installs a plugin with dosym to PLUGINS_DIR. |
40 | # This function installs a plugin with dosym to PLUGINS_DIR. |
43 | # First argument should be the plugin file. |
41 | # First argument should be the plugin file. |
44 | inst_plugin() { |
42 | inst_plugin() { |
45 | dodir /usr/$(get_libdir)/${PLUGINS_DIR} |
43 | dodir /usr/lib/${PLUGINS_DIR} |
|
|
44 | # $ROOT should only be used in pkg_*() functions ... |
|
|
45 | # dosym ${1} ${ROOT}/usr/lib/${PLUGINS_DIR} |
46 | dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR} |
46 | dosym ${1} /usr/lib/${PLUGINS_DIR} |
47 | } |
47 | } |
|
|
48 | |