rpms/plplot/devel plplot-5.8.0-svn.patch, 1.1, 1.2 plplot.spec, 1.51, 1.52

Orion Poplawski (orion) fedora-extras-commits at redhat.com
Tue Jan 15 22:20:12 UTC 2008


Author: orion

Update of /cvs/pkgs/rpms/plplot/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv19269

Modified Files:
	plplot-5.8.0-svn.patch plplot.spec 
Log Message:
* Tue Jan 15 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-9
- Require numpy (bug #428876)
- Update SVN patch to add support for detecting Tcl version
- Look for itcl 3.4


plplot-5.8.0-svn.patch:

Index: plplot-5.8.0-svn.patch
===================================================================
RCS file: /cvs/pkgs/rpms/plplot/devel/plplot-5.8.0-svn.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- plplot-5.8.0-svn.patch	9 Jan 2008 04:33:53 -0000	1.1
+++ plplot-5.8.0-svn.patch	15 Jan 2008 22:20:02 -0000	1.2
@@ -194,6 +194,22 @@
  
      void xormod(PLINT mode, PLINT *status);
  };
+diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/bindings/f77/CMakeLists.txt plplot/bindings/f77/CMakeLists.txt
+--- plplot-5.8.0/bindings/f77/CMakeLists.txt	2007-11-18 13:04:01.000000000 -0700
++++ plplot/bindings/f77/CMakeLists.txt	2008-01-15 14:19:42.000000000 -0700
+@@ -34,8 +34,10 @@
+   add_custom_command(
+     OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/sfstubs.f
+     COMMAND sed
+-    -f ${CMAKE_CURRENT_SOURCE_DIR}/double2single.sed ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4a > ${CMAKE_CURRENT_BINARY_DIR}/sfstubs.f
+-    DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4
++    -f ${CMAKE_CURRENT_SOURCE_DIR}/double2single.sed ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4 > ${CMAKE_CURRENT_BINARY_DIR}/sfstubs.f
++    DEPENDS 
++    ${CMAKE_CURRENT_SOURCE_DIR}/double2single.sed
++    ${CMAKE_CURRENT_SOURCE_DIR}/sfstubs.fm4
+   )
+ endif(PL_DOUBLE)
+ 
 Only in plplot-5.8.0/bindings/f77: configurable.f.in
 Only in plplot-5.8.0/bindings/f77: Makefile.am
 Only in plplot-5.8.0/bindings/f77: Makefile.in
