#!/usr/bin/perl
sub pkgmap {
my ($pkg) = @_;
my (%PKGMAP);
$PKGMAP{'autoconf'} = 'gnu-autoconf';
$PKGMAP{'ncftp'} = 'ncftp3';
$PKGMAP{'mysql-server'} = 'mysql40-server';
$PKGMAP{'mysql-client'} = 'mysql40-client';
$PKGMAP{'bind'} = 'bind9';
if ($PKGMAP{$pkg} ne "") {
return $PKGMAP{$pkg};
} else {
return $pkg;
}
}
1;