diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-10-23 03:01:56 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-10-23 03:01:56 +0800 |
commit | 1d58b39ab4187dddad75379fb1b1799099155ac4 (patch) | |
tree | ddd9cf1c2c46bd9107434697b91bcc6f752004d5 /www/seamonkey/Makefile | |
parent | 47ef851e745f893690653717bdd4600c7197a998 (diff) | |
download | marcuscom-ports-1d58b39ab4187dddad75379fb1b1799099155ac4.tar marcuscom-ports-1d58b39ab4187dddad75379fb1b1799099155ac4.tar.gz marcuscom-ports-1d58b39ab4187dddad75379fb1b1799099155ac4.tar.bz2 marcuscom-ports-1d58b39ab4187dddad75379fb1b1799099155ac4.tar.lz marcuscom-ports-1d58b39ab4187dddad75379fb1b1799099155ac4.tar.xz marcuscom-ports-1d58b39ab4187dddad75379fb1b1799099155ac4.tar.zst marcuscom-ports-1d58b39ab4187dddad75379fb1b1799099155ac4.zip |
Use ${MOZILLA} instead of mozilla in a few places to fix the install.
Spotted by: DomiX on #freebsd-gnome
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3008 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/seamonkey/Makefile')
-rw-r--r-- | www/seamonkey/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index 24fecc7fb..7fca28ab4 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -292,7 +292,7 @@ pre-install: fi ${ECHO_CMD} lib/${MOZILLA}/mozilla >> ${PLIST} ${ECHO_CMD} lib/${MOZILLA}/mozilla-config >> ${PLIST} - cd ${FAKEDIR}/lib/mozilla && ${FIND} -s * -type f -o -type l | \ + cd ${FAKEDIR}/lib/${MOZILLA} && ${FIND} -s * -type f -o -type l | \ ${SED} -e 's:^:lib/${MOZILLA}/:' >> ${PLIST} \ && ${FIND} -d * -type d | \ ${SED} -e 's:^:@dirrm lib/${MOZILLA}/:' >> ${PLIST} @@ -314,7 +314,7 @@ do-install: ${REINPLACE_CMD} -e 's|${FAKEDIR}|${PREFIX}|g' \ ${PREFIX}/lib/${MOZILLA}/mozilla \ ${PREFIX}/lib/${MOZILLA}/mozilla-config - cd ${FAKEDIR}/lib/mozilla && ${FIND} . | \ + cd ${FAKEDIR}/lib/${MOZILLA} && ${FIND} . | \ ${CPIO} -pdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/lib/${MOZILLA} ${INSTALL_SCRIPT} ${WRKSRC}/${MOZILLA} ${PREFIX}/bin if [ ! -x ${PREFIX}/bin/mozilla -a ! -L ${PREFIX}/bin/mozilla ]; then \ |