mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
15b6544926
plugins support one of web browsers and can take care of plist (depend on how you use it) at the same time. I have written a complete document and even show how it works in the www/firefox/Makefile.webplugins so be sure to read in there. If there is anything that isn't clear in the document, please feel free to ask and I will try my best to improvement it. FYI: GNOME 2.24 depends on this, so it's coming. BTW: It's based on www/linux-mplayer-plugin/Makefile.npapi with heavy modified. Approved by: portmgr
22 lines
935 B
Bash
22 lines
935 B
Bash
--- build/unix/run-mozilla.sh.orig Sat Oct 1 01:36:47 2005
|
|
+++ build/unix/run-mozilla.sh Thu Dec 22 17:51:10 2005
|
|
@@ -328,7 +328,7 @@
|
|
fi
|
|
##
|
|
## Set LD_LIBRARY_PATH
|
|
-LD_LIBRARY_PATH=${MOZ_DIST_BIN}:${MOZ_DIST_BIN}/plugins:${MRE_HOME}${LD_LIBRARY_PATH+":$LD_LIBRARY_PATH"}
|
|
+LD_LIBRARY_PATH=${MOZ_DIST_BIN}:%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko18:%%LOCALBASE%%/lib/npapi/symlinks/seamonkey:${MOZ_DIST_BIN}/plugins:${MRE_HOME}${LD_LIBRARY_PATH+":$LD_LIBRARY_PATH"}
|
|
if [ -n "$LD_LIBRARYN32_PATH" ]
|
|
then
|
|
LD_LIBRARYN32_PATH=${MOZ_DIST_BIN}:${MOZ_DIST_BIN}/plugins:${MRE_HOME}${LD_LIBRARYN32_PATH+":$LD_LIBRARYN32_PATH"}
|
|
@@ -415,6 +415,9 @@
|
|
#
|
|
export MOZILLA_FIVE_HOME LD_LIBRARY_PATH
|
|
export SHLIB_PATH LIBPATH LIBRARY_PATH ADDON_PATH DYLD_LIBRARY_PATH
|
|
+
|
|
+MOZ_PLUGIN_PATH=%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko18:%%LOCALBASE%%/lib/npapi/symlinks/seamonkey
|
|
+export MOZ_PLUGIN_PATH
|
|
|
|
if [ $moz_debug -eq 1 ]
|
|
then
|