From: Jonathan S. <jjs...@us...> - 2008-03-14 14:12:23
|
Update of /cvsroot/octaviz/octaviz In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18853 Modified Files: CMakeLists.txt README Added Files: TODO Log Message: added uninstall information to README and a new TODO list Index: README =================================================================== RCS file: /cvsroot/octaviz/octaviz/README,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- README 10 Nov 2006 03:45:44 -0000 1.4 +++ README 14 Mar 2008 14:12:17 -0000 1.5 @@ -83,6 +83,14 @@ - run make - make install + +UNINSTALL INSTRUCTIONS +After installing, there will be a list of installed files in +"install_manifest.txt". These files can be uninstalled with something +like: +$ cat install_manifest.txt | sudo xargs rm -fv + + Comments, suggestions, bug repports and patches are most welcome (you can use mailing lists at SourceForge or send to dr...@us...). Index: CMakeLists.txt =================================================================== RCS file: /cvsroot/octaviz/octaviz/CMakeLists.txt,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- CMakeLists.txt 13 Jan 2008 13:20:07 -0000 1.18 +++ CMakeLists.txt 14 Mar 2008 14:12:17 -0000 1.19 @@ -4,13 +4,15 @@ PROJECT(OCTAVIZ) ## added from cmake FAQ, JJS 3/29/05; also needs the file cmake_uninstall.cmake.in -CONFIGURE_FILE( - "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" - "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" - IMMEDIATE @ONLY) - -ADD_CUSTOM_TARGET(uninstall - "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake") +## currently not working (vtkGetDataRoot.m is showing up in the install_manifest.txt file twice) +## see the README for alternate uninstall method, JJS 3/14/08 +#CONFIGURE_FILE( +# "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" +# "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" +# IMMEDIATE @ONLY) +# +#ADD_CUSTOM_TARGET(uninstall +# "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake") ## OPTION(USE_PREC_HEADERS "Use precompiled headers" OFF) --- NEW FILE: TODO --- vtkGetDataRoot.m is showing up in the install_manifest.txt file twice. This breaks the "make uninstall" command. |