#! /usr/bin/perl # # $Id$ # Definition of 'My::Project::udpgate' for list.cgi.pl # Copyright (C) 2004 Jan Kratochvil # # 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 # the Free Software Foundation; exactly version 2 of June 1991 is required # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA package project::udpgate::ListItem; require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway 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"=>"udpgate", "platform"=>"unixuser", "priority"=>505, "download-i386 static binary"=>"dist/udpgate-1.0.1", "download-gzipped i386 static binary"=>"dist/udpgate-1.0.1.gz", "download-i386 static RPM package"=>"dist/udpgate-1.0.1-0.i386.rpm", "download-sources RPM package"=>"dist/udpgate-1.0.1-0.src.rpm", "download-sources .tar.gz"=>"dist/udpgate-1.0.1.tar.gz", "cvs"=>"udpgate", "summary"=>"UDP packets gateway", "license"=>"GPL", "maintenance"=>"ready", "language"=>"C", "description"=><<"HERE",

UDP Gate will forward packets from arbitrary clients to a single UDP server. Features optional Gnome user interface and automatic system startup. Program is provided only with fixed server address.

HERE ); 1;