+platform
[www.jankratochvil.net.git] / project / tcpdump / ListItem.pm
index 19f0fed..6723a10 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::tcpdump;
+package project::tcpdump::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"=>"tcpdump ASCII Dump Patch",
+
+our @ListItem=(
+               "name"=>"tcpdump ASCII",
+               "platform"=>"unixuser",
                "priority"=>6,
                "download"=>"tcpdump-3.4-ASCIIdump.diff",
                "download-tcpdump-3.4"=>"ftp://ftp.ee.lbl.gov/tcpdump-3.4.tar.Z",
-               "summary"=>"tcpdump readability patch",
+               "summary"=>"tcpdump(1) patch for better output readable as ASCII",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"C patch",
-               "description"=>""
-                               .'<p>Makes the text messages of tcpdump(1) readable when option <code>-x</code> is used.</p>'
+               "description"=><<"HERE",
+<p>Makes the text messages of tcpdump(1) readable when option <code>-x</code> is used.</p>
+HERE
                );
 
 1;