diff options
author | leeym <leeym@FreeBSD.org> | 2007-01-03 12:39:00 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2007-01-03 12:39:00 +0800 |
commit | 822cad220573bd022940e9fae2b05fca5a79f6d8 (patch) | |
tree | 903a90166b2f9063ea618c704ca92a92b0363360 /www/p5-Gantry | |
parent | 4f01849f0e136c3234dbd4fd167bd54d2533d2eb (diff) | |
download | freebsd-ports-gnome-822cad220573bd022940e9fae2b05fca5a79f6d8.tar.gz freebsd-ports-gnome-822cad220573bd022940e9fae2b05fca5a79f6d8.tar.zst freebsd-ports-gnome-822cad220573bd022940e9fae2b05fca5a79f6d8.zip |
- not to touch filesystem before 'make install'
(http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.6.2006122405/p5-Gantry-3.45.log)
Diffstat (limited to 'www/p5-Gantry')
-rw-r--r-- | www/p5-Gantry/files/patch-Build.PL | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/www/p5-Gantry/files/patch-Build.PL b/www/p5-Gantry/files/patch-Build.PL index 783ec9deaf88..c25157eab6e8 100644 --- a/www/p5-Gantry/files/patch-Build.PL +++ b/www/p5-Gantry/files/patch-Build.PL @@ -1,9 +1,34 @@ ---- Build.PL.orig Tue Dec 19 15:47:23 2006 -+++ Build.PL Tue Dec 19 15:47:48 2006 -@@ -132,101 +132,6 @@ +--- Build.PL.orig Tue Dec 12 00:12:23 2006 ++++ Build.PL Wed Jan 3 11:37:09 2007 +@@ -36,10 +36,10 @@ + web_files => \@web_dirs, + build_web_directory => 'root', + install_web_directories => { +- 'default' => '/home/httpd/html/gantry', +- 'prod' => '/home/httpd/html/gantry', +- 'dev' => '/home/httpd/html/gantry', +- 'tim' => '/home/tkeefer/httpd/html/gantry' ++ 'default' => '/usr/local/www/data/gantry', ++ 'prod' => '/usr/local/www/data/gantry', ++ 'dev' => '/usr/local/www/data/gantry', ++ 'tim' => '/usr/local/www/data/gantry' + }, + create_makefile_pl => 'passthrough', + license => 'perl', +@@ -98,7 +98,7 @@ + if ( not -d $template_path ) { + my $make_path = $build->y_n( + "$template_path does not exist, should I make it?", +- 'y' ++ 'n' + ); - } + if ( $make_path ) { +@@ -131,101 +131,6 @@ + $self->process_web_files( 'web' ); + } +- - sub ACTION_install { - my $self = shift; - @@ -98,7 +123,6 @@ - print "\n"; - - } # end ACTION_install -- + sub process_web_files { my $self = shift; - my $files = $self->find_web_files; |