1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-31 10:46:16 +00:00

- Update to version 0.11.6

PR:		ports/62827
Submitted by:	maintainer
This commit is contained in:
Kirill Ponomarev 2004-02-14 13:56:41 +00:00
parent 3758a6f324
commit 05018a821c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=100919
6 changed files with 6 additions and 146 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= giFT
PORTVERSION= 0.11.5
PORTREVISION= 1
PORTVERSION= 0.11.6
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME:L}

View File

@ -1 +1,2 @@
MD5 (gift-0.11.5.tar.bz2) = f492b6e3607aed801b77657f3808f5c1
MD5 (gift-0.11.6.tar.bz2) = 614c7dc355c65522424b649684fde8be
SIZE (gift-0.11.6.tar.bz2) = 533799

View File

@ -1,70 +0,0 @@
$FreeBSD$
--- gift-setup.in.orig Tue Dec 23 05:22:52 2003
+++ gift-setup.in Sun Jan 4 18:11:01 2004
@@ -338,31 +338,31 @@
my ($path_cfg_dir) = $path_cfg =~ m/^(.*)\/[^\/]+$/;
mkdir ($path_cfg_dir, 0755) unless (-d $path_cfg_dir);
- open (my $fcfg, ">$path_cfg") or
+ open (fcfg, ">$path_cfg") or
die "Cannot open $path_cfg: $!";
- open (my $ftpl, $path_tpl) or
+ open (ftpl, $path_tpl) or
die "Cannot open $path_tpl: $!";
my $cfg_hdr;
- while (<$ftpl>)
+ while (<ftpl>)
{
$cfg_hdr = $1 if m/^\[(\w+)\]$/;
if (m/^\#?(\w+) =\s?(.*)$/)
{
die unless defined $cfg_hdr;
- printf $fcfg ("%s = %s\n", $1, $cfg_tbl->{"/$cfg_hdr/$1"});
+ printf fcfg ("%s = %s\n", $1, $cfg_tbl->{"/$cfg_hdr/$1"});
}
else
{
- print $fcfg $_;
+ print fcfg $_;
}
}
- close $fcfg;
- close $ftpl;
+ close fcfg;
+ close ftpl;
printf ("Wrote %s.\n", $path_cfg);
}
@@ -376,7 +376,7 @@
my $cfg_ent = {};
my $cfg_hdr = undef;
- open (my $fhandle, $template) or
+ open (fhandle, $template) or
die "Cannot open $template: $!";
#
@@ -387,7 +387,7 @@
#
my $reading = 0;
- while (<$fhandle>)
+ while (<fhandle>)
{
$cfg_hdr = $1 if m/^\[(\w+)\]$/;
@@ -425,7 +425,7 @@
}
}
- close $fhandle;
+ close fhandle;
return \@cfg_tbl;
}

View File

@ -6,8 +6,7 @@
#
PORTNAME= giFT
PORTVERSION= 0.11.5
PORTREVISION= 1
PORTVERSION= 0.11.6
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME:L}

View File

@ -1 +1,2 @@
MD5 (gift-0.11.5.tar.bz2) = f492b6e3607aed801b77657f3808f5c1
MD5 (gift-0.11.6.tar.bz2) = 614c7dc355c65522424b649684fde8be
SIZE (gift-0.11.6.tar.bz2) = 533799

View File

@ -1,70 +0,0 @@
$FreeBSD$
--- gift-setup.in.orig Tue Dec 23 05:22:52 2003
+++ gift-setup.in Sun Jan 4 18:11:01 2004
@@ -338,31 +338,31 @@
my ($path_cfg_dir) = $path_cfg =~ m/^(.*)\/[^\/]+$/;
mkdir ($path_cfg_dir, 0755) unless (-d $path_cfg_dir);
- open (my $fcfg, ">$path_cfg") or
+ open (fcfg, ">$path_cfg") or
die "Cannot open $path_cfg: $!";
- open (my $ftpl, $path_tpl) or
+ open (ftpl, $path_tpl) or
die "Cannot open $path_tpl: $!";
my $cfg_hdr;
- while (<$ftpl>)
+ while (<ftpl>)
{
$cfg_hdr = $1 if m/^\[(\w+)\]$/;
if (m/^\#?(\w+) =\s?(.*)$/)
{
die unless defined $cfg_hdr;
- printf $fcfg ("%s = %s\n", $1, $cfg_tbl->{"/$cfg_hdr/$1"});
+ printf fcfg ("%s = %s\n", $1, $cfg_tbl->{"/$cfg_hdr/$1"});
}
else
{
- print $fcfg $_;
+ print fcfg $_;
}
}
- close $fcfg;
- close $ftpl;
+ close fcfg;
+ close ftpl;
printf ("Wrote %s.\n", $path_cfg);
}
@@ -376,7 +376,7 @@
my $cfg_ent = {};
my $cfg_hdr = undef;
- open (my $fhandle, $template) or
+ open (fhandle, $template) or
die "Cannot open $template: $!";
#
@@ -387,7 +387,7 @@
#
my $reading = 0;
- while (<$fhandle>)
+ while (<fhandle>)
{
$cfg_hdr = $1 if m/^\[(\w+)\]$/;
@@ -425,7 +425,7 @@
}
}
- close $fhandle;
+ close fhandle;
return \@cfg_tbl;
}