Geoffrey Young wrote:

<subliminal message>
Me? I thought you wanted to do that? ;)
</subliminal message>


ok, I'll do it. but don't expect some code that generates bounds at random :)


first pass attached.

Looks great, geoff! I've attached your patch but using $(ECHO) (I don't think echo is portable) and did a few tweaks to the text.


__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
retrieving revision 1.126
diff -u -r1.126 Makefile.PL
--- Makefile.PL 29 Oct 2003 00:42:47 -0000      1.126
+++ Makefile.PL 4 Nov 2003 20:13:21 -0000
@@ -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;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to