mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
- update to 10.26.25
This commit is contained in:
parent
730e952dec
commit
78ed31c71e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=156473
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= netpbm
|
||||
PORTVERSION= 10.26.24
|
||||
PORTVERSION= 10.26.25
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (netpbm-10.26.24.tgz) = f1c204b454fb7d6b417016a0aea32d68
|
||||
SHA256 (netpbm-10.26.24.tgz) = a261ae2030dbd6a81554a51729074cc211c1b4147046eb9b7dbe0344ee878ec5
|
||||
SIZE (netpbm-10.26.24.tgz) = 2540150
|
||||
MD5 (netpbm-10.26.25.tgz) = d2bf4bc88689e4bf280c29de2c60fe3f
|
||||
SHA256 (netpbm-10.26.25.tgz) = fda2b11538d077c55a59e0c24af35863426e3338ff7f82e3e3fb3ce119d25de6
|
||||
SIZE (netpbm-10.26.25.tgz) = 2540566
|
||||
|
@ -1,16 +1,17 @@
|
||||
--- editor/pnmquant Tue Dec 16 17:34:11 2003
|
||||
+++ editor/pnmquant.new Fri Feb 20 14:31:03 2004
|
||||
@@ -13,7 +13,8 @@
|
||||
--- editor/pnmquant.orig Sun Feb 19 22:03:42 2006
|
||||
+++ editor/pnmquant Mon Feb 20 09:41:57 2006
|
||||
@@ -15,7 +15,9 @@
|
||||
use Getopt::Long;
|
||||
use File::Temp "tempfile";
|
||||
use File::Spec;
|
||||
#use Fcntl ":seek"; # not available in Perl 5.00503
|
||||
-use Fcntl ":seek";
|
||||
+use Fcntl;
|
||||
+use POSIX qw(SEEK_SET SEEK_CUR SEEK_END);
|
||||
+
|
||||
|
||||
my ($TRUE, $FALSE) = (1,0);
|
||||
|
||||
@@ -52,7 +53,7 @@
|
||||
@@ -57,7 +59,7 @@
|
||||
my $infile;
|
||||
my $ncolors = $ARGV[0];
|
||||
|
||||
@ -19,7 +20,7 @@
|
||||
print(STDERR
|
||||
"Number of colors argument '$ncolors' is not a positive " .
|
||||
"integer.\n");
|
||||
@@ -111,7 +112,7 @@
|
||||
@@ -116,7 +118,7 @@
|
||||
tell(INFH); # Avoids bogus "INFH is not referenced" warning
|
||||
}
|
||||
} else {
|
||||
@ -28,7 +29,7 @@
|
||||
or die("Unable to open input file '$infile'. Errno=$ERRNO");
|
||||
}
|
||||
}
|
||||
@@ -152,7 +153,7 @@
|
||||
@@ -157,7 +159,7 @@
|
||||
$spreadOpt = "-spreadbrightness";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user