summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2006-09-03 10:20:34 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2006-09-03 10:20:34 +0000
commitfa3b89f2a234006671656c7943ff4bea9cd229af (patch)
treea6dfbca780b7416e8787c03c233959e9996dd29f /www-client/mozilla-launcher/files
parentStable on ia64. (diff)
downloadgentoo-2-fa3b89f2a234006671656c7943ff4bea9cd229af.tar.gz
gentoo-2-fa3b89f2a234006671656c7943ff4bea9cd229af.tar.bz2
gentoo-2-fa3b89f2a234006671656c7943ff4bea9cd229af.zip
Added version with optional media-libs/alsa-oss support.
(Portage version: 2.1.1_rc1-r2)
Diffstat (limited to 'www-client/mozilla-launcher/files')
-rw-r--r--www-client/mozilla-launcher/files/digest-mozilla-launcher-1.52-r13
-rw-r--r--www-client/mozilla-launcher/files/mozilla-launcher-1.52-aoss.patch47
2 files changed, 50 insertions, 0 deletions
diff --git a/www-client/mozilla-launcher/files/digest-mozilla-launcher-1.52-r1 b/www-client/mozilla-launcher/files/digest-mozilla-launcher-1.52-r1
new file mode 100644
index 000000000000..dce77d320cf7
--- /dev/null
+++ b/www-client/mozilla-launcher/files/digest-mozilla-launcher-1.52-r1
@@ -0,0 +1,3 @@
+MD5 300a02d68c26a59a76eb72f24f251816 mozilla-launcher-1.52.bz2 6142
+RMD160 ca267cacb6b84b3b16f97ee3c16836329d4e818b mozilla-launcher-1.52.bz2 6142
+SHA256 9da6dcdbf3a19e904fe15d765cb9ff12a64d8033aa8ec64121af7b60f335b3b6 mozilla-launcher-1.52.bz2 6142
diff --git a/www-client/mozilla-launcher/files/mozilla-launcher-1.52-aoss.patch b/www-client/mozilla-launcher/files/mozilla-launcher-1.52-aoss.patch
new file mode 100644
index 000000000000..173ae6babd84
--- /dev/null
+++ b/www-client/mozilla-launcher/files/mozilla-launcher-1.52-aoss.patch
@@ -0,0 +1,47 @@
+--- - 2006-08-15 16:37:08.286834431 +0200
++++ mozilla-launcher-1.52 2006-08-15 16:37:05.000000000 +0200
+@@ -139,7 +139,7 @@
+ *fox)
+ export MOZILLA_FIVE_HOME=${MOZILLA_LIBDIR:-"/usr/lib/MozillaFirefox"}
+ remote=$MOZILLA_FIVE_HOME/mozilla-xremote-client
+- mozbin=$MOZILLA_FIVE_HOME/firefox-bin
++ mozbin="/usr/bin/aoss $MOZILLA_FIVE_HOME/firefox-bin"
+ ;;
+
+ *mozilla)
+@@ -186,7 +186,7 @@
+ *fox-bin)
+ export MOZILLA_FIVE_HOME=${MOZILLA_LIBDIR:-"/opt/firefox"}
+ remote=$MOZILLA_FIVE_HOME/mozilla-xremote-client
+- mozbin=$MOZILLA_FIVE_HOME/firefox-bin
++ mozbin="/usr/bin/aoss $MOZILLA_FIVE_HOME/firefox-bin"
+ ;;
+
+ *mozilla-bin)
+@@ -215,7 +215,7 @@
+ esac
+
+ # Make sure we got something
+- if [[ -z $mozbin || ! -f $mozbin ]]; then
++ if [[ -z "$mozbin" ]]; then
+ echo "$0: can't find the browser :-(" >&2
+ return 1
+ fi
+@@ -417,7 +417,7 @@
+ # compreg.dat and/or chrome.rdf will screw things up if it's from an
+ # older version. http://bugs.gentoo.org/show_bug.cgi?id=63999
+ for f in ~/{.,.mozilla/}${zero%-bin}/*/{compreg.dat,chrome.rdf,XUL.mfasl}; do
+- if [[ -f ${f} && ${f} -ot ${mozbin} ]]; then
++ if [[ -f ${f} && ${f} -ot "${mozbin}" ]]; then
+ echo "Removing ${f} leftover from older ${zero%-bin}"
+ rm -f "${f}"
+ fi
+@@ -447,7 +447,7 @@
+ MOZ_NO_REMOTE=1 "$mozbin" "$@" &
+ ;;
+ *)
+- "$mozbin" "$@" &
++ $mozbin "$@" &
+ ;;
+ esac
+ fi