diff options
author | obrien <obrien@FreeBSD.org> | 1998-12-11 08:04:22 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-12-11 08:04:22 +0000 |
commit | 67ae5fda60dff3e1cb52c940060c7f8e919f72b8 (patch) | |
tree | f438d5bab15e53cc5730af3612686ffef9548baa | |
parent | e9f0b5bfe5bcb38c1e5990a33e9654aec4e6b808 (diff) | |
download | FreeBSD-ports-67ae5fda60dff3e1cb52c940060c7f8e919f72b8.zip FreeBSD-ports-67ae5fda60dff3e1cb52c940060c7f8e919f72b8.tar.gz |
Clean up do-install target a little.
-rw-r--r-- | www/netscape4-communicator.us/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/www/netscape4-communicator.us/Makefile b/www/netscape4-communicator.us/Makefile index 897f92e..a098b97 100644 --- a/www/netscape4-communicator.us/Makefile +++ b/www/netscape4-communicator.us/Makefile @@ -4,7 +4,7 @@ # Date created: 14 Feb 1998 # Whom: obrien@cs.ucdavis.edu # -# $Id: Makefile,v 1.4 1998/10/07 13:23:18 obrien Exp $ +# $Id: Makefile,v 1.5 1998/10/19 17:37:36 obrien Exp $ # DISTNAME= communicator-v407-us.x86-unknown-linux2.0_libc5 @@ -53,19 +53,19 @@ pre-fetch: .endif do-install: - cd ${WRKSRC} && yes "" | \ - LC_TIME=C MOZILLA_HOME="${NDIR}" ./ns-install - mv -f ${NDIR}/netscape ${NDIR}/communicator-4.07.us.bin + cd ${WRKSRC} && \ + yes "" | LC_TIME=C MOZILLA_HOME="${NDIR}" ./ns-install + ${MV} -f ${NDIR}/netscape ${NDIR}/communicator-4.07.us.bin ${INSTALL_SCRIPT} ${WRKSRC}/netscape ${BINDIR}/communicator-4.07.us - ln -sf communicator-4.07.us ${BINDIR}/communicator-4.us - ln -sf communicator-4.07.us ${BINDIR}/netscape.us + ${LN} -sf communicator-4.07.us ${BINDIR}/communicator-4.us + ${LN} -sf communicator-4.07.us ${BINDIR}/netscape.us if [ ! -f ${NDIR}/mailcap ] ; then \ - ${INSTALL_DATA} ${FILESDIR}/mailcap ${NDIR}; \ + ${INSTALL_DATA} ${FILESDIR}/mailcap ${NDIR}; \ fi - rm -rf ${NDIR}/netscape-dynMotif - rm -rf ${NDIR}/libnullplugin-dynMotif.so - rm -rf ${NDIR}/movemail-src - chown -R bin.bin ${NDIR} + ${RM} -rf ${NDIR}/netscape-dynMotif + ${RM} -rf ${NDIR}/libnullplugin-dynMotif.so + ${RM} -rf ${NDIR}/movemail-src + chown -R ${BINOWN}.${BINGRP} ${NDIR} post-install: @${CAT} ${PKGDIR}/DESCR |