+platform
[www.jankratochvil.net.git] / project / wllib / ListItem.pm
index c490ca7..f563d2c 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::wllib;
+package project::wllib::ListItem;
 require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
-use vars qw($VERSION $CVS_ID);
-$VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
-$CVS_ID=q$Id$;
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
 use strict;
 use warnings;
 
+use My::Web;
 
-our %ListItem=(
-               "name"=>"Line drawing Crossplatform Library",
+
+our @ListItem=(
+               "name"=>"wllib",
+               "platform"=>"unixdevel",
                "priority"=>4,
                "download"=>"wllib-1.0.0.tar.gz",
-               "summary"=>"Graphics library",
+               "summary"=>"Graphics library for crossplatform line drawing",
                "license"=>"PD",
-               "maintenance"=>"obsolete",
-               "reason"=>"Supported backends are no longer being used.",
+               "maintenance"=>"obsolete-Any of the supported backends are no longer being used.",
                "language"=>"C",
-               "description"=>""
-                               .'<p>This library should make you generically use line drawing on the following platforms:'
-                               .' <a href="http://www.x.org/">UNIX/X Windows System X11</a>,'
-                               .' <a href="http://www.svgalib.org/">UNIX/SVGAlib</a> and'
-                               .' <a href="http://www.amiga.com/">AmigaOS</a>.</p>'
+               "description"=><<"HERE",
+<p>This library should make you generically use line drawing on the following platforms:
+@{[ a_href 'http://www.x.org/','UNIX/X Windows System X11 (libX11)' ]},
+@{[ a_href 'http://www.svgalib.org/','UNIX/SVGAlib' ]} and
+@{[ a_href 'http://www.amiga.com/','AmigaOS' ]}.</p>
+HERE
                );
 
 1;