Index: /trunk/extsrc/gpcsw/Makefile.in
===================================================================
--- /trunk/extsrc/gpcsw/Makefile.in	(revision 26255)
+++ /trunk/extsrc/gpcsw/Makefile.in	(revision 26256)
@@ -60,12 +60,12 @@
 	ln -sf ../Make.Common gpcsrc/fits/tiltystreak/Make.Common
 
-burntool:
+libs:
 	cd gpcsrc && make -C fits/libfh install
 	cd gpcsrc && make -C fits/libfhreg install
+
+burntool: libs
 	cd gpcsrc && make -C analysis/libpscoords install
 	cd gpcsrc && make -C fits/burntool install
 
-tiltystreak:
-	cd gpcsrc && make -C fits/libfh install
-	cd gpcsrc && make -C fits/libfhreg install
+tiltystreak: libs
 	cd gpcsrc && make -C fits/tiltystreak install
Index: /trunk/magic/Makefile
===================================================================
--- /trunk/magic/Makefile	(revision 26256)
+++ /trunk/magic/Makefile	(revision 26256)
@@ -0,0 +1,40 @@
+
+default: all
+
+all: ssa-core-cpp magic remove
+
+install: magic.install remove.install
+
+clean:
+	if [ -d magic ]; then (cd magic && make -f Makefile.magic clean); fi
+	if [ -d ssa-core-cpp ]; then (cd ssa-core-cpp && make clean); fi
+	cd $(REMOVE) && make -f Makefile.simple clean
+
+update:
+# get the source code (replace this with SVN interactions)
+	tar xvzf ~/magic.tgz
+	tar xvzf ~/ssa-core-cpp.tgz
+	cp Makefile.magic magic/Makefile.magic
+
+ssa-core-cpp: ssa-core-cpp/build/libSSA.a
+
+ssa-core-cpp/build/libSSA.a:
+	if [ -d ssa-core-cpp ]; then (cd ssa-core-cpp && ./configure && make); fi
+
+magic: magic/DetectStreaks
+
+magic/DetectStreaks:
+	if [ -d magic ]; then (cd magic && make -f Makefile.magic); fi
+
+magic.install:	ssa-core-cpp
+	if [ -d magic ]; then (cd magic && make -f Makefile.magic install); fi
+
+REMOVE = remove/src
+
+remove: FORCE
+	@cd $(REMOVE) && make -f Makefile.simple all
+
+remove.install: remove
+	@cd $(REMOVE) && make -f Makefile.simple install
+
+FORCE:
Index: unk/magic/Makefile.in
===================================================================
--- /trunk/magic/Makefile.in	(revision 26255)
+++ 	(revision )
@@ -1,47 +1,0 @@
-
-default: all
-
-all: ssa-core-cpp magic remove
-
-install: magic.install remove.install
-
-clean:
-	if [ -d magic ]; then (cd magic && make -f Makefile.magic clean); fi
-	if [ -d ssa-core-cpp ]; then (cd ssa-core-cpp && make clean); fi
-	cd $(REMOVE) && make -f Makefile.simple clean
-
-update:
-# get the source code (replace this with SVN interactions)
-	tar xvzf ~/magic.tgz
-	tar xvzf ~/ssa-core-cpp.tgz
-	cp Makefile.magic magic/Makefile.magic
-
-ssa-core-cpp: ssa-core-cpp/build/libSSA.a
-
-ssa-core-cpp/build/libSSA.a:
-	if [ -d ssa-core-cpp ]; then (cd ssa-core-cpp && ./configure && make); fi
-
-magic: magic/DetectStreaks
-
-magic/DetectStreaks:
-	if [ -d magic ]; then (cd magic && make -f Makefile.magic); fi
-
-magic.install:	ssa-core-cpp
-	if [ -d magic ]; then (cd magic && make -f Makefile.magic install); fi
-
-REMOVE = remove/src
-
-REMOVE_PROGRAMS = \
-$(REMOVE)/isdestreaked \
-$(REMOVE)/streakscompare \
-$(REMOVE)/streaksrelease \
-$(REMOVE)/streaksremove \
-$(REMOVE)/streaksreplace 
-
-remove: $(REMOVE_PROGRAMS)
-
- $(REMOVE_PROGRAMS):
-	@cd $(REMOVE) && make -f Makefile.simple all
-
-remove.install: remove
-	@cd $(REMOVE) && make -f Makefile.simple install
Index: unk/magic/autogen.sh
===================================================================
--- /trunk/magic/autogen.sh	(revision 26255)
+++ 	(revision )
@@ -1,13 +1,0 @@
-#!/bin/sh
-
-for arg in $*; do
-    case $arg in
-        --no-configure)
-	    exit 0
-            ;;
-        *)
-            ;;
-    esac
-done
-
-./configure.tcsh $*
Index: unk/magic/config.tools
===================================================================
--- /trunk/magic/config.tools	(revision 26255)
+++ 	(revision )
@@ -1,47 +1,0 @@
-#!/bin/csh -f
-
-if ($#argv == 0) then
-  echo "USAGE: config.tools [fixpath | fixconf]"
-  exit 2
-endif
-
-if ("$argv[1]" == "fixpath") goto fixpath
-if ("$argv[1]" == "fixconf") goto fixconf
-
-echo "unknown option $argv[1]"
-exit 1
-
-#######
-fixpath:
-
-if ($#argv != 2) then
-  echo "USAGE: config.tools fixpath (path)"
-  exit 2
-endif
-
-set indir = $argv[2]
-
-# convert // to / in pathnames
-echo $indir | grep "\/\/" > /dev/null
-set success = $status
-while ($success == 0) 
-  set indir = `echo $indir | sed 's|\/\/|\/|g'`
-  echo $indir | grep "\/\/" > /dev/null
-  set success = $status
-end
-
-set indir = `echo $indir | sed 's|\/$||'`
-echo $indir
-exit 0
-
-#######
-fixconf:
-
-if ($#argv != 3) then
-  echo "USAGE: config.tools fixconf (NAME) (value)"
-  exit 2
-endif
-
-cat Makefile | sed "s|$argv[2]|$argv[3]|" > Makefile.tmp
-mv -f Makefile.tmp Makefile
-exit 0;
Index: unk/magic/configure
===================================================================
--- /trunk/magic/configure	(revision 26255)
+++ 	(revision )
@@ -1,42 +1,0 @@
-#!/bin/sh
-
-# strip out CC, CFLAGS, CPPFLAGS, LDFLAGS and set env vars
-while ( test $# -gt 0 ); do
-
-  skip=0
-
-  # strip out CC, set as env variable
-  echo $1 | grep "^CC=" > /dev/null
-  if ( test $? -eq 0 ) ; then
-    val=`echo $1 | sed "s|^CC=||"`
-    export CC=$val
-    skip=1
-  fi
-  # strip out CFLAGS, set as env variable
-  echo $1 | grep "^CFLAGS=" > /dev/null
-  if ( test $? -eq 0 ) ; then
-    val=`echo $1 | sed "s|^CFLAGS=||"`
-    export CFLAGS=$val
-    skip=1
-  fi
-  # strip out CPPFLAGS, set as env variable
-  echo $1 | grep "^CPPFLAGS=" > /dev/null
-  if ( test $? -eq 0 ) ; then
-    val=`echo $1 | sed "s|^CPPFLAGS=||"`
-    export CPPFLAGS=$val
-    skip=1
-  fi
-  # strip out LDFLAGS, set as env variable
-  echo $1 | grep "^LDFLAGS=" > /dev/null
-  if ( test $? -eq 0 ) ; then
-    val=`echo $1 | sed "s|^LDFLAGS=||"`
-    export LDFLAGS=$val
-    skip=1
-  fi
-  if ( test $skip -eq 0 ) ; then
-    args="$args $1"
-  fi
-  shift
-done
-
-./configure.tcsh $args
Index: unk/magic/configure.tcsh
===================================================================
--- /trunk/magic/configure.tcsh	(revision 26255)
+++ 	(revision )
@@ -1,178 +1,0 @@
-#!/bin/csh -f
-
-# this is a very low-tech version of configure, not built by autoconf.
-# we check for the following libraries:
-
-# we need to be able to list the required libraries for a given distribution
-
-# evaluate command-line options
-set prefix  = ""
-set bindir  = ""
-set libdir  = ""
-set incdir  = ""
-set mandir  = ""
-set datadir  = ""
-set sysconfdir  = ""
-set exec_prefix = ""
-set defines = ""
-set profile = 0
-
-set root    = ""
-set args    = ""
-
-while ("$1" != "") 
- switch ("$1")
-  # switch options passed by build systems which we ignore
-  case --enable-maintainer-mode
-  case --no-create
-  case --no-recursion
-  case --enable-optimize
-  case --disable-shared
-  case --enable-shared
-  case --disable-static
-  case --enable-static
-  case --enable-profile
-  case --pedantic
-   breaksw;
-  # key/value options passed by build systems which we ignore
-  case --sbindir*
-  case --libexecdir*
-  case --sharedstatedir*
-  case --localstatedir*
-  case --oldincludedir*
-  case --infodir*
-  case --exec-prefix*
-  case --libdir*
-  case --includedir*
-  case --sysconfdir*
-  case --datadir*
-   # we need to strip the --opt word and --opt=word versions
-   set word = `echo $1 | tr = ' '`
-   if ($#word == 1) then
-     if ($#argv > 1) then
-      shift
-     endif
-   endif
-   breaksw;
-  case --prefix*
-   if ("$1" == "--prefix") then
-     shift
-     set prefix = $1
-   else
-     set prefix = `echo $1 | tr = ' ' | awk '{print $2}'`
-   endif
-   breaksw;
-  case --bindir*
-   if ("$1" == "--bindir") then
-     shift
-     set bindir = $1
-   else
-     set bindir = `echo $1 | tr = ' ' | awk '{print $2}'`
-   endif
-   breaksw;
-  case --mandir*
-   if ("$1" == "--mandir") then
-     shift
-     set mandir = $1
-   else
-     set mandir = `echo $1 | tr = ' ' | awk '{print $2}'`
-   endif
-   breaksw;
-  case --help:
-   goto usage
-  case -*: 
-   echo ""
-   echo "Unknown option: $1"
-   goto usage
-  default:
-   set args=($args $1);
-   breaksw;
- endsw
- shift
-end
-if ($#args != 1) goto usage
-
-# gpc build ignores CC, CFLAGS, CPPFLAGS, LDFLAGS
-
-# set up the basic directory names:
-set root = `pwd`
-if ($prefix == "") set prefix = $root
-
-echo 
-echo "install destinations:"
-echo "ROOT: $root"
-echo "PREFIX: $prefix"
-echo 
-
-# the config.tools fixconf operations below interpolate values in Makefile
-if (-e Makefile) mv Makefile Makefile.bak
-cp -f Makefile.in Makefile
-
-# BINDIR holds the output binary files
-if ("$bindir" == "") then
-  set subdir = bin
-  set bindir = $prefix/$subdir
-endif
-set bindir = `./config.tools fixpath $bindir`
-./config.tools fixconf @BINDIR@ $bindir
-echo BINDIR $bindir
-
-# MANDIR (DESTMAN) holds the output man pages
-if ("$mandir" == "") then
-  set mandir = $prefix/man
-endif
-set mandir = `./config.tools fixpath $mandir`
-./config.tools fixconf @MANDIR@ $mandir
-echo DESTMAN $mandir
-
-echo ""
-echo "include $bindir in your path"
-
-exit 0
-
-usage:
-cat <<EOF
-USAGE: configure [OPTION]
-
-echo remaining args: $args
-
-set the installation directory root with --prefix
-if you define the environment variable ARCH, you can set --vararch
- 
-Configuration:
-  -h, --help              display this help and exit
-  --enable-optimize       enable compiler optimization (-O2)
-  --enable-memcheck       enable ohana memory tests
-  --pedantic              include -Wall -Werror on compilation
-
-Installation directories:
-  --prefix=PREFIX         install architecture-independent files in PREFIX
-  --vararch               install with ARCH suffixes for variable architectures
-
-Fine tuning of the installation directories:
-  --bindir=DIR           user executables [PREFIX/bin/$ARCH] 
-  --libdir=DIR           object code libraries [PREFIX/lib/$ARCH]
-  --includedir=DIR       C header files [PREFIX/include]
-  --mandir=DIR           man documentation [PREFIX/man]
-  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
-  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
-
-Makefile flags:
-  CC=options
-  CFLAGS=options
-  CPPFLAGS=options
-  LDFLAGS=options
-
-The following options are silently ignored for compatibility:
-  --enable-maintainer-mode
-  --no-create
-  --no-recursion
-  --sbindir
-  --libexecdir
-  --sharedstatedir
-  --localstatedir
-  --oldincludedir
-  --infodir
-
-EOF
- exit 2;
Index: /trunk/magic/remove/src/Makefile.simple
===================================================================
--- /trunk/magic/remove/src/Makefile.simple	(revision 26255)
+++ /trunk/magic/remove/src/Makefile.simple	(revision 26256)
@@ -10,5 +10,4 @@
 
 REMOVE_OBJECTS=    \
-    ${COMMON_OBJECTS} \
     streaksremove.o \
     streaksextern.o \
@@ -17,17 +16,13 @@
 
 REPLACE_OBJECTS=      \
-    ${COMMON_OBJECTS} \
     streaksreplace.o
 
 COMPARE_OBJECTS=      \
-    ${COMMON_OBJECTS} \
     streakscompare.o
 
 RELEASE_OBJECTS=      \
-    ${COMMON_OBJECTS} \
     streaksrelease.o
 
 ISDESTREAKED_OBJECTS=      \
-    ${COMMON_OBJECTS} \
     isdestreaked.o
 
@@ -45,16 +40,27 @@
 HEADERS=Line.h streaksastrom.h streaksextern.h streaksio.h streaksremove.h
 
-all:	${PROGRAMS}
+all: ${PROGRAMS}
 
-${REMOVE_OBJECTS}:	${HEADERS}
-streaksremove:  ${REMOVE_OBJECTS}
+# programs all depend on the common objects and the common headers
+PROGRAM_OBJECTS = \
+ ${REMOVE_OBJECTS} \
+ ${REPLACE_OBJECTS} \
+ ${COMPARE_OBJECTS} \
+ ${RELEASE_OBJECTS} \
+ ${ISDESTREAKED_OBJECTS}
 
-streaksreplace:  ${REPLACE_OBJECTS}
+${COMMON_OBJECTS}: ${HEADERS}
 
-streakscompare:  ${COMPARE_OBJECTS}
+${PROGRAM_OBJECTS}: ${HEADERS} ${COMMON_OBJECTS}
 
-streaksrelease:  ${RELEASE_OBJECTS}
+streaksremove:  ${REMOVE_OBJECTS} ${COMMON_OBJECTS}
 
-isdestreaked:	${ISDESTREAKED_OBJECTS}
+streaksreplace:  ${REPLACE_OBJECTS} ${COMMON_OBJECTS}
+
+streakscompare:  ${COMPARE_OBJECTS} ${COMMON_OBJECTS}
+
+streaksrelease:  ${RELEASE_OBJECTS} ${COMMON_OBJECTS}
+
+isdestreaked:	${ISDESTREAKED_OBJECTS} ${COMMON_OBJECTS}
 
 
Index: /trunk/psconfig/pscheckmods
===================================================================
--- /trunk/psconfig/pscheckmods	(revision 26255)
+++ /trunk/psconfig/pscheckmods	(revision 26256)
@@ -5,4 +5,5 @@
 $x = eval "require $ARGV[0]; 1";
 if (! $x) { 
+    # print "$ARGV[0]: missing\n";
     exit 1;
 }
Index: /trunk/psconfig/pscheckperl
===================================================================
--- /trunk/psconfig/pscheckperl	(revision 26255)
+++ /trunk/psconfig/pscheckperl	(revision 26256)
@@ -78,7 +78,14 @@
     if ($line =~ m|^\s*\#|) { next; }
 
-    ($N, $module, $tarball, $modver, $prompts) = split (" ", $line);
+    $Nvalue = ($N, $module, $tarball, $modver, $buildopts, $prompts) = split (" ", $line);
+    if ($Nvalue < 6) {
+	print "Error in perl module config line $line\n";
+	exit 1;
+    }
+    # print "N: $N, module: $module, tarball: $tarball, modver: $modver, buildopts: $buildopts, prompts: $prompts\n";
 
-    if ($modver eq "") { $modver = 0; }
+    # we require the number of fields to be fixed, so this test is now invalid:
+    # if ($modver eq "") { $modver = 0; }
+
     system ("pscheckmods $module $modver");
     if (($? == 0) and not defined $force{$module} and not defined $force{'all'}) {
@@ -109,7 +116,11 @@
     chdir $tardir;
 
+    # we use NONE as the empty word
+    if ($buildopts eq "NONE") { $buildopts = ""; }
+    if ($prompts eq "NONE") { $prompts = ""; }
+
     if (-e "Build.PL") {
         # vsystem("perl Build.PL --install_path lib=$perldir ");
-        vsystem("perl Build.PL --install_base $prefix");
+        vsystem("perl Build.PL --install_base $prefix $buildopts");
         vsystem("Build");
         vsystem("Build install");
@@ -118,5 +129,5 @@
         if ($prompts) {
             @answers = split (",", $prompts);
-            open (PIPE, "|perl Makefile.PL PREFIX=$prefix LIB=$perldir");
+            open (PIPE, "|perl Makefile.PL PREFIX=$prefix LIB=$perldir $buildopts");
             foreach $answer (@answers) {
                 print PIPE "$answer\n";
@@ -124,7 +135,6 @@
             close (PIPE);
         } else {
-            vsystem ("perl Makefile.PL PREFIX=$prefix LIB=$perldir");
+            vsystem ("perl Makefile.PL PREFIX=$prefix LIB=$perldir $buildopts");
         }
-
         vsystem ("make < /dev/null");
         vsystem ("make install");
Index: /trunk/psconfig/tagsets/ipp-2.9.perl
===================================================================
--- /trunk/psconfig/tagsets/ipp-2.9.perl	(revision 26255)
+++ /trunk/psconfig/tagsets/ipp-2.9.perl	(revision 26256)
@@ -1,89 +1,97 @@
-# NN    Name                           Tarball                                  Version        Optional Responses
-# a Version of 0 is required if no specific version is desired
-  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            n
-  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806
-  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.54.tar.gz           0
-  02    Params::Validate               Params-Validate-0.92.tar.gz              0.92
-# 02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29
-  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0
-  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0
-  05    Time::Local                    Time-Local-1.17.tar.gz                   0
-  06    DateTime                       DateTime-0.36.tar.gz                     0
-  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0
-  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0
-  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0
-  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0
-  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0
-  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0
-  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0
-  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0
-  15    Digest                         Digest-1.15.tar.gz                       0
-  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz            0
-  17    version                        version-0.70.tar.gz                      0
-  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz              0
-  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz    0
-  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz            0
-  21    URI                            URI-1.35.tar.gz                          1.30
-  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz         0
-  23    Test::Exception                Test-Exception-0.24.tar.gz               0
-  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                0
-  25    Array::Compare                 Array-Compare-1.13.tar.gz                0
-  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                  0
-  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0
-  28    Net::FTP                       libnet-1.19.tar.gz                       0               n
-  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz               0
-  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz       0
-  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94
-  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19
-  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06
-  34    CGI                            CGI.pm-3.25.tar.gz                       3
-  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05
-  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz              1.1.1
-  37    LWP                            libwww-perl-5.805.tar.gz                 0
-  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03
-  39    File::Temp                     File-Temp-0.18.tar.gz                    0.16
-  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01
-  41    Test::Warn                     Test-Warn-0.08.tar.gz                    0
-  42    YAML                           YAML-0.62.tar.gz                         0.58           y
-  43    Module::Load                   Module-Load-0.10.tar.gz                  0
-  44    Params::Check                  Params-Check-0.25.tar.gz                 0
-  45    Template                       Template-Toolkit-2.16.tar.gz             0              n,n
-  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6
-  47    Storable                       Storable-2.15.tar.gz                     0
-  48    IO::String                     IO-String-1.08.tar.gz                    0
-  49    Date::Parse                    TimeDate-1.16.tar.gz                     0
-  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0
-  51    DB_File                        DB_File-1.814.tar.gz                     0
-  52    File::NFSLock                  File-NFSLock-1.20.tar.gz                 0
-  53    Heap                           Heap-0.71.tar.gz                         0
-  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz      0
-  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0
-  56    Cache                          Cache-2.04.tar.gz                        0
-  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                      0.36
-  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              yes,yes,no
-  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0
-# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0
-  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08
-  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01
-  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30
-  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0
-  65    Test::More                     Test-Simple-0.74.tar.gz                  0.49
-# 66    Apache::DBI                    Apache-DBI-1.06.tar.gz                   0
-# 67    Apache2::SOAP                  Apache2-SOAP-0.72.tar.gz                 0
-  68    Test::URI                      Test-URI-1.08.tar.gz                     0
-# 69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0
-# 70    Config::YAML                   Config-YAML-1.42.tar.gz                  0
-# 72    File::ExtAttr                  File-ExtAttr-1.07.tar.gz                 0
-  73    DBI                            DBI-1.601.tar.gz                         0
-  71    DBD::mysql                     DBD-mysql-4.006.tar.gz                   0
-# 74    Net::Server::Daemonize         Net-Server-0.97.tar.gz                   0.05
-  75    File::Path                      File-Path-2.04.tar.gz			0
-  76    File::Mountpoint                File-Mountpoint-0.01.tar.gz             0.01
-  77    Filesys::Df                     Filesys-Df-0.92.tar.gz                  0.92
-  78    SQL::Interp                     SQL-Interp-1.06.tar.gz                  0
-  79    Log::Dispatch::Email::MailSend  Log-Dispatch-2.22.tar.gz		0
-  80    Abstract::Meta::Class          Abstract-Meta-Class-0.13.tar.gz		0
-  81    DBIx::Connection               DBIx-Connection-0.13.tar.gz		0
-  82    Simple::SAX::Serializer        Simple-SAX-Serializer-0.05.tar.gz	0
-  83    Test::Distribution             Test-Distribution-2.00.tar.gz		0
-  84    Test::DBUnit                   Test-DBUnit-0.20.tar.gz                  0.20
+# notes:
+# Build.PL/Makefile.PL options are added to the line "perl Build.PL / perl Makefile.PL", a value of NONE is required if no options are desired
+# Build.PL/Makefile.PL responses are supplied via stdin to "perl Build.PL / perl Makefile.PL", a value of NONE is required if no responses are desired
+
+# NN    Name                           Tarball                                  Version        Build.PL/Makefile.PL Build.PL/Makefile.PL responses
+# a Version of 0 is required if no specific version is desired                                 options   responses
+  00    Getopt::Long                   Getopt-Long-2.36.tar.gz                  2.3            NONE      n
+  00    Module::Build                  Module-Build-0.2806.tar.gz               0.2806	       NONE      NONE # special comment here
+  01    ExtUtils::MakeMaker            ExtUtils-MakeMaker-6.54.tar.gz           0	       NONE      NONE 
+  02    Params::Validate               Params-Validate-0.92.tar.gz              0.92	       NONE      NONE 
+# 02    Apache::Test                   Apache-Test-1.29.tar.gz                  1.29	       NONE      NONE 
+  03    DateTime::TimeZone             DateTime-TimeZone-0.59.tar.gz            0	       NONE      NONE 
+  04    DateTime::Locale               DateTime-Locale-0.33.tar.gz              0	       NONE      NONE 
+  05    Time::Local                    Time-Local-1.17.tar.gz                   0	       NONE      NONE 
+  06    DateTime                       DateTime-0.36.tar.gz                     0	       NONE      NONE 
+  07    MIME::Base64                   MIME-Base64-3.07.tar.gz                  0	       NONE      NONE 
+  08    IO::Compress::Base             IO-Compress-Base-2.003.tar.gz            0	       NONE      NONE 
+  09    Compress::Raw::Zlib            Compress-Raw-Zlib-2.003.tar.gz           0	       NONE      NONE 
+  10    Class::Factory::Util           Class-Factory-Util-1.6.tar.gz            0	       NONE      NONE 
+  11    DateTime::Format::Strptime     DateTime-Format-Strptime-1.0700.tar.gz   0	       NONE      NONE 
+  12    Net::Domain::TLD               Net-Domain-TLD-1.65.tar.gz               0	       NONE      NONE 
+  13    Sub::Uplevel                   Sub-Uplevel-0.14.tar.gz                  0	       NONE      NONE 
+  14    HTML::Tagset                   HTML-Tagset-3.10.tar.gz                  0	       NONE      NONE 
+  15    Digest                         Digest-1.15.tar.gz                       0	       NONE      NONE 
+  16    IO::Compress::Zlib::Extra      IO-Compress-Zlib-2.003.tar.gz            0	       NONE      NONE 
+  17    version                        version-0.70.tar.gz                      0	       NONE      NONE 
+  18    Text::Balanced                 Text-Balanced-v2.0.0.tar.gz              0	       NONE      NONE 
+  19    DateTime::Format::Builder      DateTime-Format-Builder-0.7807.tar.gz    0	       NONE      NONE 
+  20    ExtUtils::Manifest             ExtUtils-Manifest-1.51.tar.gz            0	       NONE      NONE 
+  21    URI                            URI-1.35.tar.gz                          1.30	       NONE      NONE 
+  22    Data::Validate::Domain         Data-Validate-Domain-0.05.tar.gz         0	       NONE      NONE 
+  23    Test::Exception                Test-Exception-0.24.tar.gz               0	       NONE      NONE 
+  24    Tree::DAG_Node                 Tree-DAG_Node-1.05.tar.gz                0	       NONE      NONE 
+  25    Array::Compare                 Array-Compare-1.13.tar.gz                0	       NONE      NONE 
+  26    HTML::Parser                   HTML-Parser-3.56.tar.gz                  0	       NONE      NONE 
+  27    Digest::MD5                    Digest-MD5-2.36.tar.gz                   0	       NONE      NONE 
+  28    Net::FTP                       libnet-1.19.tar.gz                       0              NONE      n
+  29    Compress::Zlib                 Compress-Zlib-2.003.tar.gz               0	       NONE      NONE 
+  30    Locale::Maketext::Simple       Locale-Maketext-Simple-0.18.tar.gz       0	       NONE      NONE 
+  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94	       NONE      NONE 
+  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19	       NONE      NONE 
+  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06	       NONE      NONE 
+  34    CGI                            CGI.pm-3.25.tar.gz                       3	       NONE      NONE 
+  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05	       NONE      NONE 
+  36    Net::HTTPServer                Net-HTTPServer-1.1.1.tar.gz              1.1.1	       NONE      NONE 
+  37    LWP                            libwww-perl-5.805.tar.gz                 0	       NONE      NONE 
+  38    Digest::MD5::File              Digest-MD5-File-0.05.tar.gz              0.03	       NONE      NONE 
+  39    File::Temp                     File-Temp-0.18.tar.gz                    0.16	       NONE      NONE 
+  40    Data::Validate::URI            Data-Validate-URI-0.01.tar.gz            0.01	       NONE      NONE 
+  41    Test::Warn                     Test-Warn-0.08.tar.gz                    0	       NONE      NONE 
+  42    YAML                           YAML-0.62.tar.gz                         0.58           NONE      y
+  43    Module::Load                   Module-Load-0.10.tar.gz                  0	       NONE      NONE 
+  44    Params::Check                  Params-Check-0.25.tar.gz                 0	       NONE      NONE 
+  45    Template                       Template-Toolkit-2.16.tar.gz             0              NONE      n,n
+  46    Statistics::Descriptive        Statistics-Descriptive-2.6.tar.gz        2.6	       NONE      NONE 
+  47    Storable                       Storable-2.15.tar.gz                     0	       NONE      NONE 
+  48    IO::String                     IO-String-1.08.tar.gz                    0	       NONE      NONE 
+  49    Date::Parse                    TimeDate-1.16.tar.gz                     0	       NONE      NONE 
+  50    Digest::SHA1                   Digest-SHA1-2.11.tar.gz                  0	       NONE      NONE 
+  51    DB_File                        DB_File-1.814.tar.gz                     0	       NONE      NONE 
+  52    File::NFSLock                  File-NFSLock-1.20.tar.gz                 0	       NONE      NONE 
+  53    Heap                           Heap-0.71.tar.gz                         0	       NONE      NONE 
+  54    Module::Load::Conditional      Module-Load-Conditional-0.16.tar.gz      0	       NONE      NONE 
+  55    IPC::Run                       IPC-Run-0.80.tar.gz                      0	       NONE      NONE 
+  56    Cache                          Cache-2.04.tar.gz                        0	       NONE      NONE 
+  57    IPC::Cmd                       IPC-Cmd-0.36.tar.gz                      0.36	       NONE      NONE 
+  58    SOAP::Lite                     SOAP-Lite-0.69.tar.gz                    0              NONE      yes,yes,no
+  59    Log::Log4perl                  Log-Log4perl-1.10.tar.gz                 0	       NONE      NONE 
+# 60    File::ExtAttr                  File-ExtAttr-1.04.tar.gz                 0	       NONE      NONE 
+  61    Text::Glob                     Text-Glob-0.08.tar.gz                    0.08	       NONE      NONE 
+  62    Number::Compare                Number-Compare-0.01.tar.gz               0.01	       NONE      NONE 
+  63    File::Find::Rule               File-Find-Rule-0.30.tar.gz               0.30	       NONE      NONE 
+  64    Astro::FITS::CFITSIO           Astro-FITS-CFITSIO-1.05.tar.gz           0	       NONE      NONE 
+  65    Test::More                     Test-Simple-0.74.tar.gz                  0.49	       NONE      NONE 
+# 66    Apache::DBI                    Apache-DBI-1.06.tar.gz                   0	       NONE      NONE 
+# 67    Apache2::SOAP                  Apache2-SOAP-0.72.tar.gz                 0	       NONE      NONE 
+  68    Test::URI                      Test-URI-1.08.tar.gz                     0	       NONE      NONE 
+# 69    Sys::Statistics::Linux::DiskUsage Sys-Statistics-Linux-0.26.tar.gz      0	       NONE      NONE 
+# 70    Config::YAML                   Config-YAML-1.42.tar.gz                  0	       NONE      NONE 
+# 72    File::ExtAttr                  File-ExtAttr-1.07.tar.gz                 0	       NONE      NONE 
+  73    DBI                            DBI-1.601.tar.gz                         0	       NONE      NONE 
+  71    DBD::mysql                     DBD-mysql-4.006.tar.gz                   0	       NONE      NONE 
+# 74    Net::Server::Daemonize         Net-Server-0.97.tar.gz                   0.05	       NONE      NONE 
+  75    File::Path                      File-Path-2.04.tar.gz			0	       NONE      NONE 
+  76    File::Mountpoint                File-Mountpoint-0.01.tar.gz             0.01	       NONE      NONE 
+  77    Filesys::Df                     Filesys-Df-0.92.tar.gz                  0.92	       NONE      NONE 
+  78    SQL::Interp                     SQL-Interp-1.06.tar.gz                  0	       NONE      NONE 
+  79a   Mail::Send                      MailTools-2.04.tar.gz		        0	       NONE      NONE 
+  79b   Log::Dispatch::Email::MailSend  Log-Dispatch-2.22.tar.gz		0	       NONE      NONE 
+  80    Abstract::Meta::Class          Abstract-Meta-Class-0.13.tar.gz		0	       NONE      NONE 
+  81    DBIx::Connection               DBIx-Connection-0.13.tar.gz		0	       NONE      NONE 
+  82a   Test::Pod                      Test-Pod-1.40.tar.gz                     0	       NONE      NONE 
+  82c   XML::NamespaceSupport          XML-NamespaceSupport-1.10.tar.gz         0              --skip    NONE    
+  82b   XML::SAX                       XML-SAX-0.96.tar.gz                      0              NONE      Y
+  82d   Simple::SAX::Serializer        Simple-SAX-Serializer-0.05.tar.gz	0	       NONE      NONE 
+  83    Test::Distribution             Test-Distribution-2.00.tar.gz		0	       NONE      NONE 
+  84    Test::DBUnit                   Test-DBUnit-0.20.tar.gz                  0.20           NONE      NONE 
