summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-02-10 15:39:09 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-02-10 15:39:09 +0000
commitffa3bf9e8a4b2d13b4937d7213dca6d4ecc894f3 (patch)
tree2b91c4e698fbd4c9f9c49eba82c8f82f14522eeb /math
parent- Update to version 1.6.2 (diff)
- Update to version 5.3.0
PR: ports/62641 Submitted by: Ports Fury
Notes
Notes: svn path=/head/; revision=100564
Diffstat (limited to 'math')
-rw-r--r--math/plplot/Makefile51
-rw-r--r--math/plplot/distinfo4
-rw-r--r--math/plplot/files/patch-Makefile.in11
-rw-r--r--math/plplot/files/patch-bindings::tcl::Makefile.in18
-rw-r--r--math/plplot/files/patch-bindings::tk::Makefile.in16
-rw-r--r--math/plplot/files/patch-drivers::Makefile.in11
-rw-r--r--math/plplot/files/patch-lib::csa::Makefile.in11
-rw-r--r--math/plplot/files/patch-pkgcfg::Makefile.in11
-rw-r--r--math/plplot/pkg-plist433
9 files changed, 353 insertions, 213 deletions
diff --git a/math/plplot/Makefile b/math/plplot/Makefile
index 3fc081d657c2..b3bf3d02cbe0 100644
--- a/math/plplot/Makefile
+++ b/math/plplot/Makefile
@@ -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 @@ MAINTAINER= ports@FreeBSD.org
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 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
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 @@ USE_XLIB= yes
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 @@ CONFIGURE_ARGS+= --disable-itcl --disable-tcl --disable-tk
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 <bsd.port.mk>
diff --git a/math/plplot/distinfo b/math/plplot/distinfo
index 5aac49f5fc6e..4f44cb496cd3 100644
--- a/math/plplot/distinfo
+++ b/math/plplot/distinfo
@@ -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 --git a/math/plplot/files/patch-Makefile.in b/math/plplot/files/patch-Makefile.in
new file mode 100644
index 000000000000..db887516f9b1
--- /dev/null
+++ b/math/plplot/files/patch-Makefile.in
@@ -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 --git a/math/plplot/files/patch-bindings::tcl::Makefile.in b/math/plplot/files/patch-bindings::tcl::Makefile.in
index ae326bf8045f..174244285090 100644
--- a/math/plplot/files/patch-bindings::tcl::Makefile.in
+++ b/math/plplot/files/patch-bindings::tcl::Makefile.in
@@ -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 --git a/math/plplot/files/patch-bindings::tk::Makefile.in b/math/plplot/files/patch-bindings::tk::Makefile.in
index abfbf353ba17..8e48c78c7980 100644
--- a/math/plplot/files/patch-bindings::tk::Makefile.in
+++ b/math/plplot/files/patch-bindings::tk::Makefile.in
@@ -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 --git a/math/plplot/files/patch-drivers::Makefile.in b/math/plplot/files/patch-drivers::Makefile.in
new file mode 100644
index 000000000000..841d12d59ace
--- /dev/null
+++ b/math/plplot/files/patch-drivers::Makefile.in
@@ -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 --git a/math/plplot/files/patch-lib::csa::Makefile.in b/math/plplot/files/patch-lib::csa::Makefile.in
new file mode 100644
index 000000000000..e1e528e7a93a
--- /dev/null
+++ b/math/plplot/files/patch-lib::csa::Makefile.in
@@ -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 --git a/math/plplot/files/patch-pkgcfg::Makefile.in b/math/plplot/files/patch-pkgcfg::Makefile.in
new file mode 100644
index 000000000000..38f42c547cf5
--- /dev/null
+++ b/math/plplot/files/patch-pkgcfg::Makefile.in
@@ -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 --git a/math/plplot/pkg-plist b/math/plplot/pkg-plist
index c1d4a8f01aa0..b95839983863 100644
--- a/math/plplot/pkg-plist
+++ b/math/plplot/pkg-plist
@@ -1,4 +1,5 @@
bin/plm2gif
+bin/plplot-config
bin/plplot_libtool
bin/plpr
bin/plrender
@@ -17,40 +18,34 @@ include/plplot/plplot.h
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 @@ lib/plplot%%VERSION%%/driversd/xfig.so
%%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