diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-28 05:14:04 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-28 05:14:04 +0800 |
commit | 981aafd51d07e05ddd72e92094db0a39a35d8a23 (patch) | |
tree | 72d3d7150282d19ce68e2126dc5e731712d27a03 /graphics | |
parent | e478897177c3c4652e7277c09503273dfff9dd3a (diff) | |
download | freebsd-ports-gnome-981aafd51d07e05ddd72e92094db0a39a35d8a23.tar.gz freebsd-ports-gnome-981aafd51d07e05ddd72e92094db0a39a35d8a23.tar.zst freebsd-ports-gnome-981aafd51d07e05ddd72e92094db0a39a35d8a23.zip |
echo -> ${ECHO} or ${ECHO_MSG} and in some cases, move echo stuff
to pkg/MESSAGE and use ${CAT} ${PKGMESSAGE}
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gracula/Makefile | 14 | ||||
-rw-r--r-- | graphics/gracula/pkg-message | 12 | ||||
-rw-r--r-- | graphics/hdf/Makefile | 4 | ||||
-rw-r--r-- | graphics/hdf5/Makefile | 4 |
4 files changed, 17 insertions, 17 deletions
diff --git a/graphics/gracula/Makefile b/graphics/gracula/Makefile index 5f4cf0e775fc..bef9384ae40b 100644 --- a/graphics/gracula/Makefile +++ b/graphics/gracula/Makefile @@ -20,18 +20,6 @@ do-install: ${MKDIR} ${PREFIX}/share/doc/gracula ${INSTALL_MAN} ${WRKSRC}/NNL ${PREFIX}/share/doc/gracula ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/gracula - @echo - @echo " Please read the file ${PREFIX}/share/doc/gracula/README" - @echo " to learn how to use Graphic Counter Language." -.endif - @echo - @echo " An introductory tutorial, and a GCL FAQ, can be found at" - @echo " http://www.whizkidtech.net/gcl/" - @echo " You should read both to take full advantage of the power" - @echo " of Graphic Counter Language." - @echo - @echo " Also, sample scripts and graphics are available from" - @echo " Count Gracula's Gallery, http://www.whizkidtech.net/gcl/gallery/" - @echo + @${CAT} ${PKGMESSAGE} .include <bsd.port.mk> diff --git a/graphics/gracula/pkg-message b/graphics/gracula/pkg-message new file mode 100644 index 000000000000..f63e515ba9ae --- /dev/null +++ b/graphics/gracula/pkg-message @@ -0,0 +1,12 @@ + + Please read the file ${PREFIX}/share/doc/gracula/README + to learn how to use Graphic Counter Language. + + An introductory tutorial, and a GCL FAQ, can be found at + http://www.whizkidtech.net/gcl/ + You should read both to take full advantage of the power + of Graphic Counter Language. + + Also, sample scripts and graphics are available from + Count Gracula's Gallery, http://www.whizkidtech.net/gcl/gallery/ + diff --git a/graphics/hdf/Makefile b/graphics/hdf/Makefile index 64020af01685..594775c8ea68 100644 --- a/graphics/hdf/Makefile +++ b/graphics/hdf/Makefile @@ -37,7 +37,7 @@ pre-build: ${ECHO} #Phony makefile > ${WRKSRC}/hdf/jpeg/Makefile ${ECHO} >> ${WRKSRC}/hdf/jpeg/Makefile ${ECHO} libjpeg.a: >> ${WRKSRC}/hdf/jpeg/Makefile - printf '\t@echo Using the already installed JPEG library\n' \ + printf '\t@${ECHO} Using the already installed JPEG library\n' \ >> ${WRKSRC}/hdf/jpeg/Makefile printf '\nclean:\n\ttrue\n' >> ${WRKSRC}/hdf/jpeg/Makefile printf '\ninstall-lib:\n\ttrue\n' >> ${WRKSRC}/hdf/jpeg/Makefile @@ -51,7 +51,7 @@ pre-build: ${ECHO} #Phony makefile > ${WRKSRC}/hdf/zlib/Makefile ${ECHO} >> ${WRKSRC}/hdf/zlib/Makefile ${ECHO} libzlib.a: >> ${WRKSRC}/hdf/zlib/Makefile - printf '\t@echo Using the already installed ZLIB library\n' \ + printf '\t@${ECHO} Using the already installed ZLIB library\n' \ >> ${WRKSRC}/hdf/zlib/Makefile printf '\nclean:\n\ttrue\n' >> ${WRKSRC}/hdf/zlib/Makefile printf '\ninstall-lib:\n\ttrue\n' >> ${WRKSRC}/hdf/zlib/Makefile diff --git a/graphics/hdf5/Makefile b/graphics/hdf5/Makefile index 64020af01685..594775c8ea68 100644 --- a/graphics/hdf5/Makefile +++ b/graphics/hdf5/Makefile @@ -37,7 +37,7 @@ pre-build: ${ECHO} #Phony makefile > ${WRKSRC}/hdf/jpeg/Makefile ${ECHO} >> ${WRKSRC}/hdf/jpeg/Makefile ${ECHO} libjpeg.a: >> ${WRKSRC}/hdf/jpeg/Makefile - printf '\t@echo Using the already installed JPEG library\n' \ + printf '\t@${ECHO} Using the already installed JPEG library\n' \ >> ${WRKSRC}/hdf/jpeg/Makefile printf '\nclean:\n\ttrue\n' >> ${WRKSRC}/hdf/jpeg/Makefile printf '\ninstall-lib:\n\ttrue\n' >> ${WRKSRC}/hdf/jpeg/Makefile @@ -51,7 +51,7 @@ pre-build: ${ECHO} #Phony makefile > ${WRKSRC}/hdf/zlib/Makefile ${ECHO} >> ${WRKSRC}/hdf/zlib/Makefile ${ECHO} libzlib.a: >> ${WRKSRC}/hdf/zlib/Makefile - printf '\t@echo Using the already installed ZLIB library\n' \ + printf '\t@${ECHO} Using the already installed ZLIB library\n' \ >> ${WRKSRC}/hdf/zlib/Makefile printf '\nclean:\n\ttrue\n' >> ${WRKSRC}/hdf/zlib/Makefile printf '\ninstall-lib:\n\ttrue\n' >> ${WRKSRC}/hdf/zlib/Makefile |