diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-27 01:01:08 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-27 01:01:08 +0000 |
commit | f07f504808239f4dd6005f79bb145e49b4947c11 (patch) | |
tree | 7811629449e2414bae88ea387269ba55abd90884 /news | |
parent | - ECHO -> ECHO_MSG (diff) |
KATO mega patch
- ECHO -> ECHO_MSG
For some ports:
- pre-fetch -> pre-everything
- ECHO -> ECHO_CMD
PR: ports/56820-56858
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Notes
Notes:
svn path=/head/; revision=89492
Diffstat (limited to 'news')
-rw-r--r-- | news/nntpcache/Makefile | 14 | ||||
-rw-r--r-- | news/pyne/Makefile | 2 | ||||
-rw-r--r-- | news/trn/Makefile | 12 |
3 files changed, 14 insertions, 14 deletions
diff --git a/news/nntpcache/Makefile b/news/nntpcache/Makefile index 1a6c55c22962..e264e7c596e2 100644 --- a/news/nntpcache/Makefile +++ b/news/nntpcache/Makefile @@ -62,13 +62,13 @@ MAN8= nntpcached.8 newshound.8 DOCS= AUTHORS ChangeLog FAQ FAQ.html HACKING HTML \ INSTALL LICENSING NEWS README README.INN VERSION +pre-everything:: .if !defined(BATCH) -post-fetch: - @${ECHO} "To enable LDAP support use either:" - @${ECHO} " WITH_LDAP - LDAP v1 support" - @${ECHO} " WITH_LDAP2 - LDAP v2 support" - @${ECHO} - @${ECHO} "To disable radius support use WITHOUT_RADIUS" + @${ECHO_MSG} "To enable LDAP support use either:" + @${ECHO_MSG} " WITH_LDAP - LDAP v1 support" + @${ECHO_MSG} " WITH_LDAP2 - LDAP v2 support" + @${ECHO_MSG} + @${ECHO_MSG} "To disable radius support use WITHOUT_RADIUS" .endif post-configure: @@ -79,7 +79,7 @@ post-install: @ ${SED} -e 's#%%PREFIX%%#${PREFIX}#g' ${FILESDIR}/nntpcached.rc \ > ${WRKDIR}/nntpcached.sh .if !defined(BATCH) - @ ${ECHO} "Installing ${PREFIX}/etc/rc.d/nntpcached.sh startup file" + @ ${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/nntpcached.sh startup file" .endif @ ${INSTALL_SCRIPT} -m 751 ${WRKDIR}/nntpcached.sh \ ${PREFIX}/etc/rc.d diff --git a/news/pyne/Makefile b/news/pyne/Makefile index f31801bf11f6..f29a2ad30479 100644 --- a/news/pyne/Makefile +++ b/news/pyne/Makefile @@ -43,7 +43,7 @@ pre-install: @${RM} -f ${WRKDIR}/.Xvfb.pid .endif - ${X11BASE}/bin/Xvfb :1001 -screen 0 800x600x24 > /dev/null 2>&1 & ${ECHO} $$! > \ + ${X11BASE}/bin/Xvfb :1001 -screen 0 800x600x24 > /dev/null 2>&1 & ${ECHO_CMD} $$! > \ ${WRKDIR}/.Xvfb.pid @${REINPLACE_CMD} -e "s@--compile@--compile --display ${DISPLAYHACK}@" \ ${WRKSRC}/Makefile diff --git a/news/trn/Makefile b/news/trn/Makefile index 3fc07d4e0f11..0560688db364 100644 --- a/news/trn/Makefile +++ b/news/trn/Makefile @@ -25,12 +25,12 @@ CONFIGURE_ARGS= -S post-install: .if !defined(BATCH) - @${ECHO} "" - @${ECHO} "############################################################################" - @${ECHO} "# Please edit lines 48 through 69 in ${PREFIX}/bin/Pnews #" - @${ECHO} "# to customize news posting for your site. #" - @${ECHO} "# Remember to set the NNTPSERVER environment variable to your news server. #" - @${ECHO} "############################################################################" + @${ECHO_MSG} "" + @${ECHO_MSG} "############################################################################" + @${ECHO_MSG} "# Please edit lines 48 through 69 in ${PREFIX}/bin/Pnews #" + @${ECHO_MSG} "# to customize news posting for your site. #" + @${ECHO_MSG} "# Remember to set the NNTPSERVER environment variable to your news server. #" + @${ECHO_MSG} "############################################################################" .endif .include <bsd.port.mk> |