summaryrefslogtreecommitdiff
path: root/print/ghostscript
AgeCommit message (Collapse)AuthorFilesLines
2009-02-18add a comment that the DOS-linefeed issue is fixed upstream,drochner1-1/+2
as suggested by Joern Clausen
2009-02-17clean out DOS linebreaks in one file, to fix a build problem withdrochner1-1/+6
Sun Studio Compiler reported by Joern Clausen per PR pkg/40666
2009-02-16replace BSD/Linux specific "qd" printf format specifier by "lld",drochner2-4/+4
should fix build problem on Solaris reported by Joern Clausen per PR pkg/40664
2009-02-16fix Darwin build, from Ian McWilliam on pkgsrc-usersdrochner1-4/+4
2009-02-13fix a build problem with native xorg reported by Matthias Scheler,drochner4-2/+32
being here, quell a printf format compiler warning
2009-02-12update to 8.64drochner7-109/+119
Approximately 100 bugs have been fixed since the 8.63 release. Of particular note in this release are improvements to overprint and spot color support in documents with transparency, improvements to PDF and PS output, proper handling of PDF-specific text rendering modes and support for reading AES-encrypted PDF documents. Also improved is handling of CJK text, especially in vertical writing modes, memory footprint processing some files at high resolution and support for using the system's default paper size on unix. The interpreter's handling of color spaces has been moved from PostScript code to C. A number of the included printer drivers and cups wrappers have been updated to support a PDF-based workflow. Also fixed are several long-standing bugs in the pcl drivers with respect to duplex, resolution and paper tray selection.
2008-12-11Also add -fPIC to CFLAGS for Solaris. PR 39775.wiz1-1/+2
2008-12-01Added -fPIC for Linux, since it was reported to be necessary on x86_64rillig1-4/+6
platforms via pkgsrc-users.
2008-11-13ghostscript has hand-rolled shared lib handling in src/unix-dll.makchuck4-8/+41
that does not do the right thing on Darwin (where shared libs are created with different linking flags and use dylib rather than so as an extension). you need to manually reconfigure unix-dll.mak to make it work, so do it in hacks.mk. XXX: this still leaves the issue of libgs.so (et al.) being hardwired in PLIST, instead of using libgs.dylib (et al.). i'm not sure of the best way to fix that. at least it compiles now....
2008-09-05Compile with "-fPIC" under NetBSD to fix amd64 build problems.tron1-1/+5
2008-09-03Build libgs as a shared library as increasingly other packages expect itmarkd6-4/+80
to be there and want to link with it. Bump PKGREVISION.
2008-08-07update to 8.63drochner3-9/+7
changes: -bugfixes -multithreaded rendering -Images are now always interpolated in their source colorspace -Support for OpenPrinting Vector devices has been upgraded to version 1.0 -two new devices: cairo, svgwrite -maximum number of color components has been reduced to 8 (from 252) -The -Z: debugging option now uses 'realtime' instead of 'usertime'
2008-05-25unlimit the data segment (gsromfs1.c needs > 128MB on gcc/alpha)tnn1-1/+2
2008-05-17Fix build on IRIX by ensuring -lfontconfig links with -liconv.tnn1-1/+7
2008-04-12Convert to use PLIST_VARS instead of manually passing "@comment "jlam2-9/+9
through PLIST_SUBST to the plist module.
2008-03-10Try removing share/ghostscript directory during uninstall.wiz2-4/+4
Bump PKGREVISION.
2008-03-05fix a botched pointer comparision which fails if the pointer differencedrochner3-2/+17
overflows the signed integer range, this fixes font problems in PDF creation for me, bump PKGREVISION
2008-03-05update to 8.62, fixes a buffer overflow (CVE-2008-0411)drochner3-8/+44
(it appearently doesn't fix the font embedding problems in PDF generation reported recently)
2008-01-29Conditionally add cups files to PLIST. From Matthias Drochner.gdt2-3/+8
Partially addresses PR pkg/37888.
2008-01-24Update the way the cups makefile is modified to place the prototypegdt2-4/+4
psraster.convs in share/examples/cups (to avoid writing PKG_SYSCONFDIR outside of CONF_FILES).
2008-01-10-make fontconfig an option, on per default (as is x11)drochner2-6/+11
-add pkg-config to TOOLS (used to locate fontconfig)
2008-01-10Add dependence on "fontconfig" package. "ghostscript" actively checkstron1-1/+3
whether "fontconfig" is installed and fails to build afterwards (at least under NetBSD-i386 4.0). Bump package revision because of this change.
2008-01-10Remove stale patch file.tron1-15/+0
2008-01-09update to 8.61drochner4-88/+76
changes: a number of bug fixes and improvements Note: The default device in the gcc build is now the 'x11alpha' device which provides antialiasing for display. To recover the old default behaviour add '-sDEVICE=x11' to the command line.
2007-11-17Some packages need lex and yacc. Patch by Aleksey Cheusov viarillig1-2/+2
pkgsrc-users.
2007-11-03Added MAKE_JOBS_SAFE as suggested in PR 37250.rillig1-1/+2
2007-10-23Fix >80 column line, and stray word. Pointed out by dsainty@gdt1-2/+2
2007-10-22Point out that ghostscript-esp is old and that ghostscript has cupsgdt1-2/+5
support if built with the cups option.
2007-10-22Quell a pkglint -Wall warning, use CONF_FILES+= instead of =dsainty1-2/+2
2007-10-22Pull over the "cups" option, based largely on the implementation of the "cups"dsainty3-7/+30
option in ghostscript-esp, although there it was on by default. Here it is off by default, which is more in keeping with how the "cups" option is generally used - it is usually off by default, and a CUPS user would usually add "cups" to the global options.
2007-10-11This version of Ghostscript has some form of support for CUPS, but itdsainty1-1/+3
doesn't currently pull in CUPS itself. Generally that means the package builds without CUPS support. However, if you are using Pkgsrc on a system with CUPS installed via some other means (E.g. Linux with another packaging system, or even a second Pkgsrc root probably) then things can go wrong. I solve this case here by explicitly disabling CUPS support. For normal cases this should mean "No change", but in exotic cases it fixes the build and install. Of course, there may be value in using the CUPS support, but it isn't clear whether the right way to do that is to add a "cups" package option or to have a second ghostscript-cups package that CUPS depends on - it kind of looks like the latter is closer to correct at first glance.
2007-08-09Don't attempt to use fdopen64 at all. It's not a standardised API and nonetnn2-4/+4
of the platforms we care about seem to have it. Fixes PR pkg/36757.
2007-08-08*blink* check-files didn't run for some reason, so update the PLISTjoerg2-3/+32
and bump revision.
2007-08-08Update to ghostscript-8.60:joerg4-20/+35
The major milestone of this release is a merge from the ESP Ghostscript fork, used to support the CUPS printing system. This means that free operating systems can now ship a single copy of upstream Ghostscript with their releases. Thanks to Till Kamppeter and Mike Sweet for making this possible. This release also includes numerous important bug fixes over the previous stable versions, as well as improvements to performance, memory footprint, shading and image handling. We recommend this upgrade to all free users. While here, add DESTDIR support.
2007-08-03Don't use fdopen64 on AIX.joerg2-4/+4
2007-07-18correct whitespacetnn1-2/+2
2007-07-18Fix broken build on HPUXtnn3-2/+20
2007-07-17Fix path to Perl in a script. Ride on update.joerg1-2/+4
2007-07-17update to 8.57drochner4-35/+28
In addition to the usual bug fixes, there are specific performance and quality improvements in the areas of patterns, shading and image filtering. Also new in this release is an implementation of the Well Tempered Screening algorithm in an output device, using Graeme Gill's IMDI library for efficient color mapping. pkgsrc change: use the bundled jasper as the pkgsrc one is incompatible
2007-07-01Re-add support for the PAPERSIZE variable, lost when the variousmarkd1-2/+8
ghostscript packages were merged. Bump PKGREVISION.
2007-06-29avoid segfaults on 64-bit systems for some inputs files and pdf outputdmcmahill3-3/+21
2007-01-17Very belatedly bump PKGREVISION for all jasper dependencies becausewiz1-2/+2
of the shlib name change (!) during the update to 1.900.0. Noted by Robert Elz in PR 35431.
2007-01-09Define uint64_t to u_int64_t on Interix.tv1-0/+11
There actually is an autoconf test in ghostscript for a 64-bit int, used for GX_COLOR_INDEX_TYPE, but the fallback for that is "ulong", not necessarily 64 bits. So to make gdevpdfe.c happy for now, force the issue.
2006-12-28Depend on the ghostscript fonts by default. Bump revision.joerg1-1/+4
2006-12-27Update to gpl ghostscript-8.54 aka print/ghostscript-afpl relaunchedjoerg38-2340/+620
under GPL with options.mk. This was discussed on tech-pkg@.
2006-10-25Fixed PKGMANDIR.rillig1-1/+2
2006-09-09Rename variable MAKEFILE to MAKE_FILE.obache1-2/+2
2006-06-14Fixed pkglint warnings.rillig1-17/+17
2006-04-23ghostscript also needs C++ to buildschwarz1-1/+6
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2