From: <ai...@us...> - 2013-12-22 02:44:39
|
Revision: 12905 http://sourceforge.net/p/plplot/code/12905 Author: airwin Date: 2013-12-22 02:44:37 +0000 (Sun, 22 Dec 2013) Log Message: ----------- Propagate decision to drop PostScript form of documentation to one last bit of CMake logic in the build system where I forgot to make the change, and also for the generated website. Tested by: Alan W. Irwin <ai...@us...> on Linux by running the scripts/generate_website.sh script described in README.Release_Manager_Cookbook, and by carefully checking the local website (especially the html and pdf forms of the docbook documentation and the html form of the doxygen documentation that is generated by that script) using the konqueror browser. Modified Paths: -------------- trunk/doc/docbook/src/CMakeLists.txt trunk/www/documentation.php.in Modified: trunk/doc/docbook/src/CMakeLists.txt =================================================================== --- trunk/doc/docbook/src/CMakeLists.txt 2013-12-22 02:36:53 UTC (rev 12904) +++ trunk/doc/docbook/src/CMakeLists.txt 2013-12-22 02:44:37 UTC (rev 12905) @@ -884,13 +884,19 @@ if(BUILD_PRINT) list(APPEND tarball_list - ${BASE}.ps.gz ${BASE}.pdf ) list(APPEND tarball_depends_list - ${BASE}.ps.gz ${BASE}.pdf ) + if(NOT DOCBOOK_XML_BACKEND) + list(APPEND tarball_list + ${BASE}.ps.gz + ) + list(APPEND tarball_depends_list + ${BASE}.ps.gz + ) + endif(NOT DOCBOOK_XML_BACKEND) if(BUILD_DVI) list(APPEND tarball_list ${BASE}.dvi) list(APPEND tarball_depends_list ${BASE}.dvi) Modified: trunk/www/documentation.php.in =================================================================== --- trunk/www/documentation.php.in 2013-12-22 02:36:53 UTC (rev 12904) +++ trunk/www/documentation.php.in 2013-12-22 02:44:37 UTC (rev 12905) @@ -15,7 +15,6 @@ <h3>PLplot Documentation</h3> <ul class="arrowlist"> <li> <a href="docbook-manual/@BASE_HTML@">Browse the latest on-line documentation</a> </li> - <li> <a href="docbook-manual/@BASE@.ps.gz">PostScript form of documentation (<?php $size = number_format((filesize("docbook-manual/@BASE@.ps.gz")/1024/1024),2); echo $size;?> MB)</a> </li> <li> <a href="docbook-manual/@BASE@.pdf">PDF form of documentation (<?php $size = number_format((filesize("docbook-manual/@BASE@.pdf")/1024/1024),2); echo $size;?> MB)</a> </li> <li> <a href="docbook-manual/@BASE_INFO@.tar.gz">Info documentation tarball (<?php $size = number_format((filesize("docbook-manual/@BASE_INFO@.tar.gz")/1024/1024),2); echo $size;?> MB)</a> </li> <li> <a href="docbook-manual/@BASE_MAN@.tar.gz">Man pages tarball (API chapter in nroff format) (<?php $size = number_format((filesize("docbook-manual/@BASE_MAN@.tar.gz")/1024/1024),2); echo $size;?> MB)</a> </li> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |