From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 10 06:40:21 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 046E916A4D9 for ; Tue, 10 Feb 2004 06:40:20 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8AD443D5A for ; Tue, 10 Feb 2004 06:40:16 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i1AEeGbv075853 for ; Tue, 10 Feb 2004 06:40:16 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i1AEeGxF075852; Tue, 10 Feb 2004 06:40:16 -0800 (PST) (envelope-from gnats) Resent-Date: Tue, 10 Feb 2004 06:40:16 -0800 (PST) Resent-Message-Id: <200402101440.i1AEeGxF075852@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1174716A4CE for ; Tue, 10 Feb 2004 06:32:02 -0800 (PST) Received: from hfep07.dion.ne.jp (hfep07.dion.ne.jp [203.181.105.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6482643D1D for ; Tue, 10 Feb 2004 06:32:00 -0800 (PST) (envelope-from tkato@prontomail.com) Received: from localhost ([61.198.217.88]) by hfep07.dion.ne.jp with SMTP id <20040210143134904.GUMG@hfep07.dion.ne.jp> for ; Tue, 10 Feb 2004 23:31:34 +0900 Message-Id: <20040210233022.7ef8a53c.tkato@prontomail.com> Date: Tue, 10 Feb 2004 23:30:22 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/62641: Update port: math/plplot to 5.3.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Feb 2004 14:40:21 -0000 >Number: 62641 >Category: ports >Synopsis: Update port: math/plplot to 5.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 10 06:40:16 PST 2004 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.9-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 5.3.0 New file: files/patch-Makefile.in files/patch-drivers::Makefile.in files/patch-lib::csa::Makefile.in files/patch-pkgcfg::Makefile.in >How-To-Repeat: >Fix: diff -urN /usr/ports/math/plplot/Makefile math/plplot/Makefile --- /usr/ports/math/plplot/Makefile Sun Aug 31 23:14:26 2003 +++ math/plplot/Makefile Tue Feb 10 18:41:31 2004 @@ -6,8 +6,7 @@ # PORTNAME= plplot -PORTVERSION= 5.2.1 -PORTREVISION= 2 +PORTVERSION= 5.3.0 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,9 +15,9 @@ COMMENT= A scientific plotting package BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 -LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd +LIB_DEPENDS= ltdl.4:${PORTSDIR}/devel/libltdl \ + gd.4:${PORTSDIR}/graphics/gd -USE_GNOME= gnomehack pkgconfig USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} @@ -27,7 +26,8 @@ GDINCDIR="${LOCALBASE}/include" \ GDLIBDIR="${LOCALBASE}/lib" \ M4="${LOCALBASE}/bin/gm4" -CONFIGURE_ARGS= --disable-python --disable-octave --without-qhull +CONFIGURE_ARGS= --disable-cgm --disable-java --disable-octave \ + --with-ltdlsystem --without-qhull INSTALLS_SHLIB= yes PLIST_SUB= VERSION="${PORTVERSION}" @@ -42,6 +42,18 @@ PLIST_SUB+= X11="" .endif +.if !defined(WITHOUT_PTHREAD) +CONFIGURE_ARGS+= --with-pthreads +.endif + +.if defined(WITH_PYTHON) +USE_PYTHON= yes +PLIST_SUB+= PYTHON="" +.else +CONFIGURE_ARGS+= --disable-python +PLIST_SUB+= PYTHON="@comment " +.endif + .if defined(WITH_TCLTK) .undef WITHOUT_X11 PKGNAMESUFFIX= -tcltk @@ -63,12 +75,37 @@ PLIST_SUB+= TCLTK="@comment " .endif +pre-everything:: + @${ECHO_MSG} "" + @${ECHO_MSG} "PLplot has the following tunable options:" + @${ECHO_MSG} "" + @${ECHO_MSG} " WITHOUT_X11=yes Turns off X11 support" + @${ECHO_MSG} " WITHOUT_PTHREAD=yes Turns off pthread support" + @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python support" + @${ECHO_MSG} " WITH_TCLTK=yes Turns on Tcl/Tk support" + @${ECHO_MSG} "" + post-patch: @${REINPLACE_CMD} -e 's|-litk$$|-litk32|g ; \ s|-ltk$$|-ltk83|g ; \ s|-litcl$$|-litcl32|g ; \ - s|-ltcl$$|-ltcl83|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|tclsh|${LOCALBASE}/bin/tclsh8.3|g' \ + s|-ltcl$$|-ltcl83|g ; \ + s|-lpthread|${PTHREAD_LIBS:S/"//g}|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's| tclsh | ${LOCALBASE}/bin/tclsh8.3 |g' \ ${WRKSRC}/scripts/mktclIndex + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for file in AUTHORS ChangeLog Copyright FAQ NEWS PROBLEMS README + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} +.endfor + ${INSTALL_DATA} ${WRKSRC}/drivers/README.drivers \ + ${DOCSDIR}/README.drivers + ${INSTALL_DATA} ${WRKSRC}/lib/csa/README \ + ${DOCSDIR}/README.csa + ${INSTALL_DATA} ${WRKSRC}/lib/csa/README.1st \ + ${DOCSDIR}/README.1st.csa +.endif .include diff -urN /usr/ports/math/plplot/distinfo math/plplot/distinfo --- /usr/ports/math/plplot/distinfo Fri Jan 30 14:49:40 2004 +++ math/plplot/distinfo Tue Feb 10 00:02:16 2004 @@ -1,2 +1,2 @@ -MD5 (plplot-5.2.1.tar.gz) = 23c7260470acff2cb40c1e4b19054550 -SIZE (plplot-5.2.1.tar.gz) = 4625477 +MD5 (plplot-5.3.0.tar.gz) = 38ea3512dbbbd9dd98e1683931f32e2a +SIZE (plplot-5.3.0.tar.gz) = 5360662 diff -urN /usr/ports/math/plplot/files/patch-Makefile.in math/plplot/files/patch-Makefile.in --- /usr/ports/math/plplot/files/patch-Makefile.in Thu Jan 1 09:00:00 1970 +++ math/plplot/files/patch-Makefile.in Tue Feb 10 00:55:42 2004 @@ -0,0 +1,11 @@ +--- Makefile.in.orig Mon Feb 2 20:40:55 2004 ++++ Makefile.in Tue Feb 10 00:55:31 2004 +@@ -835,7 +835,7 @@ + + info-am: + +-install-data-am: install-docDATA ++install-data-am: + + install-exec-am: install-binSCRIPTS + diff -urN /usr/ports/math/plplot/files/patch-bindings::tcl::Makefile.in math/plplot/files/patch-bindings::tcl::Makefile.in --- /usr/ports/math/plplot/files/patch-bindings::tcl::Makefile.in Mon May 19 04:37:30 2003 +++ math/plplot/files/patch-bindings::tcl::Makefile.in Tue Feb 10 01:10:59 2004 @@ -1,11 +1,11 @@ ---- bindings/tcl/Makefile.in.orig Mon Apr 21 21:36:35 2003 -+++ bindings/tcl/Makefile.in Wed Apr 23 18:39:49 2003 -@@ -341,7 +341,7 @@ - with_rpath_FALSE = @with_rpath_FALSE@ - with_rpath_TRUE = @with_rpath_TRUE@ +--- bindings/tcl/Makefile.in.orig Mon Feb 2 20:40:59 2004 ++++ bindings/tcl/Makefile.in Tue Feb 10 01:10:30 2004 +@@ -932,7 +932,7 @@ --tcldir = ${prefix}/$(DATA_DIR)/../tcl -+@enable_tcl_TRUE@tcldir = ${prefix}/$(DATA_DIR)/../tcl + info-am: + +-install-data-am: install-pkgincludeHEADERS install-tclDATA ++install-data-am: @enable_tcl_TRUE@install-pkgincludeHEADERS install-tclDATA + + install-exec-am: install-libLTLIBRARIES - libplplot = ../../src/libplplot$(LIB_TAG).la - libmatrix = libtclmatrix$(LIB_TAG).la diff -urN /usr/ports/math/plplot/files/patch-bindings::tk::Makefile.in math/plplot/files/patch-bindings::tk::Makefile.in --- /usr/ports/math/plplot/files/patch-bindings::tk::Makefile.in Mon May 19 04:37:30 2003 +++ math/plplot/files/patch-bindings::tk::Makefile.in Tue Feb 10 01:12:22 2004 @@ -1,11 +1,11 @@ ---- bindings/tk/Makefile.in.orig Mon Apr 21 21:36:35 2003 -+++ bindings/tk/Makefile.in Wed Apr 23 18:28:32 2003 -@@ -341,7 +341,7 @@ - with_rpath_FALSE = @with_rpath_FALSE@ - with_rpath_TRUE = @with_rpath_TRUE@ +--- bindings/tk/Makefile.in.orig Mon Feb 2 20:40:59 2004 ++++ bindings/tk/Makefile.in Tue Feb 10 01:12:09 2004 +@@ -744,7 +744,7 @@ --tcldir = ${prefix}/$(DATA_DIR)/../tcl -+@enable_tk_TRUE@tcldir = ${prefix}/$(DATA_DIR)/../tcl + info-am: - libplplottcltk = ../tcl/libplplottcltk$(LIB_TAG).la +-install-data-am: install-pkgincludeHEADERS install-tclDATA ++install-data-am: @enable_tk_TRUE@install-pkgincludeHEADERS install-tclDATA + + install-exec-am: install-binPROGRAMS diff -urN /usr/ports/math/plplot/files/patch-drivers::Makefile.in math/plplot/files/patch-drivers::Makefile.in --- /usr/ports/math/plplot/files/patch-drivers::Makefile.in Thu Jan 1 09:00:00 1970 +++ math/plplot/files/patch-drivers::Makefile.in Tue Feb 10 01:44:30 2004 @@ -0,0 +1,11 @@ +--- drivers/Makefile.in.orig Mon Feb 2 20:41:02 2004 ++++ drivers/Makefile.in Tue Feb 10 01:44:02 2004 +@@ -2069,7 +2069,7 @@ + + info-am: + +-install-data-am: install-docDATA install-driversDATA \ ++install-data-am: install-driversDATA \ + install-driversLTLIBRARIES + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook diff -urN /usr/ports/math/plplot/files/patch-lib::csa::Makefile.in math/plplot/files/patch-lib::csa::Makefile.in --- /usr/ports/math/plplot/files/patch-lib::csa::Makefile.in Thu Jan 1 09:00:00 1970 +++ math/plplot/files/patch-lib::csa::Makefile.in Tue Feb 10 01:53:37 2004 @@ -0,0 +1,11 @@ +--- lib/csa/Makefile.in.orig Mon Feb 2 20:41:08 2004 ++++ lib/csa/Makefile.in Tue Feb 10 01:53:21 2004 +@@ -635,8 +635,6 @@ + info-am: + + install-data-am: +- @$(NORMAL_INSTALL) +- $(MAKE) $(AM_MAKEFLAGS) install-data-hook + + install-exec-am: install-libLTLIBRARIES + diff -urN /usr/ports/math/plplot/files/patch-pkgcfg::Makefile.in math/plplot/files/patch-pkgcfg::Makefile.in --- /usr/ports/math/plplot/files/patch-pkgcfg::Makefile.in Thu Jan 1 09:00:00 1970 +++ math/plplot/files/patch-pkgcfg::Makefile.in Tue Feb 10 01:42:50 2004 @@ -0,0 +1,11 @@ +--- pkgcfg/Makefile.in.orig Mon Feb 2 20:41:08 2004 ++++ pkgcfg/Makefile.in Tue Feb 10 01:42:00 2004 +@@ -519,7 +519,7 @@ + + info-am: + +-install-data-am: install-pkgconfigDATA ++install-data-am: @with_pkg_config_TRUE@install-pkgconfigDATA + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook + diff -urN /usr/ports/math/plplot/pkg-plist math/plplot/pkg-plist --- /usr/ports/math/plplot/pkg-plist Mon May 19 09:42:33 2003 +++ math/plplot/pkg-plist Tue Feb 10 18:42:01 2004 @@ -1,4 +1,5 @@ bin/plm2gif +bin/plplot-config bin/plplot_libtool bin/plpr bin/plrender @@ -17,40 +18,34 @@ include/plplot/plplotP.h include/plplot/plstream.h include/plplot/plstrm.h -include/plplot/pltcl.h +%%TCLTK%%include/plplot/pltcl.h %%TCLTK%%include/plplot/pltk.h include/plplot/plxwd.h -include/plplot/tclMatrix.h -lib/libcsa.a -lib/libcsa.la -lib/libcsa.so -lib/libcsa.so.0 +%%TCLTK%%include/plplot/tclMatrix.h +lib/libcsirocsa.a +lib/libcsirocsa.la +lib/libcsirocsa.so +lib/libcsirocsa.so.0 lib/libplplotcxxd.a lib/libplplotcxxd.la lib/libplplotcxxd.so -lib/libplplotcxxd.so.8 +lib/libplplotcxxd.so.9 lib/libplplotd.a lib/libplplotd.la lib/libplplotd.so -lib/libplplotd.so.8 +lib/libplplotd.so.9 lib/libplplotf77d.a lib/libplplotf77d.la lib/libplplotf77d.so -lib/libplplotf77d.so.8 +lib/libplplotf77d.so.9 %%TCLTK%%lib/libplplottcltkd.a %%TCLTK%%lib/libplplottcltkd.la %%TCLTK%%lib/libplplottcltkd.so -%%TCLTK%%lib/libplplottcltkd.so.8 +%%TCLTK%%lib/libplplottcltkd.so.9 %%TCLTK%%lib/libtclmatrixd.a %%TCLTK%%lib/libtclmatrixd.la %%TCLTK%%lib/libtclmatrixd.so -%%TCLTK%%lib/libtclmatrixd.so.8 -lib/plplot%%VERSION%%/data/cglobe.map -lib/plplot%%VERSION%%/data/globe.map -lib/plplot%%VERSION%%/data/plstnd5.fnt -lib/plplot%%VERSION%%/data/plxtnd5.fnt -lib/plplot%%VERSION%%/data/usa.map -lib/plplot%%VERSION%%/data/usaglobe.map +%%TCLTK%%lib/libtclmatrixd.so.9 lib/plplot%%VERSION%%/driversd/dg300.la lib/plplot%%VERSION%%/driversd/dg300.rc lib/plplot%%VERSION%%/driversd/dg300.so @@ -105,176 +100,240 @@ %%X11%%lib/plplot%%VERSION%%/driversd/xwin.la %%X11%%lib/plplot%%VERSION%%/driversd/xwin.rc %%X11%%lib/plplot%%VERSION%%/driversd/xwin.so -lib/plplot%%VERSION%%/examples/c/Makefile -lib/plplot%%VERSION%%/examples/c/lena.pgm -lib/plplot%%VERSION%%/examples/c/plcdemos.h -lib/plplot%%VERSION%%/examples/c/tutor.c -lib/plplot%%VERSION%%/examples/c/x01c.c -lib/plplot%%VERSION%%/examples/c/x02c.c -lib/plplot%%VERSION%%/examples/c/x03c.c -lib/plplot%%VERSION%%/examples/c/x04c.c -lib/plplot%%VERSION%%/examples/c/x05c.c -lib/plplot%%VERSION%%/examples/c/x06c.c -lib/plplot%%VERSION%%/examples/c/x07c.c -lib/plplot%%VERSION%%/examples/c/x08c.c -lib/plplot%%VERSION%%/examples/c/x09c.c -lib/plplot%%VERSION%%/examples/c/x10c.c -lib/plplot%%VERSION%%/examples/c/x11c.c -lib/plplot%%VERSION%%/examples/c/x12c.c -lib/plplot%%VERSION%%/examples/c/x13c.c -lib/plplot%%VERSION%%/examples/c/x14c.c -lib/plplot%%VERSION%%/examples/c/x15c.c -lib/plplot%%VERSION%%/examples/c/x16c.c -lib/plplot%%VERSION%%/examples/c/x17c.c -lib/plplot%%VERSION%%/examples/c/x18c.c -lib/plplot%%VERSION%%/examples/c/x19c.c -lib/plplot%%VERSION%%/examples/c/x20c.c -lib/plplot%%VERSION%%/examples/c/x21c.c -lib/plplot%%VERSION%%/examples/c++/Makefile -lib/plplot%%VERSION%%/examples/c++/x01cc.cc -lib/plplot%%VERSION%%/examples/f77/Makefile -lib/plplot%%VERSION%%/examples/f77/x01f.f -lib/plplot%%VERSION%%/examples/f77/x02f.f -lib/plplot%%VERSION%%/examples/f77/x03f.f -lib/plplot%%VERSION%%/examples/f77/x04f.f -lib/plplot%%VERSION%%/examples/f77/x05f.f -lib/plplot%%VERSION%%/examples/f77/x06f.f -lib/plplot%%VERSION%%/examples/f77/x07f.f -lib/plplot%%VERSION%%/examples/f77/x08f.f -lib/plplot%%VERSION%%/examples/f77/x09f.f -lib/plplot%%VERSION%%/examples/f77/x10f.f -lib/plplot%%VERSION%%/examples/f77/x11f.f -lib/plplot%%VERSION%%/examples/f77/x12f.f -lib/plplot%%VERSION%%/examples/f77/x13f.f -lib/plplot%%VERSION%%/examples/f77/x16f.f -lib/plplot%%VERSION%%/examples/plplot-test.sh -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/README.tcldemos -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/plgrid.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/plot.dat -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/plot.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/r.dat -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/stats.log -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/tclIndex -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/tcldemos.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x01 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x01.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x02 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x02.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x03 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x03.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x04 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x04.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x05 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x05.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x06 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x06.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x07 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x07.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x08 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x08.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x09 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x09.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x10 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x10.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x11 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x11.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x12 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x12.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x13 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x13.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x14 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x14.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x15 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x15.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x16 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x16.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x17 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x17.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x18 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x18.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x19 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tcl/x19.tcl -lib/plplot%%VERSION%%/examples/test_c.sh -lib/plplot%%VERSION%%/examples/test_cxx.sh -lib/plplot%%VERSION%%/examples/test_f77.sh -%%TCLTK%%lib/plplot%%VERSION%%/examples/test_tcl.sh -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/Makefile -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/README.tkdemos -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/runAllDemos.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/runExtendedDemos.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/tclIndex -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/tk01 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/tk02 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/tk03 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/tk04 -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/tkdemos.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x01.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x02.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x03.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x04.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x05.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x06.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x07.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x08.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x09.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x10.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x11.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x12.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x13.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x14.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x15.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x16.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x17.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x18.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/x19.tcl -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/xtk01.c -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/xtk02.c -%%TCLTK%%lib/plplot%%VERSION%%/examples/tk/xtk04.c -%%TCLTK%%lib/plplot%%VERSION%%/pkgIndex.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/FileSelector.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/PLWin.itk -%%TCLTK%%lib/plplot%%VERSION%%/tcl/PLXWin.itk -%%TCLTK%%lib/plplot%%VERSION%%/tcl/Pltkwin.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/about.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/cmap0a.pal -%%TCLTK%%lib/plplot%%VERSION%%/tcl/cmap1a.pal -%%TCLTK%%lib/plplot%%VERSION%%/tcl/cmap1a1.pal -%%TCLTK%%lib/plplot%%VERSION%%/tcl/cmap1b.pal -%%TCLTK%%lib/plplot%%VERSION%%/tcl/cmap1c.pal -%%TCLTK%%lib/plplot%%VERSION%%/tcl/cmap1d.pal -%%TCLTK%%lib/plplot%%VERSION%%/tcl/help_gui.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/help_keys.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/help_tcltk.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/plclient.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/plcolor.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/plconfig.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/pldefaults.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/plplot.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/plserver.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/pltools.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/plwidget.tcl -%%TCLTK%%lib/plplot%%VERSION%%/tcl/tclIndex -libdata/pkgconfig/plplot.pc -share/doc/plplot/AUTHORS -share/doc/plplot/COPYING.LIB -share/doc/plplot/ChangeLog -share/doc/plplot/Copyright -share/doc/plplot/FAQ -share/doc/plplot/NEWS -share/doc/plplot/PROBLEMS -share/doc/plplot/README -share/doc/plplot/README.1st.csa -share/doc/plplot/README.csa -share/doc/plplot/README.drivers -@dirrm share/doc/plplot -%%TCLTK%%@dirrm lib/plplot%%VERSION%%/tcl -%%TCLTK%%@dirrm lib/plplot%%VERSION%%/examples/tk -%%TCLTK%%@dirrm lib/plplot%%VERSION%%/examples/tcl -@dirrm lib/plplot%%VERSION%%/examples/f77 -@dirrm lib/plplot%%VERSION%%/examples/c++ -@dirrm lib/plplot%%VERSION%%/examples/c -@dirrm lib/plplot%%VERSION%%/examples +%%PYTHON%%%%PYTHON_SITELIBDIR%%/_plplotcmodule.so +%%PYTHON%%%%PYTHON_SITELIBDIR%%/plplot.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/plplot_widgetmodule.so +%%PYTHON%%%%PYTHON_SITELIBDIR%%/plplotc.py +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/Copyright +%%PORTDOCS%%%%DOCSDIR%%/FAQ +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/PROBLEMS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/README.1st.csa +%%PORTDOCS%%%%DOCSDIR%%/README.csa +%%PORTDOCS%%%%DOCSDIR%%/README.drivers +%%DATADIR%%%%VERSION%%/cglobe.map +%%DATADIR%%%%VERSION%%/examples/Makefile +%%DATADIR%%%%VERSION%%/examples/c/Makefile +%%DATADIR%%%%VERSION%%/examples/c/lena.pgm +%%DATADIR%%%%VERSION%%/examples/c/plcdemos.h +%%DATADIR%%%%VERSION%%/examples/c/tutor.c +%%DATADIR%%%%VERSION%%/examples/c/x01c.c +%%DATADIR%%%%VERSION%%/examples/c/x02c.c +%%DATADIR%%%%VERSION%%/examples/c/x03c.c +%%DATADIR%%%%VERSION%%/examples/c/x04c.c +%%DATADIR%%%%VERSION%%/examples/c/x05c.c +%%DATADIR%%%%VERSION%%/examples/c/x06c.c +%%DATADIR%%%%VERSION%%/examples/c/x07c.c +%%DATADIR%%%%VERSION%%/examples/c/x08c.c +%%DATADIR%%%%VERSION%%/examples/c/x09c.c +%%DATADIR%%%%VERSION%%/examples/c/x10c.c +%%DATADIR%%%%VERSION%%/examples/c/x11c.c +%%DATADIR%%%%VERSION%%/examples/c/x12c.c +%%DATADIR%%%%VERSION%%/examples/c/x13c.c +%%DATADIR%%%%VERSION%%/examples/c/x14c.c +%%DATADIR%%%%VERSION%%/examples/c/x15c.c +%%DATADIR%%%%VERSION%%/examples/c/x16c.c +%%DATADIR%%%%VERSION%%/examples/c/x17c.c +%%DATADIR%%%%VERSION%%/examples/c/x18c.c +%%DATADIR%%%%VERSION%%/examples/c/x19c.c +%%DATADIR%%%%VERSION%%/examples/c/x20c.c +%%DATADIR%%%%VERSION%%/examples/c/x21c.c +%%DATADIR%%%%VERSION%%/examples/c++/Makefile +%%DATADIR%%%%VERSION%%/examples/c++/lena.pgm +%%DATADIR%%%%VERSION%%/examples/c++/x01.cc +%%DATADIR%%%%VERSION%%/examples/c++/x01cc.cc +%%DATADIR%%%%VERSION%%/examples/c++/x02.cc +%%DATADIR%%%%VERSION%%/examples/c++/x03.cc +%%DATADIR%%%%VERSION%%/examples/c++/x04.cc +%%DATADIR%%%%VERSION%%/examples/c++/x05.cc +%%DATADIR%%%%VERSION%%/examples/c++/x06.cc +%%DATADIR%%%%VERSION%%/examples/c++/x07.cc +%%DATADIR%%%%VERSION%%/examples/c++/x08.cc +%%DATADIR%%%%VERSION%%/examples/c++/x09.cc +%%DATADIR%%%%VERSION%%/examples/c++/x10.cc +%%DATADIR%%%%VERSION%%/examples/c++/x11.cc +%%DATADIR%%%%VERSION%%/examples/c++/x12.cc +%%DATADIR%%%%VERSION%%/examples/c++/x13.cc +%%DATADIR%%%%VERSION%%/examples/c++/x14.cc +%%DATADIR%%%%VERSION%%/examples/c++/x15.cc +%%DATADIR%%%%VERSION%%/examples/c++/x16.cc +%%DATADIR%%%%VERSION%%/examples/c++/x17.cc +%%DATADIR%%%%VERSION%%/examples/c++/x18.cc +%%DATADIR%%%%VERSION%%/examples/c++/x19.cc +%%DATADIR%%%%VERSION%%/examples/c++/x20.cc +%%DATADIR%%%%VERSION%%/examples/c++/x21.cc +%%DATADIR%%%%VERSION%%/examples/f77/Makefile +%%DATADIR%%%%VERSION%%/examples/f77/x01f.f +%%DATADIR%%%%VERSION%%/examples/f77/x02f.f +%%DATADIR%%%%VERSION%%/examples/f77/x03f.f +%%DATADIR%%%%VERSION%%/examples/f77/x04f.f +%%DATADIR%%%%VERSION%%/examples/f77/x05f.f +%%DATADIR%%%%VERSION%%/examples/f77/x06f.f +%%DATADIR%%%%VERSION%%/examples/f77/x07f.f +%%DATADIR%%%%VERSION%%/examples/f77/x08f.f +%%DATADIR%%%%VERSION%%/examples/f77/x09f.f +%%DATADIR%%%%VERSION%%/examples/f77/x10f.f +%%DATADIR%%%%VERSION%%/examples/f77/x11f.f +%%DATADIR%%%%VERSION%%/examples/f77/x12f.f +%%DATADIR%%%%VERSION%%/examples/f77/x13f.f +%%DATADIR%%%%VERSION%%/examples/f77/x15f.f +%%DATADIR%%%%VERSION%%/examples/f77/x16af.f +%%DATADIR%%%%VERSION%%/examples/f77/x16f.f +%%DATADIR%%%%VERSION%%/examples/f77/x17f.f +%%DATADIR%%%%VERSION%%/examples/f77/x18f.f +%%DATADIR%%%%VERSION%%/examples/perl/README.perldemos +%%DATADIR%%%%VERSION%%/examples/perl/x01.pl +%%DATADIR%%%%VERSION%%/examples/plplot-test.sh +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/README.pythondemos +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/plplot_python_start.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/prova.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/pythondemos.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/qplplot.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw01.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw02.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw03.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw04.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw05.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw06.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw07.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw08.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw09.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw10.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw11.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw12.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw13.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw14.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw15.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw16.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw17.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw18.py +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/python/xw19.py +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/README.tcldemos +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/plgrid.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/plot.dat +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/plot.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/r.dat +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/stats.log +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/tclIndex +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/tcldemos.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x01 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x01.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x02 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x02.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x03 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x03.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x04 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x04.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x05 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x05.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x06 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x06.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x07 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x07.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x08 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x08.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x09 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x09.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x10 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x10.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x11 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x11.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x12 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x12.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x13 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x13.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x14 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x14.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x15 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x15.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x16 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x16.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x17 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x17.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x18 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x18.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x19 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tcl/x19.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/Makefile +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/README.tkdemos +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/runAllDemos.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/runExtendedDemos.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/tclIndex +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/tk01 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/tk02 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/tk03 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/tk04 +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/tkdemos.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x01.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x02.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x03.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x04.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x05.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x06.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x07.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x08.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x09.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x10.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x11.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x12.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x13.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x14.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x15.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x16.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x17.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x18.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/x19.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/xtk01.c +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/xtk02.c +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/tk/xtk04.c +%%DATADIR%%%%VERSION%%/examples/test_c.sh +%%DATADIR%%%%VERSION%%/examples/test_cxx.sh +%%DATADIR%%%%VERSION%%/examples/test_f77.sh +%%PYTHON%%%%DATADIR%%%%VERSION%%/examples/test_python.sh +%%TCLTK%%%%DATADIR%%%%VERSION%%/examples/test_tcl.sh +%%DATADIR%%%%VERSION%%/globe.map +%%TCLTK%%%%DATADIR%%%%VERSION%%/pkgIndex.tcl +%%DATADIR%%%%VERSION%%/plstnd5.fnt +%%DATADIR%%%%VERSION%%/plxtnd5.fnt +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/FileSelector.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/PLWin.itk +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/PLXWin.itk +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/Pltkwin.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/about.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/cmap0a.pal +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/cmap1a.pal +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/cmap1a1.pal +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/cmap1b.pal +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/cmap1c.pal +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/cmap1d.pal +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/help_gui.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/help_keys.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/help_tcltk.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/plclient.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/plcolor.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/plconfig.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/pldefaults.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/plplot.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/plserver.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/pltools.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/plwidget.tcl +%%TCLTK%%%%DATADIR%%%%VERSION%%/tcl/tclIndex +%%DATADIR%%%%VERSION%%/usa.map +%%DATADIR%%%%VERSION%%/usaglobe.map +%%TCLTK%%@dirrm %%DATADIR%%%%VERSION%%/tcl +%%TCLTK%%@dirrm %%DATADIR%%%%VERSION%%/examples/tk +%%TCLTK%%@dirrm %%DATADIR%%%%VERSION%%/examples/tcl +%%PYTHON%%@dirrm %%DATADIR%%%%VERSION%%/examples/python +@dirrm %%DATADIR%%%%VERSION%%/examples/perl +@dirrm %%DATADIR%%%%VERSION%%/examples/f77 +@dirrm %%DATADIR%%%%VERSION%%/examples/c++ +@dirrm %%DATADIR%%%%VERSION%%/examples/c +@dirrm %%DATADIR%%%%VERSION%%/examples +@dirrm %%DATADIR%%%%VERSION%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm lib/plplot%%VERSION%%/driversd -@dirrm lib/plplot%%VERSION%%/data @dirrm lib/plplot%%VERSION%% @dirrm include/plplot >Release-Note: >Audit-Trail: >Unformatted: