summaryrefslogtreecommitdiffstats
path: root/source/l/netpbm/netpbm-ppmfadeusage.patch
diff options
context:
space:
mode:
Diffstat (limited to 'source/l/netpbm/netpbm-ppmfadeusage.patch')
-rw-r--r--source/l/netpbm/netpbm-ppmfadeusage.patch88
1 files changed, 41 insertions, 47 deletions
diff --git a/source/l/netpbm/netpbm-ppmfadeusage.patch b/source/l/netpbm/netpbm-ppmfadeusage.patch
index d48f5f546..9c1f31b22 100644
--- a/source/l/netpbm/netpbm-ppmfadeusage.patch
+++ b/source/l/netpbm/netpbm-ppmfadeusage.patch
@@ -1,57 +1,51 @@
-diff -urNp old/editor/ppmfade new/editor/ppmfade
---- old/editor/ppmfade 2017-11-01 11:47:49.869611402 +0100
-+++ new/editor/ppmfade 2017-11-01 11:53:25.524973342 +0100
-@@ -84,7 +84,7 @@ for ($n = 0; $n < @ARGV; $n++) {
- if (-e $first_file) {
- } else {
- print "I can't find first file '$first_file'\n";
-- exit 20;
+--- ./editor/ppmfade.orig 2023-10-02 13:25:51.308938861 -0500
++++ ./editor/ppmfade 2023-10-02 13:28:24.940930364 -0500
+@@ -109,13 +109,13 @@
+ print STDERR ("There are no non-option arguments possible. " .
+ "You specified '$arg'\n");
+ }
+- exit 100;
+ exit 1;
}
- } elsif ($ARGV[$n] eq "-l") {
- $n++;
-@@ -92,7 +92,7 @@ for ($n = 0; $n < @ARGV; $n++) {
- if (-e $last_file) {
+ }
+
+ if (!defined($firstFileNm) && !defined($lastFileNm)) {
+ print STDERR ("You must specify -f or -l (or both)\n");
+- exit 90;
++ exit 1;
+ }
+
+ if (!defined($mode)) {
+@@ -142,7 +142,7 @@
} else {
- print "I can't find last file '$last_file'\n";
-- exit 20;
+ print STDERR
+ ("Unrecognized results from pnmfile on $firstFileNm.\n");
+- exit(50);
+ exit 1;
}
- } elsif ($ARGV[$n] eq "-base") {
- $n++;
-@@ -113,9 +113,12 @@ for ($n = 0; $n < @ARGV; $n++) {
- $mode = $BLOCK;
- } elsif ("$ARGV[$n]" eq "-mix") {
- $mode = $MIX;
-+ } elsif ($ARGV[$n] eq "-help" || $ARGV[$n] eq "--help" || $ARGV[$n] eq "-h") {
-+ print "ppmfade: Use 'man ppmfade' for help.\n";
-+ exit 1;
} else {
- print "Unknown argument: $ARGV[$n]\n";
-- exit 100;
-+ exit 1;
- }
- }
- #
-@@ -134,18 +137,18 @@ if ($first_file ne "undefined") {
- $width = $1; $height = $2;
- } else {
- print("Unrecognized results from pnmfile on $first_file.\n");
-- exit(50);
-+ exit 1;
- }
- } elsif ($last_file ne "undefined") {
- if ((`pnmfile $last_file` =~ m{\b(\d+)\sby\s(\d+)} )) {
- $width = $1; $height = $2;
- } else {
- print("Unrecognized results from pnmfile on $first_file.\n");
-- exit(50);
-+ exit 1;
+ # $lastFileNm is defined
+@@ -151,7 +151,7 @@
+ } else {
+ print STDERR
+ ("Unrecognized results from pnmfile on $firstFileNm.\n");
+- exit(50);
++ exit 1;
+ }
}
- } else {
- print("ppmfade: You must specify -f or -l (or both)\n");
-- exit(90);
+ return $width, $height;
+@@ -436,12 +436,12 @@
+
+ if (defined($firstFileNm) && !-e($firstFileNm)) {
+ print STDERR ("First file '$firstFileNm' does not exist\n");
+- exit 20;
++ exit 1;
+ }
+
+ if (defined($lastFileNm) && !-e($lastFileNm)) {
+ print STDERR ("Last file '$lastFileNm' does not exist\n");
+- exit 20;
+ exit 1;
}
- print("Frames are " . $width . "W x " . $height . "H\n");
+ my ($width, $height) = imageDimensions($firstFileNm, $lastFileNm);