| 1 | # Copyright 1999-2004 Gentoo Foundation |
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 $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.16 2005/03/18 09:30:50 genstef 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 | |
| … | |
… | |
| 43 | } |
43 | } |
| 44 | |
44 | |
| 45 | # This function installs a plugin with dosym to PLUGINS_DIR. |
45 | # This function installs a plugin with dosym to PLUGINS_DIR. |
| 46 | # First argument should be the plugin file. |
46 | # First argument should be the plugin file. |
| 47 | inst_plugin() { |
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} |
48 | 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} |
49 | 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 | } |
50 | } |
| 64 | |
|
|