| 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.15 2004/10/25 02:29:18 eradicator 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 | |
| 9 | inherit eutils |
9 | inherit eutils |
| 10 | |
|
|
| 11 | ECLASS=nsplugins |
|
|
| 12 | INHERITED="$INHERITED $ECLASS" |
|
|
| 13 | |
10 | |
| 14 | DESCRIPTION="Based on the ${ECLASS} eclass" |
11 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 15 | |
12 | |
| 16 | PLUGINS_DIR="nsbrowser/plugins" |
13 | PLUGINS_DIR="nsbrowser/plugins" |
| 17 | |
14 | |
| … | |
… | |
| 21 | src_mv_plugins() { |
18 | src_mv_plugins() { |
| 22 | |
19 | |
| 23 | # 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 |
| 24 | # by mistake ... |
21 | # by mistake ... |
| 25 | keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
22 | keepdir /usr/$(get_libdir)/${PLUGINS_DIR} |
| 26 | cp -a ${D}/$1/* ${D}/usr/$(get_libdir)/${PLUGINS_DIR} |
23 | cp -a "${D}"/$1/* "${D}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 27 | rm -rf ${D}/$1 |
24 | rm -rf "${D}"/$1 |
| 28 | dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
25 | dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 |
| 29 | } |
26 | } |
| 30 | |
27 | |
| 31 | # This function move plugins in pkg_preinst() in old dir to |
28 | # This function move plugins in pkg_preinst() in old dir to |
| 32 | # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
29 | # ${ROOT}/usr/$(get_libdir)/${PLUGIN_DIR}. First argument should be |
| 33 | # the full path (without $ROOT) to old plugin dir. |
30 | # the full path (without $ROOT) to old plugin dir. |
| 34 | pkg_mv_plugins() { |
31 | pkg_mv_plugins() { |
| 35 | |
32 | |
| 36 | # Move old plugins dir |
33 | # Move old plugins dir |
| 37 | if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ] |
34 | if [[ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ]] |
| 38 | then |
35 | then |
| 39 | mkdir -p ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
36 | mkdir -p "${ROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 40 | cp -a ${ROOT}/$1/* ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} |
37 | cp -a "${ROOT}"/$1/* "${ROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} |
| 41 | rm -rf ${ROOT}/$1 |
38 | rm -rf "${ROOT}"/$1 |
| 42 | fi |
39 | fi |
| 43 | } |
40 | } |
| 44 | |
41 | |
| 45 | # This function installs a plugin with dosym to PLUGINS_DIR. |
42 | # This function installs a plugin with dosym to PLUGINS_DIR. |
| 46 | # First argument should be the plugin file. |
43 | # First argument should be the plugin file. |
| 47 | inst_plugin() { |
44 | 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} |
45 | 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} |
46 | 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 | } |
47 | } |
| 64 | |
|
|