Finally merged the branch 'apache20'(+'apache2') back to the main trunk.
[www.jankratochvil.net.git] / project / libtool / Index.pm
old mode 100755 (executable)
new mode 100644 (file)
similarity index 75%
rename from project/libtool/Index.html.pl
rename to project/libtool/Index.pm
index 641b135..0d9f30d
@@ -1,8 +1,6 @@
-#! /usr/bin/perl
-# 
 # $Id$
 # Main page of 'My::Project::libtool'
-# Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
 # 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -25,17 +23,29 @@ our $CVS_ID=q$Id$;
 use strict;
 use warnings;
 
-BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
 use My::Web;
-Wuse 'My::Project';
-Wuse 'project::libtool::ListItem';
+Wuse 'project::Lib';
 
 
-My::Project->init_project(
-               "__PACKAGE__"=>__PACKAGE__,
-               "ListItem"=>\@project::libtool::ListItem::ListItem,
+our @ListItem=(
+               "name"=>sub { return a_href('http://www.gnu.org/software/libtool/libtool.html','GNU Libtool').' fix'; },
+               "platform"=>"patch",
+               "priority"=>620,
+               "summary"=>'Handle duplicate object file names',
+               "download-patch"=>'http://savannah.gnu.org/cgi-bin/cvsweb/libtool/ltmain.in.diff?r1=1.320&r2=1.321',
+               "license"=>"GPL",
+               "maintenance"=>"accepted",
+               "language"=>"sh patch",
+               "description"=><<"HERE",
+<p>Patch fixes linking of convenience libraries (<i>.a</i>) containing two
+conflicting name objects.</p>
+HERE
                );
 
+sub handler
+{
+project::Lib->init();
+
 
 print <<"HERE";
 <p>When you include convenience library (<i>.a</i>) containing two conflicting name
@@ -62,4 +72,6 @@ misleading confusion of different object file found than expected.</p>
 HERE
 
 
-My::Web->footer();
+exit;
+}
+1;