X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=project%2Fwllib%2FListItem.pm;h=f563d2c0ad5bca6d327466e410679e43a157abe0;hb=dd8c6d6f376afc2f7a33118154707cc8e9e9059e;hp=c490ca70b1ce4e2617d25d1e3d1b33d5c1d3f780;hpb=b905cf5f4f66563d9d21d9a53bcc0b1efec62ab8;p=www.jankratochvil.net.git diff --git a/project/wllib/ListItem.pm b/project/wllib/ListItem.pm index c490ca7..f563d2c 100755 --- a/project/wllib/ListItem.pm +++ b/project/wllib/ListItem.pm @@ -18,29 +18,31 @@ # 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"=>"" - .'

This library should make you generically use line drawing on the following platforms:' - .' UNIX/X Windows System X11,' - .' UNIX/SVGAlib and' - .' AmigaOS.

' + "description"=><<"HERE", +

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' ]}.

+HERE ); 1;