Mnemosyne is a abstract distribution originally designed for ROCKLinux, but currently only support the trunk of OpenSDE.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.4 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: target/mnemosyne/pkg_conf/firefox.conf
  5. # Copyright (C) 2002 - 2006 Alejandro Mery
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; version 2 of the License. A copy of the
  12. # GNU General Public License can be found in the file COPYING.
  13. # --- SDE-COPYRIGHT-NOTE-END ---
  14. hook_add postmake 5 'mnemosyne_firefox_openurl'
  15. hook_add postmake 6 'mnemosyne_firefox_prefs'
  16. mnemosyne_firefox_openurl() {
  17. cat <<-EOT > $bindir/$pkg-openurl.sh
  18. #!/bin/sh
  19. export MOZILLA_FIVE_HOME="$libdir/$pkg-$ver"
  20. export LD_LIBRARY_PATH=\$MOZILLA_FIVE_HOME:\$LD_LIBRARY_PATH
  21. url="\$1" what="\$2"
  22. [ -n "\$url" ] || url="about:blank"
  23. [ -n "\$what" ] || what="new-tab"
  24. MOZXREMOTE="\$MOZILLA_FIVE_HOME/mozilla-xremote-client -a $pkg"
  25. if \$MOZXREMOTE 'ping()'; then
  26. exec \$MOZXREMOTE "openURL(\$url,\$what)"
  27. else
  28. exec $bindir/$pkg "\$url" &
  29. fi
  30. EOT
  31. chmod +x $bindir/$pkg-openurl.sh
  32. }
  33. mnemosyne_firefox_prefs() {
  34. if pkginstalled thunderbird; then
  35. cat<<-EOT >> $libdir/${pkg}-${ver}/defaults/pref/firefox.js
  36. pref("network.protocol-handler.app.mailto", "${bindir//$pkg/thunderbird}/thunderbird-mailto.sh");
  37. EOT
  38. fi
  39. }