diff options
author | marcus <marcus@FreeBSD.org> | 2003-11-15 02:18:30 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-11-15 02:18:30 +0000 |
commit | 900d3d3b78be2becdfc03e72b6aae1981c492d58 (patch) | |
tree | 3d9c96e169fbca15d79f20b4af8980e1b4b3e7db /www/seamonkey2 | |
parent | 729844df8b49cc2b739f679f60c0f15ea8b690f2 (diff) | |
download | FreeBSD-ports-900d3d3b78be2becdfc03e72b6aae1981c492d58.zip FreeBSD-ports-900d3d3b78be2becdfc03e72b6aae1981c492d58.tar.gz |
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.
Diffstat (limited to 'www/seamonkey2')
-rw-r--r-- | www/seamonkey2/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/seamonkey2/Makefile b/www/seamonkey2/Makefile index 983419b..b767784 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 |