diff options
author | markd <markd@pkgsrc.org> | 2022-08-22 08:23:19 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2022-08-22 08:23:19 +0000 |
commit | 8be83ddc404b787c79be60e8e66e19fcf66b444c (patch) | |
tree | 0c4301f8e68ea663043b54fde47a0f2b20e2b6ed /graphics | |
parent | 513142aba966b032c09b7b33339d09a387cfe51d (diff) | |
download | pkgsrc-8be83ddc404b787c79be60e8e66e19fcf66b444c.tar.gz |
pstoedit: update to 3.78
New or changed in 3.78:
* Bug fix. pstoedit did not find older versions of GhostScript under Windows.
* Support for mawk in creation of pstoedit.ph header file. mawk is often used on
build servers in place of gawk.
New or changed in 3.77:
* Some small update to comply with some Debian requirements.
New or changed in 3.76:
* Added experimental support for filled objects in DXF output using the HATCH
element of DXF.
* Fixed a problem when running pstoedit with output to standard output instead of
a file.
* Adapted to new versioning scheme of GhostScript.
* Additional backend for pcb-rnd contributed by Erich Heinzle.
* Some additional options in WEMF driver.
* Better handling of bounding box in EMF output. Contributed by Samuel Thibault.
* Better handling of metric option in fig driver.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/pstoedit/Makefile | 5 | ||||
-rw-r--r-- | graphics/pstoedit/distinfo | 9 | ||||
-rw-r--r-- | graphics/pstoedit/patches/patch-src_drvpptx.cpp | 14 |
3 files changed, 21 insertions, 7 deletions
diff --git a/graphics/pstoedit/Makefile b/graphics/pstoedit/Makefile index 7880d532f35..614c54952bc 100644 --- a/graphics/pstoedit/Makefile +++ b/graphics/pstoedit/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.114 2022/04/18 19:11:22 adam Exp $ +# $NetBSD: Makefile,v 1.115 2022/08/22 08:23:19 markd Exp $ -DISTNAME= pstoedit-3.75 -PKGREVISION= 5 +DISTNAME= pstoedit-3.78 CATEGORIES= converters graphics print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pstoedit/} diff --git a/graphics/pstoedit/distinfo b/graphics/pstoedit/distinfo index 5e15c70691b..aeb3de2fe26 100644 --- a/graphics/pstoedit/distinfo +++ b/graphics/pstoedit/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.21 2021/10/26 10:46:42 nia Exp $ +$NetBSD: distinfo,v 1.22 2022/08/22 08:23:19 markd Exp $ -BLAKE2s (pstoedit-3.75.tar.gz) = 30ac53ae9422e7861f59a6eac2de35f8485a4d0cc3eb6982550074617dd346f9 -SHA512 (pstoedit-3.75.tar.gz) = 54b8cf7e78e52027d45e7550821476d9a9c4df4f63af83792b6a2909bc62236450ba6b619f95eede9f61a715f4937f1fbaf2ce4ae4b486daa0294c396a882a28 -Size (pstoedit-3.75.tar.gz) = 1290057 bytes +BLAKE2s (pstoedit-3.78.tar.gz) = 9426c8bf06d52040e30f7ba945c71079429c4ae23a0924c2c610fe9dbdd9ecfc +SHA512 (pstoedit-3.78.tar.gz) = ed880da1ba16780224b4bb40d520f99bc5290b4335dd30f1a195855ce75b3880d5a4fca9885b214855ce61d8bd701aa0681a190e69a8fdef2f3d5e1e2f692648 +Size (pstoedit-3.78.tar.gz) = 1301408 bytes SHA1 (patch-src_Makefile.in) = 0f36cd43cbe154d9cf47db6918e9ecc238aa444f +SHA1 (patch-src_drvpptx.cpp) = 45792a75098d82bda4648c3d50642347c2487e0d diff --git a/graphics/pstoedit/patches/patch-src_drvpptx.cpp b/graphics/pstoedit/patches/patch-src_drvpptx.cpp new file mode 100644 index 00000000000..71a273fa3dc --- /dev/null +++ b/graphics/pstoedit/patches/patch-src_drvpptx.cpp @@ -0,0 +1,14 @@ +$NetBSD: patch-src_drvpptx.cpp,v 1.1 2022/08/22 08:23:19 markd Exp $ + +'std::unique_ptr' is defined in header '<memory>' + +--- src/drvpptx.cpp.orig 2021-08-29 14:25:45.000000000 +0000 ++++ src/drvpptx.cpp +@@ -39,6 +39,7 @@ + + #include <errno.h> + #include <algorithm> ++#include <memory> + + #ifdef _MSC_VER + // MS VC++ Windows |