Author: spadkins
Date: Sat May 20 10:10:36 2006
New Revision: 6319
Added:
p5ee/trunk/App-Widget-ChartDirector/Makefile.PL
Modified:
p5ee/trunk/App-Widget-ChartDirector/MANIFEST
p5ee/trunk/App-Widget-ChartDirector/cgi-bin/app-cdgraph
Log:
use Makefile.PL instead of Build.PL
Modified: p5ee/trunk/App-Widget-ChartDirector/MANIFEST
==============================================================================
--- p5ee/trunk/App-Widget-ChartDirector/MANIFEST (original)
+++ p5ee/trunk/App-Widget-ChartDirector/MANIFEST Sat May 20 10:10:36 2006
@@ -1,5 +1,5 @@
CHANGES
-Build.PL
+Makefile.PL
MANIFEST
README
TODO
Added: p5ee/trunk/App-Widget-ChartDirector/Makefile.PL
==============================================================================
--- (empty file)
+++ p5ee/trunk/App-Widget-ChartDirector/Makefile.PL Sat May 20 10:10:36 2006
@@ -0,0 +1,37 @@
+
+######################################################################
+## File: $Id: Makefile.PL,v 1.2 2005/04/13 17:53:58 spadkins Exp $
+######################################################################
+
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+
+#my @programs = <bin/[a-z]*>;
+
+%opts = (
+ 'NAME' => 'App-Widget-ChartDirector',
+ 'DISTNAME' => 'App-Widget-ChartDirector',
+ 'VERSION' => '0.13',
+ #'EXE_FILES' => [ @programs ],
+ 'PREREQ_PM' => {
+ "App::Options" => 0, # option parsing
+ "File::Spec" => 0, # platform-neutral directory processing
+ },
+);
+
+######################################################################
+# MAKE THE MAKEFILE
+######################################################################
+
+WriteMakefile(%opts);
+
+sub MY::postamble {
+ return <<EOF;
+
+install ::
+ @\$(MOD_INSTALL) cgi-bin \$(PREFIX)/cgi-bin
+
+EOF
+}
+
Modified: p5ee/trunk/App-Widget-ChartDirector/cgi-bin/app-cdgraph
==============================================================================
--- p5ee/trunk/App-Widget-ChartDirector/cgi-bin/app-cdgraph (original)
+++ p5ee/trunk/App-Widget-ChartDirector/cgi-bin/app-cdgraph Sat May 20
10:10:36 2006
@@ -1,4 +1,4 @@
-#!/usr/local/bin/perl -w
+#!/usr/bin/perl -w
use strict;