| 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.17 2005/07/06 20:20:04 agriffis 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 | |
10 | |
| 11 | ECLASS=nsplugins |
|
|
| 12 | INHERITED="$INHERITED $ECLASS" |
11 | INHERITED="$INHERITED $ECLASS" |
| 13 | |
12 | |
| 14 | DESCRIPTION="Based on the ${ECLASS} eclass" |
13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
| 15 | |
14 | |
| 16 | PLUGINS_DIR="nsbrowser/plugins" |
15 | PLUGINS_DIR="nsbrowser/plugins" |
| … | |
… | |
| 43 | } |
42 | } |
| 44 | |
43 | |
| 45 | # This function installs a plugin with dosym to PLUGINS_DIR. |
44 | # This function installs a plugin with dosym to PLUGINS_DIR. |
| 46 | # First argument should be the plugin file. |
45 | # First argument should be the plugin file. |
| 47 | inst_plugin() { |
46 | 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} |
47 | 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} |
48 | 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 | } |
49 | } |
| 64 | |
|
|