@@ -1113,6 +1129,11 @@
   * Declarations for various library procedures and variables (don't want
 Only in plplot-5.8.0: bootstrap.sh.out
 Only in plplot-5.8.0: cf
+diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/cmake/modules/CheckTCL_GT_84.tcl plplot/cmake/modules/CheckTCL_GT_84.tcl
+--- plplot-5.8.0/cmake/modules/CheckTCL_GT_84.tcl	1969-12-31 17:00:00.000000000 -0700
++++ plplot/cmake/modules/CheckTCL_GT_84.tcl	2008-01-15 14:19:42.000000000 -0700
+@@ -0,0 +1 @@
++puts -nonewline [package vsatisfies [info patchlevel] 8.5]; exit
 diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/cmake/modules/drivers-init.cmake plplot/cmake/modules/drivers-init.cmake
 --- plplot-5.8.0/cmake/modules/drivers-init.cmake	2007-11-18 13:03:55.000000000 -0700
 +++ plplot/cmake/modules/drivers-init.cmake	2008-01-08 17:18:59.000000000 -0700
@@ -1423,15 +1444,45 @@
  set(plplotf77_VERSION ${plplotf77_SOVERSION}.1.1)
 diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/cmake/modules/tcl-related.cmake plplot/cmake/modules/tcl-related.cmake
 --- plplot-5.8.0/cmake/modules/tcl-related.cmake	2007-11-18 13:03:56.000000000 -0700
-+++ plplot/cmake/modules/tcl-related.cmake	2008-01-08 17:19:00.000000000 -0700
-@@ -59,6 +59,7 @@
-   find_package(TCL)
-   # Supplement those results with iTcl and iTk include paths and libraries.
-   if(TCL_FOUND)
-+    option(HAVE_TCL_GT_84 "if Tcl version is greater than 8.4" OFF)
++++ plplot/cmake/modules/tcl-related.cmake	2008-01-15 14:31:33.000000000 -0700
+@@ -66,9 +66,19 @@
+     include(FindTclsh)
+     if(TCL_TCLSH)
+       message(STATUS "Looking for tclsh - found")
++      message(STATUS "TCL_TCLSH = ${TCL_TCLSH}")
++      # test to determine HAVE_TCL_GT_84
++      execute_process(
++      COMMAND ${TCL_TCLSH} CheckTCL_GT_84.tcl
++      WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/cmake/modules
++      OUTPUT_VARIABLE HAVE_TCL_GT_84
++      )
+     else(TCL_TCLSH)
+       message(STATUS "Looking for tclsh - not found")
++      # Fall back to user option for determining HAVE_TCL_GT_84.
++      option(HAVE_TCL_GT_84 "if Tcl version is greater than 8.4" OFF)
+     endif(TCL_TCLSH)
++    message(STATUS "HAVE_TCL_GT_84 = ${HAVE_TCL_GT_84}")
+   else(TCL_FOUND)
      message(STATUS
-     "Looking for include paths and libraries for Tcl/Tk - found"
-     )
+     "Looking for include paths and libraries for Tcl/Tk - not found"
+@@ -84,7 +94,7 @@
+         message(STATUS "Looking for itcl.h - found")
+         message(STATUS "Looking for itcl library")
+ 	get_filename_component(TCL_LIBRARY_PATH ${TCL_LIBRARY} PATH)
+-        set(itcl_library_versions 3.3 3.2 3.1 3.0 2.1 2.0)
++        set(itcl_library_versions 3.4 3.3 3.2 3.1 3.0 2.1 2.0)
+         foreach(version ${itcl_library_versions})
+           find_library(ITCL_LIBRARY itcl${version} PATHS ${TCL_LIBRARY_PATH}
+                        PATH_SUFFIXES itcl${version})
+@@ -145,7 +155,7 @@
+       if(ITK_INCLUDE_PATH)
+         message(STATUS "Looking for itk.h - found")
+         message(STATUS "Looking for itk library")
+-        set(itk_library_versions 3.3 3.2 3.1 3.0 2.1 2.0)
++        set(itk_library_versions 3.4 3.3 3.2 3.1 3.0 2.1 2.0)
+         foreach(version ${itk_library_versions})
+           find_library(ITK_LIBRARY itk${version} ${TK_LIBRARY}
+                        PATH_SUFFIXES itk${version})
 diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/cmake/modules/UseSWIG.cmake plplot/cmake/modules/UseSWIG.cmake
 --- plplot-5.8.0/cmake/modules/UseSWIG.cmake	1969-12-31 17:00:00.000000000 -0700
 +++ plplot/cmake/modules/UseSWIG.cmake	2008-01-08 17:19:00.000000000 -0700
@@ -3536,8 +3587,38 @@
  
 diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/drivers/CMakeLists.txt plplot/drivers/CMakeLists.txt
 --- plplot-5.8.0/drivers/CMakeLists.txt	2007-11-18 13:04:11.000000000 -0700
-+++ plplot/drivers/CMakeLists.txt	2008-01-08 17:19:05.000000000 -0700
-@@ -133,6 +133,8 @@
++++ plplot/drivers/CMakeLists.txt	2008-01-15 14:19:43.000000000 -0700
+@@ -68,6 +68,16 @@
+       #message("${SOURCE_ROOT_NAME}_COMPILE_FLAGS = ${${SOURCE_ROOT_NAME}_COMPILE_FLAGS}")
+     endif(${SOURCE_ROOT_NAME}_COMPILE_FLAGS)
+     add_library(${SOURCE_ROOT_NAME} MODULE ${${SOURCE_ROOT_NAME}_SOURCE})
++    # ${SOURCE_ROOT_NAME}_LINK_FLAGS is ideally a list of the full path names
++    # to libraries determined with find_library.  However, the list can also
++    # include link flags such as the -L and -l form of specifying libraries,
++    # but that way of doing things only works on Unix, and even for Unix,
++    # cmake does not correctly set the rpath for the build tree results
++    # for non-standard locations with the -L and -l forms.
++    #message("${SOURCE_ROOT_NAME}_LINK_FLAGS = ${${SOURCE_ROOT_NAME}_LINK_FLAGS}")
++    # ${SOURCE_ROOT_NAME}_TARGETS is a list of PLplot CMake targets that the
++    # device driver depends on.  
++    #message("${SOURCE_ROOT_NAME}_TARGETS = ${${SOURCE_ROOT_NAME}_TARGETS}")
+     target_link_libraries(
+     ${SOURCE_ROOT_NAME}
+     plplot${LIB_TAG}
+@@ -75,8 +85,10 @@
+     ${${SOURCE_ROOT_NAME}_LINK_FLAGS}
+     ${${SOURCE_ROOT_NAME}_TARGETS}
+     )
+-    #message("${SOURCE_ROOT_NAME}_LINK_FLAGS = ${${SOURCE_ROOT_NAME}_LINK_FLAGS}")
+-    #message("${SOURCE_ROOT_NAME}_TARGETS = ${${SOURCE_ROOT_NAME}_TARGETS}")
++    # ${SOURCE_ROOT_NAME}_RPATH originally set in cmake/modules files for
++    # each driver in ${DRIVERS_LIST}.  This is only used for the 
++    # install-tree rpath since cmake handles the build-tree rpath
++    # automatically (so long as full pathnames to libraries are used).
+     set(
+     ${SOURCE_ROOT_NAME}_RPATH
+     ${${SOURCE_ROOT_NAME}_RPATH}
+@@ -133,6 +145,8 @@
      DEPENDS
      ${CMAKE_CURRENT_BINARY_DIR}/${SOURCE_ROOT_NAME}.rc
      )
@@ -6247,6 +6328,129 @@
 Only in plplot-5.8.0/examples/f77: Makefile.in
 Only in plplot-5.8.0/examples/f95: Makefile.am
 Only in plplot-5.8.0/examples/f95: Makefile.in
+diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/examples/f95/x09f.f90 plplot/examples/f95/x09f.f90
+--- plplot-5.8.0/examples/f95/x09f.f90	2007-11-18 13:04:09.000000000 -0700
++++ plplot/examples/f95/x09f.f90	2008-01-15 14:19:43.000000000 -0700
+@@ -1,4 +1,4 @@
+-!      $Id$
++!      $Id$
+ !      Contour plot demo.
+ !
+ !      Copyright (C) 2004  Alan W. Irwin
+@@ -348,7 +348,7 @@
+       call plline(xtm, ytm)
+ 
+       call plcol0(ncollab)
+-      call pllab(' ', ' ', &
++      call pllab('', '', &
+       'Shielded potential of charges in a conducting sphere')
+       end
+ 
+diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/examples/f95/x16af.f90 plplot/examples/f95/x16af.f90
+--- plplot-5.8.0/examples/f95/x16af.f90	2007-11-18 13:04:09.000000000 -0700
++++ plplot/examples/f95/x16af.f90	2008-01-15 14:19:43.000000000 -0700
+@@ -1,4 +1,4 @@
+-!      $Id$
++!      $Id$
+ !      Demonstration of plshade plotting
+ !      Reduce colors in cmap 0 so that cmap 1 is useful on a 16-color display
+ !
+@@ -105,7 +105,7 @@
+         sh_width = 2
+         call plpsty(0)
+         call plshade(z(:NX,:NY), ' ', &
+-          dble ( -1._plflt), 1.0_plflt, -1.0_plflt, 1.0_plflt, &
++          -1._plflt, 1.0_plflt, -1.0_plflt, 1.0_plflt, &
+           shade_min, shade_max, &
+           sh_cmap, sh_color, sh_width, &
+           min_color, min_width, max_color, max_width )
+diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/examples/f95/x28f.f90 plplot/examples/f95/x28f.f90
+--- plplot-5.8.0/examples/f95/x28f.f90	2007-11-18 13:04:09.000000000 -0700
++++ plplot/examples/f95/x28f.f90	2008-01-15 14:19:43.000000000 -0700
+@@ -1,4 +1,4 @@
+-!  $Id$
++!  $Id$
+ !
+ !   Demonstrates plotting text in 3D (plmtex3, plptex3)
+ !
+@@ -39,8 +39,9 @@
+         xmid = 0.5*(xmax + xmin), xrange = xmax - xmin,                    &
+         ymin=0., ymax=1.0, ymid = 0.5*(ymax + ymin), yrange = ymax - ymin, &
+         zmin=0., zmax=1.0, zmid = 0.5*(zmax + zmin), zrange = zmax - zmin
+-   real(PLFLT) :: x_inclination, y_inclination, z_inclination,             &
+-        x_shear, y_shear, z_shear,                                         &
++        real(PLFLT) :: y_location, z_location, &
++        x_inclination, y_inclination, z_inclination,       &
++        x_shear, y_shear, z_shear,                         &
+         omega, sin_omega, cos_omega, domega
+    integer     :: i, j
+    real(PLFLT) :: radius, pitch, xpos, ypos, zpos
+@@ -182,8 +183,9 @@
+       cos_omega = cos(omega)
+       y_shear = 0.5*yrange*sin_omega
+       z_shear = 0.5*zrange*cos_omega
++      z_location = zmax -(zmax-0.2)*(dble(i-1)/dble(NROTATION-1))
+       call plptex3( &
+-         xmid, ymax, zmax -(zmax-0.2)*(dble(i-1)/dble(NROTATION-1)), &
++         xmid, ymax, z_location, &
+          x_inclination, y_inclination, z_inclination, &
+          x_shear, y_shear, z_shear, &
+          0.5_plflt, "rotation for y = y#dmax#u")
+@@ -201,8 +203,9 @@
+       cos_omega = cos(omega)
+       x_shear = 0.5*xrange*sin_omega
+       z_shear = 0.5*zrange*cos_omega
++      z_location = zmax -(zmax-0.2)*((i-1)/dble(NROTATION-1))
+       call plptex3( &
+-         xmax, ymid, zmax -(zmax-0.2)*((i-1)/dble(NROTATION-1)), &
++         xmax, ymid, z_location, &
+          x_inclination, y_inclination, z_inclination, &
+          x_shear, y_shear, z_shear, &
+          0.5_plflt, "rotation for x = x#dmax#u")
+@@ -220,8 +223,9 @@
+       cos_omega = cos(omega)
+       y_shear = 0.5*yrange*cos_omega
+       z_shear = 0.5*zrange*sin_omega
++      y_location = ymax -(ymax-0.2)*(dble(i-1)/dble(NROTATION-1))
+       call plptex3( &
+-         xmid, ymax -(ymax-0.2)*(dble(i-1)/dble(NROTATION-1)), zmin, &
++         xmid, y_location, zmin, &
+          x_inclination, y_inclination, z_inclination, &
+          x_shear, y_shear, z_shear, &
+          0.5_plflt, "rotation for z = z#dmin#u")
+@@ -257,8 +261,9 @@
+       cos_omega = cos(omega)
+       x_shear = 0.5*xrange*sin_omega
+       z_shear = 0.5*zrange*cos_omega
++      z_location = zmax -(zmax-0.2)*(dble(i-1)/dble(NSHEAR-1))
+       call plptex3( &
+-         xmid, ymax, zmax -(zmax-0.2)*(dble(i-1)/dble(NSHEAR-1)), &
++         xmid, ymax, z_location, &
+          x_inclination, y_inclination, z_inclination, &
+          x_shear, y_shear, z_shear, &
+          0.5_plflt, "shear for y = y#dmax#u")
+@@ -276,8 +281,9 @@
+       cos_omega = cos(omega)
+       y_shear = -0.5*yrange*sin_omega
+       z_shear = 0.5*zrange*cos_omega
++      z_location = zmax -(zmax-0.2)*((i-1)/dble(NSHEAR-1))
+       call plptex3( &
+-         xmax, ymid, zmax -(zmax-0.2)*((i-1)/dble(NSHEAR-1)), &
++         xmax, ymid, z_location, &
+          x_inclination, y_inclination, z_inclination, &
+          x_shear, y_shear, z_shear, &
+          0.5_plflt, "shear for x = x#dmax#u")
+@@ -295,8 +301,9 @@
+       cos_omega = cos(omega)
+       y_shear = 0.5*yrange*cos_omega
+       x_shear = 0.5*xrange*sin_omega
++      y_location = ymax -(ymax-0.2)*(dble(i-1)/dble(NSHEAR-1))
+       call plptex3( &
+-         xmid, ymax -(ymax-0.2)*(dble(i-1)/dble(NSHEAR-1)), zmin, &
++         xmid, y_location, zmin, &
+          x_inclination, y_inclination, z_inclination, &
+          x_shear, y_shear, z_shear, &
+          0.5_plflt, "shear for z = z#dmin#u")
 diff -ru --unidirectional-new-file --exclude=.svn plplot-5.8.0/examples/java/CMakeLists.txt plplot/examples/java/CMakeLists.txt
 --- plplot-5.8.0/examples/java/CMakeLists.txt	2007-11-18 13:04:08.000000000 -0700
 +++ plplot/examples/java/CMakeLists.txt	2008-01-08 17:19:03.000000000 -0700
@@ -18774,10 +18978,11 @@
 @@ -0,0 +1,437 @@
 +/* $Id$
 +   $Log$
-+   Revision 1.1  2008/01/09 04:33:53  orion
-+   * Mon Jan  7 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-7
-+   - Update to latest svn for Tcl 8.5 support
-+   - Don't build against itcl - does not support tcl 8.5
++   Revision 1.2  2008/01/15 22:20:02  orion
++   * Tue Jan 15 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-9
++   - Require numpy (bug #428876)
++   - Update SVN patch to add support for detecting Tcl version
++   - Look for itcl 3.4
 +
 +   Revision 1.3  2000/12/18 21:01:50  airwin
 +   Change to new style plplot/*.h header file locations.
@@ -22862,10 +23067,11 @@
 @@ -0,0 +1,845 @@
 +/* $Id$
 +   $Log$
-+   Revision 1.1  2008/01/09 04:33:53  orion
-+   * Mon Jan  7 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-7
-+   - Update to latest svn for Tcl 8.5 support
-+   - Don't build against itcl - does not support tcl 8.5
++   Revision 1.2  2008/01/15 22:20:02  orion
++   * Tue Jan 15 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-9
++   - Require numpy (bug #428876)
++   - Update SVN patch to add support for detecting Tcl version
++   - Look for itcl 3.4
 +
 +   Revision 1.3  2000/12/18 21:01:50  airwin
 +   Change to new style plplot/*.h header file locations.
@@ -23948,10 +24154,11 @@
 +/* -*-C-*-
 +/* $Id$
 + * $Log$
-+ * Revision 1.1  2008/01/09 04:33:53  orion
-+ * * Mon Jan  7 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-7
-+ * - Update to latest svn for Tcl 8.5 support
-+ * - Don't build against itcl - does not support tcl 8.5
++ * Revision 1.2  2008/01/15 22:20:02  orion
++ * * Tue Jan 15 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-9
++ * - Require numpy (bug #428876)
++ * - Update SVN patch to add support for detecting Tcl version
++ * - Look for itcl 3.4
 + *
 + * Revision 1.1  2000/05/12 18:05:32  furnish
 + * Imported latest Mac port work by Rob Managan.
@@ -25198,10 +25405,11 @@
 @@ -0,0 +1,390 @@
 +/* $Id$
 + * $Log$
-+ * Revision 1.1  2008/01/09 04:33:53  orion
-+ * * Mon Jan  7 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-7
-+ * - Update to latest svn for Tcl 8.5 support
-+ * - Don't build against itcl - does not support tcl 8.5
++ * Revision 1.2  2008/01/15 22:20:02  orion
++ * * Tue Jan 15 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-9
++ * - Require numpy (bug #428876)
++ * - Update SVN patch to add support for detecting Tcl version
++ * - Look for itcl 3.4
 + *
 + * Revision 1.3  2000/12/18 21:01:50  airwin
 + * Change to new style plplot/*.h header file locations.
@@ -25805,10 +26013,11 @@
 @@ -0,0 +1,93 @@
 +/* $Id$
 + * $Log$
-+ * Revision 1.1  2008/01/09 04:33:53  orion
-+ * * Mon Jan  7 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-7
-+ * - Update to latest svn for Tcl 8.5 support
-+ * - Don't build against itcl - does not support tcl 8.5
++ * Revision 1.2  2008/01/15 22:20:02  orion
++ * * Tue Jan 15 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-9
++ * - Require numpy (bug #428876)
++ * - Update SVN patch to add support for detecting Tcl version
++ * - Look for itcl 3.4
 + *
 + * Revision 1.1  1996/10/22 18:22:09  furnish
 + * Update the OS/2 driver with fixes supplied by Thorsten Feiweier.
@@ -55187,10 +55396,11 @@
 +/* -*-C-*- */
 +/* $Id$
 + * $Log$
-+ * Revision 1.1  2008/01/09 04:33:53  orion
-+ * * Mon Jan  7 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-7
-+ * - Update to latest svn for Tcl 8.5 support
-+ * - Don't build against itcl - does not support tcl 8.5
++ * Revision 1.2  2008/01/15 22:20:02  orion
++ * * Tue Jan 15 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-9
++ * - Require numpy (bug #428876)
++ * - Update SVN patch to add support for detecting Tcl version
++ * - Look for itcl 3.4
 + *
 + * Revision 1.2  2002/07/04 15:17:15  vincentdarley
 + * win-tk build


Index: plplot.spec
===================================================================
RCS file: /cvs/pkgs/rpms/plplot/devel/plplot.spec,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- plplot.spec	12 Jan 2008 15:20:17 -0000	1.51
+++ plplot.spec	15 Jan 2008 22:20:03 -0000	1.52
@@ -5,7 +5,7 @@
 
 Name:           plplot
 Version:        5.8.0
-Release:        8%{?dist}
+Release:        9%{?dist}
 Summary:        Library of functions for making scientific plots
 
 Group:          Applications/Engineering
@@ -52,6 +52,8 @@
 Requires(post): /sbin/install-info
 Requires(preun): /sbin/install-info
 Requires:       freefont
+Requires:       numpy
+
 
 %description
 PLplot is a library of functions that are useful for making scientific
@@ -221,7 +223,6 @@
 	%{build_octave} \
 	-DENABLE_pdl:BOOL=ON \
 	-DHAVE_PTHREAD:BOOL=ON \
-	-DHAVE_TCL_GT_84=ON \
 	-DPL_FREETYPE_FONT_PATH:PATH="/usr/share/fonts/freefont" \
 	-DPLD_aqt:BOOL=ON \
 	-DPLD_conex:BOOL=ON \
@@ -269,7 +270,7 @@
 %check
 cd fedora
 #Hack
-export ITCL_LIBRARY=%{_libdir}/itcl3.3
+export ITCL_LIBRARY=%{_libdir}/tcl8.5/itcl3.4
 # Exclude psttfc test for now
 ctest -V -E psttfc
 
@@ -489,6 +490,11 @@
 
 
 %changelog
+* Tue Jan 15 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-9
+- Require numpy (bug #428876)
+- Update SVN patch to add support for detecting Tcl version
+- Look for itcl 3.4
+
 * Sat Jan 12 2008 - Orion Poplawski <orion at cora.nwra.com> - 5.8.0-8
 - Re-enable itcl
 




More information about the fedora-extras-commits mailing list