diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2009-03-10 03:29:37 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2009-03-10 03:29:37 +0000 |
commit | 7d0695b8ef05820b395d64de4f26fe2fc7b319cd (patch) | |
tree | fedde8e09ef8366d2c4089bd6be04939acebdba9 /graphics/pstoedit/Makefile | |
parent | 19674a3c493947316ef1cf22cb3c8459cfc25a77 (diff) | |
download | pkgsrc-7d0695b8ef05820b395d64de4f26fe2fc7b319cd.tar.gz |
update to pstoedit-3.45
New or changed in 3.45:
* Some minor corrections of warnings issued by Coverity Prevent
(security related checks).
* fixed a bug in the fig backend related to dotted lines.
* added better support for pagesize handling in the driver framework.
* better handling of fonts using 0 encoded characters (thanks to
Vladimir Eltsov)
* fixed a problem which caused newer versions of GhostScript to go
into an endless loop.
New or changed in 3.44:
* hotfix for the Aysmptote driver to make it compatible with
Aysmptote version 1.00.
* removed some diagnostic messages concerning temporary file
handling.
* removed the pstoedit-config.* since this is replaced by the
pkg-config file pstoedit.pc.
New or changed in 3.43:
* some usability improvements as proposed in Debian Bug
Report #347732
[1]http://groups.google.com/group/linux.debian.bugs.dist/msg/c38e1f
79d75b3152?dmode=source&hl=de
* cleaned some minor problems found by the Klocwork checker
([2]www.klocwork.com )
* replaced tempnam with mkstemp where available.
* replaced several string related functions with the secure versions
where available (Windows - VC++2005)
* switched back again to calling GhostScript as .exe instead of via
the DLL in case pstoedit is called via gsview. Reason - there can
be only one instance of GhostScript per process and gsview needs a
second instance.
* a new driver for the OpenOffice metafile format (drvsvm)
contributed by Thorsten Behrens.
* source code cleanup considering messages issued by Gimpel's
FlexeLint/PC-Lint ([3]www.gimpel.com ).
* added a "-glyphs" option. Given this option, the PostScript
frontend passes also (if possible) the glyph names to the backend.
However, so far no backend really uses the glyph names. This is
only a preparation for future work.
* changed the way how Image/Graphicmagick is handled by configure.
Now configure tries to use pkg-config as proposed by the maintainer
of the Debian version of pstoedit (Ray Dassen).
* included a further patch for the Aysmptote driver.
Diffstat (limited to 'graphics/pstoedit/Makefile')
-rw-r--r-- | graphics/pstoedit/Makefile | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/graphics/pstoedit/Makefile b/graphics/pstoedit/Makefile index fb69e5bea55..ee7202b62e1 100644 --- a/graphics/pstoedit/Makefile +++ b/graphics/pstoedit/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.38 2008/09/10 13:59:43 gdt Exp $ +# $NetBSD: Makefile,v 1.39 2009/03/10 03:29:37 dmcmahill Exp $ -DISTNAME= pstoedit-3.41 -PKGREVISION= 2 +DISTNAME= pstoedit-3.45 CATEGORIES= converters graphics print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pstoedit/} @@ -21,14 +20,18 @@ NO_BIN_ON_FTP= ${RESTRICTED} NO_SRC_ON_CDROM= ${RESTRICTED} NO_BIN_ON_CDROM= ${RESTRICTED} -# XXX Avoid hard dependency on Ghostscript -#USE_TOOLS+= gs:run +USE_TOOLS+= gs:run USE_LIBTOOL= yes USE_LANGUAGES= c c++ GNU_CONFIGURE= yes CONFIGURE_ENV+= CXXFLAGS="${CFLAGS} -Dunix" CONFIGURE_ENV+= ac_cv_path_GS=${LOCALBASE}/bin/gs + +# needs libEMF which has build problems on alpha and probably +# other 64-bit systems +CONFIGURE_ARGS+=--without-emf + CONFIGURE_ARGS+=--datadir=${PREFIX}/share CONFIGURE_ARGS+=--libdir=${PREFIX}/lib/pstoedit # plugin dir -- unused for now BUILD_TARGET= @@ -47,5 +50,9 @@ post-install: done ${INSTALL_DATA} ${DOCSRC}/readme.txt ${DESTDIR}${DOCDIR} +.include "../../graphics/gd/buildlink3.mk" +.include "../../graphics/ImageMagick/buildlink3.mk" .include "../../graphics/plotutils/buildlink3.mk" +.include "../../graphics/png/buildlink3.mk" +.include "../..//multimedia/ming/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |