summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2003-07-12 03:59:57 +0000
committerMaho Nakata <maho@FreeBSD.org>2003-07-12 03:59:57 +0000
commit9b04d6a866b7a255aca05752b1c19026da92fefd (patch)
treec1a81736cbd149f8b0a9925d7f72d6640070fa87 /math
parentUpdate to 6.0 (diff)
Add new port math/fbm.
A software for Flexible Bayesian Modelling and Markov Chain Sampling(The software is for education and research use only). PR: 53650 Submitted by: Pedro F. Giffuni <giffunip@yahoo.com>
Notes
Notes: svn path=/head/; revision=84729
Diffstat (limited to 'math')
-rw-r--r--math/Makefile1
-rw-r--r--math/fbm/Makefile68
-rw-r--r--math/fbm/distinfo1
-rw-r--r--math/fbm/files/patch-install-arch10
-rw-r--r--math/fbm/files/patch-make.include12
-rw-r--r--math/fbm/files/patch-util+util.make8
-rw-r--r--math/fbm/pkg-descr19
-rw-r--r--math/fbm/pkg-plist529
8 files changed, 648 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile
index 655535f06dae..aabcd397da0c 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -31,6 +31,7 @@
SUBDIR += entropy
SUBDIR += eukleides
SUBDIR += eval
+ SUBDIR += fbm
SUBDIR += femlab
SUBDIR += fftpack
SUBDIR += fftw
diff --git a/math/fbm/Makefile b/math/fbm/Makefile
new file mode 100644
index 000000000000..d73b593a07e4
--- /dev/null
+++ b/math/fbm/Makefile
@@ -0,0 +1,68 @@
+# New ports collection makefile for: fbm
+# Date created: 31 June 2003
+# Whom: Pedro F. Giffuni <giffunip@asme.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= fbm
+PORTVERSION= 20010803
+CATEGORIES= math
+MASTER_SITES= ftp://ftp.cs.utoronto.ca/pub/radford/
+DISTNAME= ${PORTNAME}.2001-08-31
+EXTRACT_SUFX= .tar.Z
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= Flexible Bayesian Modeling and Markov Chain Sampling
+
+NO_CDROM= 'Free for educational use and research'
+
+USE_REINPLACE= yes
+
+SCRIPTS = bvg-circ bvg-wrap dist-circ dist-wrap gp-circ \
+ gp-wrap mix-circ mix-wrap net-circ net-wrap
+PROGRAMS = bvg-grad-test bvg-hist bvg-initial bvg-mc \
+ bvg-plt bvg-spec bvg-stepsizes bvg-tbl calc \
+ combine data-spec dist-display dist-est \
+ dist-gen dist-genp dist-grad-test dist-hist \
+ dist-initial dist-mc dist-plt dist-spec \
+ dist-stepsizes dist-tbl extract find-min \
+ gp-cov gp-display gp-eigen gp-eval gp-gen \
+ gp-genp gp-grad-test gp-hist gp-mc gp-plt \
+ gp-pred gp-spec gp-stepsizes gp-tbl grid \
+ log-append log-copy log-equal log-last \
+ log-records mc-ais mc-spec mc-temp-filter \
+ mc-temp-sched mix-cases mix-display mix-gen \
+ mix-hist mix-mc mix-plt mix-spec mix-tbl \
+ model-spec net-display net-dvar net-eval \
+ net-gd net-gen net-genp net-grad-test net-hist \
+ net-mc net-plt net-pred net-rej net-spec \
+ net-stepsizes net-tbl rand-seed series
+TEXT= mix-genp
+
+post-patch:
+ @${REINPLACE_CMD} -e 's+%%CC%%+${CC}+g;' ${WRKSRC}/make.include
+ @${REINPLACE_CMD} -e 's+%%CFLAGS%%+${CFLAGS}+g;' ${WRKSRC}/make.include
+do-build:
+ @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${SH} make-all)
+
+do-install:
+ @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${SH} install-arch)
+.for i in ${SCRIPTS}
+ @${INSTALL_SCRIPT} ${WRKSRC}/bin.${ARCH}/${i} ${PREFIX}/bin
+.endfor
+.for i in ${PROGRAMS}
+ @${INSTALL_PROGRAM} ${WRKSRC}/bin.${ARCH}/${i} ${PREFIX}/bin
+.endfor
+ @${MKDIR} ${PREFIX}/share/fbm
+ @${INSTALL_DATA} ${WRKSRC}/util/randfile ${PREFIX}/share/fbm
+.if !defined(NOPORTDOCS)
+ @${MKDIR} ${DOCSDIR}
+ @${CP} -R $(WRKSRC)/doc/* ${DOCSDIR}
+ @${MKDIR} ${DOCSDIR}/html
+ @${MV} ${DOCSDIR}/*.html ${DOCSDIR}/html
+ @${MKDIR} ${EXAMPLESDIR}
+ @${CP} -R $(WRKSRC)/ex-* ${EXAMPLESDIR}
+.endif
+
+.include <bsd.port.mk>
diff --git a/math/fbm/distinfo b/math/fbm/distinfo
new file mode 100644
index 000000000000..13b64ce19fb3
--- /dev/null
+++ b/math/fbm/distinfo
@@ -0,0 +1 @@
+MD5 (fbm.2001-08-31.tar.Z) = 70e122eaee198811a29dfbd2d4cae1da
diff --git a/math/fbm/files/patch-install-arch b/math/fbm/files/patch-install-arch
new file mode 100644
index 000000000000..da3fff151e30
--- /dev/null
+++ b/math/fbm/files/patch-install-arch
@@ -0,0 +1,10 @@
+--- install-arch.orig Sun Jun 22 21:29:53 2003
++++ install-arch Sun Jun 22 21:30:21 2003
+@@ -5,6 +5,6 @@
+ # the programs were last compiled for this architecture. A program called
+ # "arch" that returns the name of the architecture is assumed to exist.
+
+-a=`arch`
++a=${ARCH}
+ mkdir -p bin.$a
+ cp bin/* bin.$a
diff --git a/math/fbm/files/patch-make.include b/math/fbm/files/patch-make.include
new file mode 100644
index 000000000000..ca048d84f470
--- /dev/null
+++ b/math/fbm/files/patch-make.include
@@ -0,0 +1,12 @@
+--- make.include.orig Sat Sep 1 05:21:58 2001
++++ make.include Sat Jul 12 12:46:16 2003
+@@ -2,6 +2,6 @@
+ #
+ # You may wish to modify this file to fit your local installation.
+
+-CC = cc # C compiler to use
+-CFLAGS = -O # C compiler options when compiling .c files to .o files
+-LFLAGS = # Options when linking .o files
++CC = %%CC%% # C compiler to use
++CFLAGS = %%CFLAGS%% # C compiler options when compiling .c files to .o files
++LFLAGS = ${LDFLAGS} # Options when linking .o files
diff --git a/math/fbm/files/patch-util+util.make b/math/fbm/files/patch-util+util.make
new file mode 100644
index 000000000000..f5501557c57b
--- /dev/null
+++ b/math/fbm/files/patch-util+util.make
@@ -0,0 +1,8 @@
+--- util/util.make.orig Sun Jun 22 23:10:08 2003
++++ util/util.make Sun Jun 22 23:16:12 2003
+@@ -92,4 +92,4 @@
+ phi.o: phi.c
+
+ rand.o: rand.c rand.h
+- $(CC) $(CFLAGS) -DRAND_FILE=\"`pwd`/../util/randfile\" -c rand.c
++ $(CC) $(CFLAGS) -DRAND_FILE=\"${PREFIX}/share/fbm/randfile\" -c rand.c
diff --git a/math/fbm/pkg-descr b/math/fbm/pkg-descr
new file mode 100644
index 000000000000..3d661c7711f4
--- /dev/null
+++ b/math/fbm/pkg-descr
@@ -0,0 +1,19 @@
+Software for Flexible Bayesian Modeling and Markov Chain Sampling
+
+This software supports Bayesian regression and classification models
+based on neural networks and Gaussian processes, and Bayesian mixture
+models. It also supports a variety of Markov chain sampling methods,
+which may be applied to distributions specified by simple formulas,
+including simple Bayesian models defined by formulas for the prior
+and likelihood.
+
+Before trying to use the software, you may need to read various
+references that describe the models and the Markov chain methods used.
+
+Some of the programs in this package are designed for use with the xgraph
+plot package for X-Windows, though the data can instead be plotted by
+whatever plot program you have available.
+
+WWW: http://www.cs.utoronto.ca/~radford/fbm.software.html
+
+Radford Neal
diff --git a/math/fbm/pkg-plist b/math/fbm/pkg-plist
new file mode 100644
index 000000000000..551502aa7b2f
--- /dev/null
+++ b/math/fbm/pkg-plist
@@ -0,0 +1,529 @@
+bin/bvg-circ
+bin/bvg-grad-test
+bin/bvg-hist
+bin/bvg-initial
+bin/bvg-mc
+bin/bvg-plt
+bin/bvg-spec
+bin/bvg-stepsizes
+bin/bvg-tbl
+bin/bvg-wrap
+bin/calc
+bin/combine
+bin/data-spec
+bin/dist-circ
+bin/dist-display
+bin/dist-est
+bin/dist-gen
+bin/dist-genp
+bin/dist-grad-test
+bin/dist-hist
+bin/dist-initial
+bin/dist-mc
+bin/dist-plt
+bin/dist-spec
+bin/dist-stepsizes
+bin/dist-tbl
+bin/dist-wrap
+bin/extract
+bin/find-min
+bin/gp-circ
+bin/gp-cov
+bin/gp-display
+bin/gp-eigen
+bin/gp-eval
+bin/gp-gen
+bin/gp-genp
+bin/gp-grad-test
+bin/gp-hist
+bin/gp-mc
+bin/gp-plt
+bin/gp-pred
+bin/gp-spec
+bin/gp-stepsizes
+bin/gp-tbl
+bin/gp-wrap
+bin/grid
+bin/log-append
+bin/log-copy
+bin/log-equal
+bin/log-last
+bin/log-records
+bin/mc-ais
+bin/mc-spec
+bin/mc-temp-filter
+bin/mc-temp-sched
+bin/mix-cases
+bin/mix-circ
+bin/mix-display
+bin/mix-gen
+@comment bin/mix-genp
+bin/mix-hist
+bin/mix-mc
+bin/mix-plt
+bin/mix-spec
+bin/mix-tbl
+bin/mix-wrap
+bin/model-spec
+bin/net-circ
+bin/net-display
+bin/net-dvar
+bin/net-eval
+bin/net-gd
+bin/net-gen
+bin/net-genp
+bin/net-grad-test
+bin/net-hist
+bin/net-mc
+bin/net-plt
+bin/net-rej
+bin/net-pred
+bin/net-spec
+bin/net-stepsizes
+bin/net-tbl
+bin/net-wrap
+bin/rand-seed
+bin/series
+share/fbm/randfile
+@dirrm share/fbm
+%%PORTDOCS%%%%DOCSDIR%%/Acknowledgements.doc
+%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT
+%%PORTDOCS%%%%DOCSDIR%%/Contents.doc
+%%PORTDOCS%%%%DOCSDIR%%/Copyright.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-bayes-e.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-bayes-p.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-bayes-r.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-bayes-t.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-bayes.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-circ.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-dist-f.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-dist-g.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-dist-n.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-dist.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-gdes.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-intro.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-mix-b.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-mix-r.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-mix.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-netgp-b.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-netgp-c.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-netgp-o.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-netgp-r.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-netgp.doc
+%%PORTDOCS%%%%DOCSDIR%%/Ex-surv.doc
+%%PORTDOCS%%%%DOCSDIR%%/Facilities.doc
+%%PORTDOCS%%%%DOCSDIR%%/Guide.doc
+%%PORTDOCS%%%%DOCSDIR%%/Hints.doc
+%%PORTDOCS%%%%DOCSDIR%%/Install.doc
+%%PORTDOCS%%%%DOCSDIR%%/Overview.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.1995-08-09.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.1996-08-26.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.1997-01-18.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.1997-07-22.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.1998-08-02.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.1998-09-01.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.1999-03-13.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.1999-12-06.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.2000-08-21.doc
+%%PORTDOCS%%%%DOCSDIR%%/Release.2001-08-31.doc
+%%PORTDOCS%%%%DOCSDIR%%/bvg-initial.doc
+%%PORTDOCS%%%%DOCSDIR%%/bvg-mc.doc
+%%PORTDOCS%%%%DOCSDIR%%/bvg-plt.doc
+%%PORTDOCS%%%%DOCSDIR%%/bvg-spec.doc
+%%PORTDOCS%%%%DOCSDIR%%/bvg.doc
+%%PORTDOCS%%%%DOCSDIR%%/calc.doc
+%%PORTDOCS%%%%DOCSDIR%%/catff
+%%PORTDOCS%%%%DOCSDIR%%/data-spec.doc
+%%PORTDOCS%%%%DOCSDIR%%/dist-display.doc
+%%PORTDOCS%%%%DOCSDIR%%/dist-est.doc
+%%PORTDOCS%%%%DOCSDIR%%/dist-gen.doc
+%%PORTDOCS%%%%DOCSDIR%%/dist-initial.doc
+%%PORTDOCS%%%%DOCSDIR%%/dist-mc.doc
+%%PORTDOCS%%%%DOCSDIR%%/dist-quantities.doc
+%%PORTDOCS%%%%DOCSDIR%%/dist-spec.doc
+%%PORTDOCS%%%%DOCSDIR%%/dist-stepsizes.doc
+%%PORTDOCS%%%%DOCSDIR%%/dist.doc
+%%PORTDOCS%%%%DOCSDIR%%/extract.doc
+%%PORTDOCS%%%%DOCSDIR%%/fac.rev
+%%PORTDOCS%%%%DOCSDIR%%/find-min.doc
+%%PORTDOCS%%%%DOCSDIR%%/formula.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp-cov.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp-display.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp-eigen.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp-eval.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp-gen.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp-mc.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp-pred.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp-quantities.doc
+%%PORTDOCS%%%%DOCSDIR%%/gp-spec.doc
+%%PORTDOCS%%%%DOCSDIR%%/grid.doc
+%%PORTDOCS%%%%DOCSDIR%%/header
+%%PORTDOCS%%%%DOCSDIR%%/log-append.doc
+%%PORTDOCS%%%%DOCSDIR%%/log-copy.doc
+%%PORTDOCS%%%%DOCSDIR%%/log-equal.doc
+%%PORTDOCS%%%%DOCSDIR%%/log-last.doc
+%%PORTDOCS%%%%DOCSDIR%%/log-records.doc
+%%PORTDOCS%%%%DOCSDIR%%/log-types.doc
+%%PORTDOCS%%%%DOCSDIR%%/log.doc
+%%PORTDOCS%%%%DOCSDIR%%/make-allps
+%%PORTDOCS%%%%DOCSDIR%%/make-html
+%%PORTDOCS%%%%DOCSDIR%%/make-manual
+%%PORTDOCS%%%%DOCSDIR%%/make-ps
+%%PORTDOCS%%%%DOCSDIR%%/make-psdir
+%%PORTDOCS%%%%DOCSDIR%%/make-psmanual
+%%PORTDOCS%%%%DOCSDIR%%/manual
+%%PORTDOCS%%%%DOCSDIR%%/mc-ais.doc
+%%PORTDOCS%%%%DOCSDIR%%/mc-quantities.doc
+%%PORTDOCS%%%%DOCSDIR%%/mc-spec.doc
+%%PORTDOCS%%%%DOCSDIR%%/mc-temp-filter.doc
+%%PORTDOCS%%%%DOCSDIR%%/mc-temp-sched.doc
+%%PORTDOCS%%%%DOCSDIR%%/mc.doc
+%%PORTDOCS%%%%DOCSDIR%%/mix-cases.doc
+%%PORTDOCS%%%%DOCSDIR%%/mix-display.doc
+%%PORTDOCS%%%%DOCSDIR%%/mix-extensions.doc
+%%PORTDOCS%%%%DOCSDIR%%/mix-gen.doc
+%%PORTDOCS%%%%DOCSDIR%%/mix-mc.doc
+%%PORTDOCS%%%%DOCSDIR%%/mix-quantities.doc
+%%PORTDOCS%%%%DOCSDIR%%/mix-spec.doc
+%%PORTDOCS%%%%DOCSDIR%%/mix-spec.extra
+%%PORTDOCS%%%%DOCSDIR%%/mix.doc
+%%PORTDOCS%%%%DOCSDIR%%/model-spec.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-display.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-dvar.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-eval.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-gd.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-gen.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-hist.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-mc.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-plt.doc
+%%PORTDOCS%%%%DOCSDIR%%/net.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-pred.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-quantities.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-rej.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-spec.doc
+%%PORTDOCS%%%%DOCSDIR%%/net-tbl.doc
+%%PORTDOCS%%%%DOCSDIR%%/numin.doc
+%%PORTDOCS%%%%DOCSDIR%%/prior.doc
+%%PORTDOCS%%%%DOCSDIR%%/quantities.doc
+%%PORTDOCS%%%%DOCSDIR%%/rand-seed.doc
+%%PORTDOCS%%%%DOCSDIR%%/series.doc
+%%PORTDOCS%%%%DOCSDIR%%/titles.aux
+%%PORTDOCS%%%%DOCSDIR%%/titles.log
+%%PORTDOCS%%%%DOCSDIR%%/titles.tex
+%%PORTDOCS%%%%DOCSDIR%%/trailer
+%%PORTDOCS%%%%DOCSDIR%%/xxx-circ.doc
+%%PORTDOCS%%%%DOCSDIR%%/xxx-genp.doc
+%%PORTDOCS%%%%DOCSDIR%%/xxx-grad-test.doc
+%%PORTDOCS%%%%DOCSDIR%%/xxx-hist.doc
+%%PORTDOCS%%%%DOCSDIR%%/xxx-mc.doc
+%%PORTDOCS%%%%DOCSDIR%%/xxx-plt.doc
+%%PORTDOCS%%%%DOCSDIR%%/xxx-stepsizes.doc
+%%PORTDOCS%%%%DOCSDIR%%/xxx-tbl.doc
+%%PORTDOCS%%%%DOCSDIR%%/xxx-wrap.doc
+%%PORTDOCS%%%%DOCSDIR%%/html/Acknowledgements.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Contents.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Copyright.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-bayes-e.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-bayes-p.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-bayes-r.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-bayes-t.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-bayes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-circ.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-dist-f.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-dist-g.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-dist-n.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-dist.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-gdes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-intro.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-mix-b.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-mix-r.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-mix.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-netgp-b.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-netgp-c.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-netgp-o.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-netgp-r.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-netgp.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Ex-surv.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Facilities.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Guide.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Hints.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Install.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Overview.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.1995-08-09.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.1996-08-26.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.1997-01-18.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.1997-07-22.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.1998-08-02.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.1998-09-01.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.1999-03-13.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.1999-12-06.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.2000-08-21.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Release.2001-08-31.html
+%%PORTDOCS%%%%DOCSDIR%%/html/bvg-initial.html
+%%PORTDOCS%%%%DOCSDIR%%/html/bvg-mc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/bvg-plt.html
+%%PORTDOCS%%%%DOCSDIR%%/html/bvg-spec.html
+%%PORTDOCS%%%%DOCSDIR%%/html/bvg.html
+%%PORTDOCS%%%%DOCSDIR%%/html/calc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/data-spec.html
+%%PORTDOCS%%%%DOCSDIR%%/html/dist-display.html
+%%PORTDOCS%%%%DOCSDIR%%/html/dist-est.html
+%%PORTDOCS%%%%DOCSDIR%%/html/dist-gen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/dist-initial.html
+%%PORTDOCS%%%%DOCSDIR%%/html/dist-mc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/dist-quantities.html
+%%PORTDOCS%%%%DOCSDIR%%/html/dist-spec.html
+%%PORTDOCS%%%%DOCSDIR%%/html/dist-stepsizes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/dist.html
+%%PORTDOCS%%%%DOCSDIR%%/html/extract.html
+%%PORTDOCS%%%%DOCSDIR%%/html/find-min.html
+%%PORTDOCS%%%%DOCSDIR%%/html/formula.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp-cov.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp-display.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp-eigen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp-eval.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp-gen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp-mc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp-pred.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp-quantities.html
+%%PORTDOCS%%%%DOCSDIR%%/html/gp-spec.html
+%%PORTDOCS%%%%DOCSDIR%%/html/grid.html
+%%PORTDOCS%%%%DOCSDIR%%/html/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/log-append.html
+%%PORTDOCS%%%%DOCSDIR%%/html/log-copy.html
+%%PORTDOCS%%%%DOCSDIR%%/html/log-equal.html
+%%PORTDOCS%%%%DOCSDIR%%/html/log-last.html
+%%PORTDOCS%%%%DOCSDIR%%/html/log-records.html
+%%PORTDOCS%%%%DOCSDIR%%/html/log-types.html
+%%PORTDOCS%%%%DOCSDIR%%/html/log.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mc-ais.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mc-quantities.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mc-spec.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mix-cases.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mc-temp-filter.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mc-temp-sched.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mix-display.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mix-extensions.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mix-gen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mix-mc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mix-quantities.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mix-spec.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mix.html
+%%PORTDOCS%%%%DOCSDIR%%/html/model-spec.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-display.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-dvar.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-eval.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-gd.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-gen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-hist.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-mc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-plt.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-pred.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-quantities.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-rej.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-spec.html
+%%PORTDOCS%%%%DOCSDIR%%/html/net-tbl.html
+%%PORTDOCS%%%%DOCSDIR%%/html/numin-test.html
+%%PORTDOCS%%%%DOCSDIR%%/html/numin.html
+%%PORTDOCS%%%%DOCSDIR%%/html/prior.html
+%%PORTDOCS%%%%DOCSDIR%%/html/quantities.html
+%%PORTDOCS%%%%DOCSDIR%%/html/rand-seed.html
+%%PORTDOCS%%%%DOCSDIR%%/html/rand-test.html
+%%PORTDOCS%%%%DOCSDIR%%/html/series.html
+%%PORTDOCS%%%%DOCSDIR%%/html/xxx-circ.html
+%%PORTDOCS%%%%DOCSDIR%%/html/xxx-genp.html
+%%PORTDOCS%%%%DOCSDIR%%/html/xxx-grad-test.html
+%%PORTDOCS%%%%DOCSDIR%%/html/xxx-hist.html
+%%PORTDOCS%%%%DOCSDIR%%/html/xxx-mc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/xxx-plt.html
+%%PORTDOCS%%%%DOCSDIR%%/html/xxx-stepsizes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/xxx-tbl.html
+%%PORTDOCS%%%%DOCSDIR%%/html/xxx-wrap.html
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/html
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/README
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/scmds.cauchy.ais
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/scmds.cauchy.dist
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/scmds.cauchy.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/scmds.gaussian.ais
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/scmds.gaussian.dist
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/scmds.gaussian.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/sdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/sdiag
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/sgen.s
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/t1cmds.ais
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/t1cmds.is
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/t1cmds.tt
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/t1spec
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/t2cmds.ais
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/t2cmds.tt
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-ais/t2spec
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/ex-ais
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/README
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/ecmds.circ
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/ecmds.lng
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/ecmds.met
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/ecmds.slc
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/edata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/egen.s
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/pcmds.ais
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/pcmds.is
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/pcmds.met
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/pdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/rand.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/rand.h
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/rcmds.circ
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/rcmds.hmc
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/rcmds.met
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/rcmds.whmc
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/rdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/rgen.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/tcmds.circ
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/tcmds1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/tcmds12
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/tcmds2
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-bayes/tdata
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/ex-bayes
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-circ/README
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-circ/ccmds.circ
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-circ/ccmds.wrap
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-circ/mcmds.circ
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-circ/ncmds.circ
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/ex-circ
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/README
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds+.met
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds+.met1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds-.met
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds-.met1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds.met
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds.met1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds.metv
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds.slc
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds.slc1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds.slcG
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/fcmds.slcg
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/frun
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.dyn
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.hmc
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.met
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.met1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.phmc
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.sgau
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.slc
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.slcG
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.slcg
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.slci
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.slco
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds.slcv
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds1.slc1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/gcmds2.slc1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/grun
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-dist/ncmds
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/ex-dist
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-gdes/README
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-gdes/bcmds.gd
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-gdes/bcmds.gdes
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-gdes/bcmds.gdese
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-gdes/bdata.test
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-gdes/bdata.train
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/ex-gdes
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/README
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/bcmds.4
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/bcmds.inf
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/bcmds.inf2
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/bcmds.inf3
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/bdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/bgen.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/rand.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/rand.h
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/rcmds.2
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/rcmds.inf
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/rdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/rgen.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/scmds-ge-1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/scmds-ge-2
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/scmds-ge-30
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/scmds-met
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/scmds-met1
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/scmds-nmet
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/scmds-nogaps
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-mix/sdata
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/ex-mix
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/README
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/bcmds.gpl
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/bcmds.gpl2
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/bcmds.gpl3
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/bcmds.gpp
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/bcmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/bdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/bgen.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ccmds.gpl
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ccmds.gpl2
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ccmds.gpp
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ccmds.gpp100
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ccmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/cdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/cgen.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ocmds.gpg
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ocmds.gpt
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ocmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ocmds.net2
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/odata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/ogen.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/rand.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/rand.h
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/rcmds.gp
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/rcmds.gp2
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/rcmds.gp3
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/rcmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/rdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-netgp/rgen.c
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/ex-netgp
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/README
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/ccmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/cdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/cgen.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/cmed.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/cmedians
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/README
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/data
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/data.trn
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/data.tst
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/data.use
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/nln-12a.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/nlx-12a.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/nlx-12b.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/nlx-12c.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/nnn-12a.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/nnx-12a.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/plot1.r
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/plot2.r
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/plot3.r
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/plot4.r
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/process.r
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/statlib-src
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/xlx-12a.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/xlx-12b.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/xxn-12a.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/xxn-12b.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/xxn-1a.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/xxn-1b.cmds
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/pbc/xxn-1c.cmds
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/ex-surv/pbc
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/rand.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/rand.h
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/v2cmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/v3cmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/v4cmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/vccmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/vcmds.net
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/vdata
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/vgen.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/vmed.c
+%%PORTDOCS%%%%EXAMPLESDIR%%/ex-surv/vmedians
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/ex-surv
+%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%