| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2009 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.22 2005/08/04 21:55:06 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.23 2009/05/01 21:50:44 nirbheek Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
5 | # Author: Martin Schlemmer <azarah@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # Just some re-usable functions for the netscape/moz plugins sharing |
7 | # Just some re-usable functions for the netscape/moz plugins sharing |
| 8 | |
8 | |
| … | |
… | |
| 18 | src_mv_plugins() { |
18 | src_mv_plugins() { |
| 19 | |
19 | |
| 20 | # Move plugins dir. We use keepdir so that it might not be unmerged |
20 | # Move plugins dir. We use keepdir so that it might not be unmerged |
| 21 | # by mistake ... |
21 | # by mistake ... |
| 22 | keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
22 | keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
| 23 | cp -a ${D}/$1/* ${D}/usr/$(get_libdir)/${PLUGINS_DIR} |
23 | cp -a "${D}"/$1/* "${D}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 24 | rm -rf ${D}/$1 |
24 | rm -rf "${D}"/$1 |
| 25 | dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
25 | dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
| 26 | } |
26 | } |
| 27 | |
27 | |
| 28 | # This function move plugins in pkg_preinst() in old dir to |
28 | # This function move plugins in pkg_preinst() in old dir to |
| 29 | # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
29 | # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
| 30 | # the full path (without $ROOT) to old plugin dir. |
30 | # the full path (without $ROOT) to old plugin dir. |
| 31 | pkg_mv_plugins() { |
31 | pkg_mv_plugins() { |
| 32 | |
32 | |
| 33 | # Move old plugins dir |
33 | # Move old plugins dir |
| 34 | if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ] |
34 | if [[ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ]] |
| 35 | then |
35 | then |
| 36 | mkdir -p ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
36 | mkdir -p "${ROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 37 | cp -a ${ROOT}/$1/* ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
37 | cp -a "${ROOT}"/$1/* "${ROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 38 | rm -rf ${ROOT}/$1 |
38 | rm -rf "${ROOT}"/$1 |
| 39 | fi |
39 | fi |
| 40 | } |
40 | } |
| 41 | |
41 | |
| 42 | # This function installs a plugin with dosym to PLUGINS_DIR. |
42 | # This function installs a plugin with dosym to PLUGINS_DIR. |
| 43 | # First argument should be the plugin file. |
43 | # First argument should be the plugin file. |