&My::Web::footer call is deprecated now, use just: exit;
[www.jankratochvil.net.git] / project / AutoGen / Index.pm
1 # $Id$
2 # Main page of 'My::Project::AutoGen'
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package project::AutoGen::Index;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use My::Web;
27 Wuse 'project::Lib';
28
29
30 our @ListItem=(
31                 "name"=>"AutoGen",
32                 "platform"=>"unixdevel",
33                 "priority"=>540,
34                 "cvs"=>"macros",
35                 "link-Documentation"=>'/project/Pod2Html.pm?cvs=macros/AutoGen.pm',
36                 # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"}
37                 "link-Source file"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/macros/AutoGen.pm?rev=HEAD",
38                 "summary"=>"autogen.sh while supporting CVS/.rpm/.deb",
39                 "license"=>"GPL",
40                 "maintenance"=>"active",
41                 "language"=>"Perl",
42                 "description"=><<"HERE",
43 <p>Projects usually have their <strong>autogen.sh</strong> script files to run
44 <strong>autoconf</strong>(1), <strong>automake</strong>(1) and similiar tools.
45 This project has some additional features:</p>
46 <ul>
47         <li>
48                 Clean the checkout directory without <strong>Makefile</strong>s for
49                 'make clean'.
50         </li>
51         <li>
52                 Maintain <strong>.cvsignore</strong> files containing the files being
53                 cleaned.
54         </li>
55         <li>
56                 Single-command package building of
57                 <strong>.rpm</strong>/<strong>.deb</strong> out of CVS checkout.
58         </li>
59         <li>
60                 Support: <strong>gettext</strong>, <strong>glib-gettext</strong>,
61                 <strong>libtool</strong>, <strong>autoconf</strong>,
62                 <strong>automake</strong>.
63         </li>
64 </ul>
65 HERE
66                 );
67
68 sub handler
69 {
70 project::Lib->init();
71 exit;
72 }
73 1;