Index: pkg-deinstall.in =================================================================== RCS file: /home/pcvs/ports/www/mozilla/pkg-deinstall.in,v retrieving revision 1.11 diff -u -r1.11 pkg-deinstall.in --- pkg-deinstall.in 8 May 2006 19:06:29 -0000 1.11 +++ pkg-deinstall.in 31 Jul 2006 20:57:08 -0000 @@ -23,5 +23,7 @@ rm -f ${MOZDIR}/defaults.ini rm -f ${MOZDIR}/chrome/app-chrome.manifest rm -rf ${MOZDIR}/updates +find %%MOZDIR%%/plugins/ -depth 1 -type l -delete > /dev/null 2>&1 +find %%MOZDIR%%/extensions/ -depth 1 -type l -delete > /dev/null 2>&1 exit 0 Index: pkg-install.in =================================================================== RCS file: /home/pcvs/ports/www/mozilla/pkg-install.in,v retrieving revision 1.14 diff -u -r1.14 pkg-install.in --- pkg-install.in 2 May 2006 19:00:01 -0000 1.14 +++ pkg-install.in 31 Jul 2006 20:57:08 -0000 @@ -37,5 +37,7 @@ if [ ! -d %%PREFIX%%/lib/browser_plugins ]; then mkdir -p %%PREFIX%%/lib/browser_plugins fi +cp -R %%LOCALBASE%%/lib/npapi/symlinks/%%MOZILLA%%/ %%MOZDIR%%/plugins/ > /dev/null 2>&1 +cp -R %%LOCALBASE%%/lib/xpi/symlinks/%%MOZILLA%%/ %%MOZDIR%%/extensions/ > /dev/null 2>&1 exit 0