[Indic-computing-cvs-logs] SF.net SVN: indic-computing: [305] doc/trunk/en_US.ISO8859-1/website/ Ma
Status: Alpha
Brought to you by:
jkoshy
From: <jk...@us...> - 2007-10-12 05:55:41
|
Revision: 305 http://indic-computing.svn.sourceforge.net/indic-computing/?rev=305&view=rev Author: jkoshy Date: 2007-10-11 22:55:45 -0700 (Thu, 11 Oct 2007) Log Message: ----------- Replace the use of "peps" with an invocation of ghostscript and pnmtopng. Modified Paths: -------------- doc/trunk/en_US.ISO8859-1/website/Makefile Modified: doc/trunk/en_US.ISO8859-1/website/Makefile =================================================================== --- doc/trunk/en_US.ISO8859-1/website/Makefile 2007-10-12 05:53:08 UTC (rev 304) +++ doc/trunk/en_US.ISO8859-1/website/Makefile 2007-10-12 05:55:45 UTC (rev 305) @@ -60,6 +60,12 @@ IMAGES= logo.png logolarge.png IMAGESCOOKIE= .images +GHOSTSCRIPT?= gs +PNMTOPNG= pnmtopng +EPS2PNM= ${GHOSTSCRIPT} -q -dBATCH -dGraphicsAlphaBits=4 \ + -dTextAlphaBits=4 -dNOPAUSE -dSAFER -sDEVICE=pnm \ + -dEPSCrop -sOutputFile=- + STAGEDIR?= ${.CURDIR}/stage RSYNC?= rsync --delete --delete-after -z @@ -77,7 +83,7 @@ cp -p ${file} ${IMAGEDIR}/ .endfor @touch ${.TARGET} - + ${WEBSITECOOKIE}: ${WEBMAKEFILE} ${INDIC_DOCUMENTATION} ${METADATA} \ ${WEBSITECONTENT} ${WEBMAKE} @@ -110,10 +116,10 @@ >> ${.TARGET} logo.png: logo.eps - peps -r 30 -p ${.ALLSRC} > ${.TARGET} + ${EPS2PNM} -r30 ${.ALLSRC} | ${PNMTOPNG} > ${.TARGET} logolarge.png: logo.eps - peps -r 85 -p ${.ALLSRC} > ${.TARGET} + ${EPS2PNM} -r85 ${.ALLSRC} | ${PNMTOPNG} > ${.TARGET} clean: rm -f $$(${WEBMAKE} -o) @@ -147,4 +153,3 @@ -f ${INDIC_${target:U}_DIR}/HTML.manifest -p "${target}." \ -i ${IMAGEDIR} -C ${INDIC_${target:U}_CVS} .endfor - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |