diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2003-02-24 16:23:50 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2003-02-24 16:23:50 +0000 |
commit | 5500b8d3261892b79fb6c9d03ae33d0386358f0d (patch) | |
tree | fe2b0a495575bb41c2572af9ec38766b8898c9f0 /www/frontpage/Makefile | |
parent | Do a better job of stating which port we had problems with while (diff) |
- fix the file permission problem by running the ${FPSETPERM} script
- remove the extra files created by the ${REINPLACE_CMD}
PR: 48555
Submitted by: Scot W. Hetzel <hetzels@westbend.net>
Notes
Notes:
svn path=/head/; revision=76404
Diffstat (limited to 'www/frontpage/Makefile')
-rw-r--r-- | www/frontpage/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/frontpage/Makefile b/www/frontpage/Makefile index 1711c7602e4f..f72a2d5c2b28 100644 --- a/www/frontpage/Makefile +++ b/www/frontpage/Makefile @@ -117,6 +117,9 @@ do-install: @${ECHO_MSG} "===> Untaring FrontPage Extensions to ${PREFIX}" @(cd ${PREFIX} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${FRONTPAGE} ${EXTRACT_AFTER_ARGS}) @${REINPLACE_CMD} -e 's:IMAGESDIR:../images/:g' ${PREFIX}/${FPCSS} + @if [ -f ${PREFIX}/${FPCSS} ]; then \ + ${RM} ${PREFIX}/${FPCSS}.bak ; \ + fi @${RM} ${PREFIX}/${FPHTTPD}/httpd @${MKDIR} ${MOD_FPDOCDIR} @${CP} ${PREFIX}/${README} ${MOD_FPDOCDIR}/index.html @@ -125,5 +128,6 @@ do-install: post-install: @${CAT} ${PKGMESSAGE} + @${PREFIX}/${FPSETPERM} .include <bsd.port.post.mk> |