diff options
author | Kyle Guinn <elyk03@gmail.com> | 2019-03-25 23:07:00 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-03-30 07:18:26 +0700 |
commit | 418980f897c9523871d212b56e27d8f837261a11 (patch) | |
tree | 711cef93c622890c1251d2037f3d25733ed45e3f /graphics/potrace/patches | |
parent | 517ad462a7c9466f1a5ca11da9cea35ee102ec0f (diff) | |
download | slackbuilds-418980f897c9523871d212b56e27d8f837261a11.tar.gz |
graphics/potrace: Patched for newer versions of ghostscript.
This fixes failures during the `make check` step.
No need to recompile if you already have a working package.
Signed-off-by: Kyle Guinn <elyk03@gmail.com>
Diffstat (limited to 'graphics/potrace/patches')
-rw-r--r-- | graphics/potrace/patches/make-check-tolerance.diff | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/graphics/potrace/patches/make-check-tolerance.diff b/graphics/potrace/patches/make-check-tolerance.diff new file mode 100644 index 0000000000..54dff3781a --- /dev/null +++ b/graphics/potrace/patches/make-check-tolerance.diff @@ -0,0 +1,34 @@ +diff --git a/check/pdf-check.sh b/check/pdf-check.sh +--- a/check/pdf-check.sh ++++ b/check/pdf-check.sh +@@ -72,11 +72,11 @@ + echo "GS does not understand PDF; skipping this test" >& 2 + exit 77 + fi +-actiondiff "$TMP2" "$REFDATA" 1000 ++actiondiff "$TMP2" "$REFDATA" 1200 + + action $POTRACE -r50 -p -L 0 -B 0 --opaque -b pdf -o "$TMP1" "$DATA" + action "$GS" -q -dNOPAUSE -sDEVICE=pbmraw -g460x394 -r100x100 -sOutputFile="$TMP2" -- "$TMP1" +-actiondiff "$TMP2" "$REFDATA" 1200 ++actiondiff "$TMP2" "$REFDATA" 1600 + + action $POTRACE -r50 -p -L 0 -B 0 -A 160 -b pdf -o "$TMP1" "$DATA" + action "$GS" -q -dNOPAUSE -sDEVICE=pbmraw -g568x528 -r100x100 -sOutputFile="$TMP2" -- "$TMP1" +diff --git a/check/postscript-check.sh b/check/postscript-check.sh +--- a/check/postscript-check.sh ++++ b/check/postscript-check.sh +@@ -70,11 +70,11 @@ + echo "Something is wrong with $GS; skipping this test" >& 2 + exit 77 + fi +-actiondiff "$TMP2" "$REFDATA" 1000 ++actiondiff "$TMP2" "$REFDATA" 1200 + + action $POTRACE -r50 -p -L 0 -B 0 --opaque -o "$TMP1" "$DATA" + action "$GS" -q -dNOPAUSE -sDEVICE=pbmraw -g460x394 -r100x100 -sOutputFile="$TMP2" -- "$TMP1" +-actiondiff "$TMP2" "$REFDATA" 1200 ++actiondiff "$TMP2" "$REFDATA" 1600 + + action $POTRACE -r50 -p -L 0 -B 0 -A 160 -o "$TMP1" "$DATA" + action "$GS" -q -dNOPAUSE -sDEVICE=pbmraw -g568x528 -r100x100 -sOutputFile="$TMP2" -- "$TMP1" |