geoff 2003/11/04 12:27:22
Modified: . Makefile.PL Log: add post-install banner Reviewed by: stas Revision Changes Path 1.127 +17 -1 modperl-2.0/Makefile.PL Index: Makefile.PL =================================================================== RCS file: /home/cvs/modperl-2.0/Makefile.PL,v retrieving revision 1.126 retrieving revision 1.127 diff -u -r1.126 -r1.127 --- Makefile.PL 29 Oct 2003 00:42:47 -0000 1.126 +++ Makefile.PL 4 Nov 2003 20:27:22 -0000 1.127 @@ -463,6 +463,20 @@ modperl_src_clean: cd "$(MODPERL_SRC)" && $(MODPERL_LIBMAKE) clean +modperl_banner: + @$(ECHO) "+--------------------------------------------------------------+" + @$(ECHO) "| |" + @$(ECHO) "| For details on getting started with mod_perl 2, see: |" + @$(ECHO) "| |" + @$(ECHO) "| http://perl.apache.org/docs/2.0/user/intro/start_fast.html |" + @$(ECHO) "| |" + @$(ECHO) "| |" + @$(ECHO) "| Found a bug? File a bug report: |" + @$(ECHO) "| |" + @$(ECHO) "| http://perl.apache.org/bugs/ |" + @$(ECHO) "| |" + @$(ECHO) "+--------------------------------------------------------------+" + EOF $string .= Apache::Test::install::nuke_Apache__test_target() @@ -480,6 +494,8 @@ ModPerl::MM::add_dep(\$string, pure_install => 'nuke_Apache__test') if $apache_test_install; + ModPerl::MM::add_dep_after(\$string, qw(install doc_install modperl_banner)); + $string; } @@ -528,7 +544,7 @@ cvs_tag : cvs tag MODPERL_$(VERSION_SYM) . - @echo update mod_perl.pm VERSION now + @$(ECHO) update mod_perl.pm VERSION now EOF return $string;