| 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.18 2005/07/06 20:23:20 agriffis Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.26 2011/10/05 15:14:07 scarabeus 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 | |
| 9 | inherit eutils |
9 | inherit eutils |
| 10 | |
|
|
| 11 | |
10 | |
| 12 | DESCRIPTION="Based on the ${ECLASS} eclass" |
11 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 13 | |
12 | |
| 14 | PLUGINS_DIR="nsbrowser/plugins" |
13 | PLUGINS_DIR="nsbrowser/plugins" |
| 15 | |
14 | |
| 16 | # This function move the plugin dir in src_install() to |
15 | # This function move the plugin dir in src_install() to |
| 17 | # ${D}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
16 | # ${D}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
| 18 | # the full path (without $D) to old plugin dir. |
17 | # the full path (without $D) to old plugin dir. |
| 19 | src_mv_plugins() { |
18 | src_mv_plugins() { |
|
|
19 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED="${D}" |
| 20 | |
20 | |
| 21 | # Move plugins dir. We use keepdir so that it might not be unmerged |
21 | # Move plugins dir. We use keepdir so that it might not be unmerged |
| 22 | # by mistake ... |
22 | # by mistake ... |
| 23 | keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
23 | keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
| 24 | cp -a ${D}/$1/* ${D}/usr/$(get_libdir)/${PLUGINS_DIR} |
24 | cp -a "${ED}"/$1/* "${ED}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 25 | rm -rf ${D}/$1 |
25 | rm -rf "${ED}"/$1 |
| 26 | dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
26 | dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
| 27 | } |
27 | } |
| 28 | |
28 | |
| 29 | # This function move plugins in pkg_preinst() in old dir to |
29 | # This function move plugins in pkg_preinst() in old dir to |
| 30 | # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
30 | # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
| 31 | # the full path (without $ROOT) to old plugin dir. |
31 | # the full path (without $ROOT) to old plugin dir. |
| 32 | pkg_mv_plugins() { |
32 | pkg_mv_plugins() { |
|
|
33 | has "${EAPI:-0}" 0 1 2 && ! use prefix && ED="${ROOT}" |
| 33 | |
34 | |
| 34 | # Move old plugins dir |
35 | # Move old plugins dir |
| 35 | if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ] |
36 | if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ] |
| 36 | then |
37 | then |
| 37 | mkdir -p ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
38 | mkdir -p "${EROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 38 | cp -a ${ROOT}/$1/* ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
39 | cp -a "${EROOT}"/$1/* "${EROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 39 | rm -rf ${ROOT}/$1 |
40 | rm -rf "${EROOT}"/$1 |
| 40 | fi |
41 | fi |
| 41 | } |
42 | } |
| 42 | |
43 | |
| 43 | # This function installs a plugin with dosym to PLUGINS_DIR. |
44 | # This function installs a plugin with dosym to PLUGINS_DIR. |
| 44 | # First argument should be the plugin file. |
45 | # First argument should be the plugin file. |
| 45 | inst_plugin() { |
46 | inst_plugin() { |
| 46 | dodir /usr/$(get_libdir)/${PLUGINS_DIR} |
47 | dodir /usr/$(get_libdir)/${PLUGINS_DIR} |
| 47 | dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR} |
48 | dosym ${1} /usr/$(get_libdir)/${PLUGINS_DIR}/$(basename ${1}) |
| 48 | } |
49 | } |