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/potrace.SlackBuild | |
parent | 517ad462a7c9466f1a5ca11da9cea35ee102ec0f (diff) |
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/potrace.SlackBuild')
-rw-r--r-- | graphics/potrace/potrace.SlackBuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/graphics/potrace/potrace.SlackBuild b/graphics/potrace/potrace.SlackBuild index d4aadb4bb36e9..20dc9cd6a3738 100644 --- a/graphics/potrace/potrace.SlackBuild +++ b/graphics/potrace/potrace.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for potrace -# Copyright 2013-2017 Kyle Guinn <elyk03@gmail.com>, USA +# Copyright 2013-2019 Kyle Guinn <elyk03@gmail.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -70,6 +70,11 @@ cd $PRGNAM-$VERSION chown -R root:root . chmod -R u+w,go-w,a+rX-st . +# https://sourceforge.net/p/potrace/discussion/300717/thread/80794047/ +# plus another tolerance change. If you still have problems with the +# `make check` line below, feel free to comment it out. +patch -p1 < $CWD/patches/make-check-tolerance.diff + # For metric units and papersizes, use the following flags to configure: # --enable-metric Use metric units (centimeters) as default # --enable-a4 Use A4 as the default papersize |