X-Git-Url: https://git.jankratochvil.net/?a=blobdiff_plain;f=project%2Fircon%2FListItem.pm;h=51b2f0bc4a8bd6416795fee092d4f67e585530fd;hb=b4ddfba5b53a40e47285f8851e1ff7bb5419909b;hp=cd4f448ab2d52f6344bd9de523af64e437a6d800;hpb=b905cf5f4f66563d9d21d9a53bcc0b1efec62ab8;p=www.jankratochvil.net.git diff --git a/project/ircon/ListItem.pm b/project/ircon/ListItem.pm index cd4f448..51b2f0b 100755 --- a/project/ircon/ListItem.pm +++ b/project/ircon/ListItem.pm @@ -18,31 +18,34 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -package My::Project::ircon; +package project::ircon::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"=>"IRCon - Infrared Remote Control", - "priority"=>5, + +our @ListItem=( + "name"=>"IRCon", + "platform"=>"unixuser", + "priority"=>580, + "icon"=>"ircon-icon.jpeg", "download"=>"ircon.tar.gz", "link-index of scanned images"=>"ircon-img/", "download-all scanned images"=>"ircon-img.tar", - "summary"=>"InfraRed control", + "summary"=>"InfraRed remote control hardware", "license"=>"PD", - "maintenance"=>"obsolete", - "reason"=>"Linux kernel driver no longer maintained. Superseded by LIRC", + "maintenance"=>"obsolete-Superseded by ".a_href('http://www.lirc.org/','LIRC'), "language"=>"C, Java", - "description"=>"" - .'

Software package for custom simple hardware connected to PC parallel port' - .' and transmitting infrared singals to fake real remote TV/video controllers. Hardware' - .' is also equipped with receiver which is only used during development to grab and decode' - .' original signals.

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

Software package for custom simple hardware connected to PC parallel port +and transmitting infrared singals to fake real remote TV/video controllers. Hardware +is also equipped with receiver which is only used during development to grab and decode +original signals.

+HERE ); 1;