diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2006-11-08 20:37:16 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2006-11-08 20:37:16 +0000 |
commit | a3de83a2ead60595c1bd49aecff87104405e0161 (patch) | |
tree | 0aa38c8124e06820426f29ddced7c7f50762f062 /eclass/mozilla-launcher.eclass | |
parent | Version bump, thanks to James Cloos <cloos@jhcloos.com>, bug #142921 (diff) | |
download | gentoo-2-a3de83a2ead60595c1bd49aecff87104405e0161.tar.gz gentoo-2-a3de83a2ead60595c1bd49aecff87104405e0161.tar.bz2 gentoo-2-a3de83a2ead60595c1bd49aecff87104405e0161.zip |
Add moznopango USE flag support.
Diffstat (limited to 'eclass/mozilla-launcher.eclass')
-rw-r--r-- | eclass/mozilla-launcher.eclass | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/eclass/mozilla-launcher.eclass b/eclass/mozilla-launcher.eclass index b46901f7abef..db283dbfca7a 100644 --- a/eclass/mozilla-launcher.eclass +++ b/eclass/mozilla-launcher.eclass @@ -1,9 +1,13 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla-launcher.eclass,v 1.12 2005/07/28 21:06:03 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla-launcher.eclass,v 1.13 2006/11/08 20:37:16 kloeri Exp $ inherit nsplugins multilib +if ! [[ ${PN: -4} == "-bin" ]] ; then + IUSE="moznopango" +fi + # update_mozilla_launcher_symlinks # -------------------------------- # Create or remove the following symlinks in /usr/bin: @@ -65,6 +69,8 @@ install_mozilla_launcher_stub() { declare libdir=$2 dodir /usr/bin + + if [[ ${PN: -4} == "-bin" ]] | use ! moznopango; then cat <<EOF >${D}/usr/bin/${name} #!/bin/sh # @@ -77,5 +83,29 @@ export MOZILLA_LIBDIR=${libdir} export MOZ_PLUGIN_PATH=\${MOZ_PLUGIN_PATH:-/usr/$(get_libdir)/$PLUGINS_DIR} exec /usr/libexec/mozilla-launcher "\$@" EOF + else + cat <<EOF >${D}/usr/bin/${name} +#!/bin/sh +# +# Stub script to run mozilla-launcher. We used to use a symlink here +# but OOo brokenness makes it necessary to use a stub instead: +# http://bugs.gentoo.org/show_bug.cgi?id=78890 + +export MOZILLA_LAUNCHER=${name} +export MOZILLA_LIBDIR=${libdir} +export MOZ_PLUGIN_PATH=\${MOZ_PLUGIN_PATH:-/usr/$(get_libdir)/$PLUGINS_DIR} +export MOZ_DISABLE_PANGO=1 +exec /usr/libexec/mozilla-launcher "\$@" +EOF + fi chmod 0755 ${D}/usr/bin/${name} } + +warn_mozilla_launcher_stub() { + + elog "Not all locales support the disabling of pango." + elog "If your locale does not support disabling pango," + elog "please open a bug report on http://bugs.gentoo.org" + elog "Then we can filter around the problem with those" + elog "specific locales." +} |