summaryrefslogtreecommitdiff
path: root/www/seamonkey2
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-11-15 02:18:30 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-11-15 02:18:30 +0000
commit3d914605fab2bc1e1201869d908f764b4f1b1304 (patch)
treea234a2f432e8a48e5c8d2049ef767aab76095291 /www/seamonkey2
parentUnPERLify. (diff)
Only add the plug-in symlink to the plist if we're actually going to create
it. This fixes a packaging problem on bento. Also, break out of the for loop once we find a suitable plug-in.
Notes
Notes: svn path=/head/; revision=93986
Diffstat (limited to 'www/seamonkey2')
-rw-r--r--www/seamonkey2/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/www/seamonkey2/Makefile b/www/seamonkey2/Makefile
index 983419baa827..b767784d4fac 100644
--- a/www/seamonkey2/Makefile
+++ b/www/seamonkey2/Makefile
@@ -242,7 +242,12 @@ pre-install:
fi
${ECHO_CMD} bin/${MOZILLA} >> ${PLIST}
if [ ! -L ${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so ]; then \
- ${ECHO_CMD} lib/browser_plugins/libjavaplugin_oji.so >> ${PLIST} ; \
+ for jpi in ${JPI_LIST}; do \
+ if [ -f $${jpi} ]; then \
+ ${ECHO_CMD} lib/browser_plugins/libjavaplugin_oji.so >> ${PLIST} ; \
+ break; \
+ fi; \
+ done; \
${ECHO_CMD} @dirrm lib/browser_plugins >> ${PLIST} ; \
fi
cd ${WRKSRC}/dist/bin && ${FIND} -s * -type f -o -type l | \
@@ -271,6 +276,7 @@ do-install:
if [ -f $${jpi} ]; then \
${LN} -sf $${jpi} \
${PREFIX}/lib/browser_plugins/libjavaplugin_oji.so ; \
+ break; \
fi; \
done; \
fi