From: <and...@us...> - 2009-07-10 19:58:10
|
Revision: 10137 http://plplot.svn.sourceforge.net/plplot/?rev=10137&view=rev Author: andrewross Date: 2009-07-10 19:58:03 +0000 (Fri, 10 Jul 2009) Log Message: ----------- Move the bindings/octave/demos directory to examples/octave consistent with all other languages. Modified Paths: -------------- trunk/bindings/octave/CMakeLists.txt trunk/bindings/octave/octaverc.in trunk/examples/CMakeLists.txt trunk/examples/octave/CMakeLists.txt trunk/examples/octave/x27c.m trunk/examples/octave/x28c.m trunk/examples/octave/x30c.m trunk/plplot_test/CMakeLists.txt Added Paths: ----------- trunk/examples/octave/ Removed Paths: ------------- trunk/bindings/octave/demos/ Modified: trunk/bindings/octave/CMakeLists.txt =================================================================== --- trunk/bindings/octave/CMakeLists.txt 2009-07-10 18:56:45 UTC (rev 10136) +++ trunk/bindings/octave/CMakeLists.txt 2009-07-10 19:58:03 UTC (rev 10137) @@ -23,7 +23,6 @@ if(ENABLE_octave) add_subdirectory(PLplot) -add_subdirectory(demos) add_subdirectory(misc) # Install renamed documentation files. Modified: trunk/bindings/octave/octaverc.in =================================================================== --- trunk/bindings/octave/octaverc.in 2009-07-10 18:56:45 UTC (rev 10136) +++ trunk/bindings/octave/octaverc.in 2009-07-10 19:58:03 UTC (rev 10137) @@ -1,4 +1,4 @@ -addpath("@CMAKE_SOURCE_DIR@/bindings/octave/PLplot/","@CMAKE_SOURCE_DIR@/bindings/octave/PLplot/support/","@CMAKE_SOURCE_DIR@/bindings/octave/demos/","@CMAKE_SOURCE_DIR@/bindings/octave/misc/","@CMAKE_BINARY_DIR@/bindings/octave/","@CMAKE_BINARY_DIR@/bindings/octave/PLplot"); +addpath("@CMAKE_SOURCE_DIR@/bindings/octave/PLplot/","@CMAKE_SOURCE_DIR@/bindings/octave/PLplot/support/","@CMAKE_SOURCE_DIR@/examples/octave/","@CMAKE_SOURCE_DIR@/bindings/octave/misc/","@CMAKE_BINARY_DIR@/bindings/octave/","@CMAKE_BINARY_DIR@/bindings/octave/PLplot"); putenv("PLPLOT_LIB","@CMAKE_SOURCE_DIR@/data/"); global pl_automatic_replot pl_automatic_replot=1; Modified: trunk/examples/CMakeLists.txt =================================================================== --- trunk/examples/CMakeLists.txt 2009-07-10 18:56:45 UTC (rev 10136) +++ trunk/examples/CMakeLists.txt 2009-07-10 19:58:03 UTC (rev 10137) @@ -95,6 +95,9 @@ if(ENABLE_lua) add_subdirectory(lua) endif(ENABLE_lua) +if(ENABLE_octave) + add_subdirectory(octave) +endif(ENABLE_octave) # Configure Makefile.examples with some specific variables Property changes on: trunk/examples/octave ___________________________________________________________________ Added: svn:ignore + *.flc Makefile Makefile.in .deps .libs *.la *.lo Added: svn:mergeinfo + Modified: trunk/examples/octave/CMakeLists.txt =================================================================== --- trunk/bindings/octave/demos/CMakeLists.txt 2009-07-10 06:21:20 UTC (rev 10135) +++ trunk/examples/octave/CMakeLists.txt 2009-07-10 19:58:03 UTC (rev 10137) @@ -1,4 +1,4 @@ -# bindings/octave/demos/CMakeLists.txt for PLplot +# examples/octave/CMakeLists.txt for PLplot ### ### Process this file with cmake to produce Makefile ### Modified: trunk/examples/octave/x27c.m =================================================================== --- trunk/bindings/octave/demos/x27c.m 2009-07-10 06:21:20 UTC (rev 10135) +++ trunk/examples/octave/x27c.m 2009-07-10 19:58:03 UTC (rev 10137) @@ -1,4 +1,4 @@ -## $Id:$ +## $Id$ ## ## Drawing "spirograph" curves - epitrochoids, cycolids, roulettes ## Modified: trunk/examples/octave/x28c.m =================================================================== --- trunk/bindings/octave/demos/x28c.m 2009-07-10 06:21:20 UTC (rev 10135) +++ trunk/examples/octave/x28c.m 2009-07-10 19:58:03 UTC (rev 10137) @@ -1,4 +1,4 @@ -## $Id:$ +## $Id$ ## ## plmtex3, plptex3 demo ## Modified: trunk/examples/octave/x30c.m =================================================================== --- trunk/bindings/octave/demos/x30c.m 2009-07-10 06:21:20 UTC (rev 10135) +++ trunk/examples/octave/x30c.m 2009-07-10 19:58:03 UTC (rev 10137) @@ -1,4 +1,4 @@ -## $Id:$ +## $Id$ ## ## Alpha color values demonstration. ## Modified: trunk/plplot_test/CMakeLists.txt =================================================================== --- trunk/plplot_test/CMakeLists.txt 2009-07-10 18:56:45 UTC (rev 10136) +++ trunk/plplot_test/CMakeLists.txt 2009-07-10 19:58:03 UTC (rev 10137) @@ -340,9 +340,9 @@ add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/lena.img COMMAND ${CMAKE_COMMAND} -E copy - ${CMAKE_SOURCE_DIR}/bindings/octave/demos/lena.img + ${CMAKE_SOURCE_DIR}/examples/octave/lena.img ${CMAKE_CURRENT_BINARY_DIR}/lena.img - DEPENDS ${CMAKE_SOURCE_DIR}/bindings/octave/demos/lena.img + DEPENDS ${CMAKE_SOURCE_DIR}/examples/octave/lena.img ) add_custom_target(lena_octave_file ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/lena.img) endif(ENABLE_octave) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |