summaryrefslogtreecommitdiff
path: root/graphics/gd/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz1-2/+2
2011-01-06add a patch from upstream to fix a bug which made that fontconfigdrochner1-2/+2
support could not be switched off once enabled (could make a difference for gnuplot but I couldn't find a testcase yet)
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-06-23Make sure configure doesn't find an old (possibly non-Pkgsrc) libpng12-configdsainty1-2/+7
executable. If it does, it will override the Pkgsrc version, but fail to configure, and fail to build in PNG support. Bump PKGREVISION - previous revision may install for some without PNG APIs intact.
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz1-2/+2
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-2/+2
2009-10-22Fix gd library security problem refering PHP's SVN repositry.taca1-2/+2
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3546 Bump PKGREVISION. (This fix is for php5 only and I don't know about php4.)
2009-08-26bump revision because of graphics/jpeg updatesno1-2/+2
2009-05-18PKG_DESTDIR_SUPPORT needs to be before .include "options.mk"abs1-3/+3
2009-04-12PkgSrc changes:sno1-1/+3
- allow optionally build a gd which supports xpm
2008-11-16Bump PKGREVISION for previous (adding fontconfig) because it changes thedholland1-1/+2
package deps. (I think also for pkgsrc xorg it causes it to start finding and using fontconfig when it previously didn't.)
2008-11-14explicitly link in with fontconfig since it will grab it anyway, seechuck1-1/+2
http://mail-index.netbsd.org/tech-pkg/2008/11/13/msg002046.html
2007-09-21Add DESTDIR support.joerg1-1/+3
2007-07-01Changes 2.0.35:adam1-2/+2
* Fix valgrind error in gdImageFillTiled * Add missing custom cmake macros * Avoid signature buffer copy in gd_gif_c * Race condition in gdImageStringFTEx * Reading GIF images is not thread safe (static usage in private functions) * GIF Local palette is read twice * GIF, Use local frame dimension when possible instead of the logical screen size * OpenVMS build support, see VMS/README.VMS for the details * GIF, do not try to use the global colmap if it does not exist * gdImageAALine draws axis lines with two pixels width * TTF usage doesn't work properly on Netware * gdImageArc CPU usage with large angles * gdImageFilledRectangle regression fixed when used with reversed edges * Possible infinite loop in libgd/gd_png.c, flaw found by Xavier Roche * Fixed segfault when an invalid color index is present in a GIF image data * Possible integer overflow in gdImageCreateTrueColor * gdImageCreateXbm can crash if gdImageCreate fails
2007-05-16# fails in test not finding libgd.agdt1-1/+4
MAKE_JOBS_SAFE= no
2007-02-16Changes 2.0.34:adam1-6/+6
* 32-bit multiplication overflow vulnerabilities along with a number of similar issues * Memory allocation errors that were not checked * Multiple issues in the GIF loader. Corrupt gif images would cause a segfault or infinite loop * Malformed or empty PNG image also may have caused segfaults * gdImageFillToBorder segfaulted when the color was not opaque (alpha > 0) * Antialiased lines drawn on an images edge caused a segfault * gdImageFill segfaulted when used with patterns or invalid arguments * gdImageFilledEllipse did not respect transparency
2007-02-07Update HOMEPAGE.wiz1-2/+2
2006-06-14Security fix for CVE-2006-2906:salo1-2/+2
"The LZW decoding in the gdImageCreateFromGifPtr function in the Thomas Boutell graphics draw (GD) library (aka libgd) 2.0.33 allows remote attackers to cause a denial of service (CPU consumption) via malformed GIF data that causes an infinite loop." Patch from Xavier Roche via Ubuntu.
2006-05-14This package installs a perl script. Add a dependency on perl using USE_TOOLS.minskim1-2/+3
Bump PKGREVISION.
2006-05-14Fix a pkglint warning.minskim1-2/+2
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2005-06-06Do not define a variable in a header file; move the definition into .cminskim1-1/+2
and leave the declraration only. This fixes the graphviz build problem reported by Adrian Portelli in PR pkg/28596. Bump PKGREVISION.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2004-11-29Remove BUILDLINK_DEPENDS line for old version of freetype2.wiz1-3/+1
2004-11-29Added PTHREAD_AUTO_VARS=yes so this builds properly on 2.0. (thanks,jklos1-1/+2
Juan RP)
2004-11-12Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're addedjlam1-2/+1
automatically by pthread.buildlink3.mk. Also, factor out the pthread library out of PTHREAD_LDFLAGS into a standalone variable PTHREAD_LIBS and use it in packages where necessary (usually the ones that don't have a GNU configure script).
2004-11-10Changes 2.0.33:adam1-2/+2
* Corrects a problem which prevented compiling with older versions of freetype2
2004-11-03Changes 2.0.32:adam1-3/+2
* Animated GIF writing support * Fontconfig support * Open polygon drawing * Fixes
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-07-22Changes 2.0.28:adam1-2/+2
* Restored support for reading and writing GIF images * Fix for a possible problem in gdImageTrueColorToPalette
2004-07-16Changes 2.0.27:adam1-2/+2
Fixes * Potential memory overruns in gdImageFilled Polygon * The sign of Y-axis values returned in the bounding box by gdImageStringFT
2004-07-01Changes 2.0.26:adam1-3/+2
* Windows build uses __stdcall calling convention * Even more complete freetype version checking * Binary transparency is now handled correctly in gdImageToPalette
2004-06-20As discussed in tech-pkg, remove X11/Xpm support in graphics/gd.xtraeme1-4/+3
While I'm here, s/-lpthread/${PTHREAD_LDFLAGS}/. Bump PKGREVISION.
2004-05-25Changes 2.0.25:adam1-3/+2
* Correction in gdfontl.h Changes 2.0.24: * bgd.dll is now compatible with Visual BASIC * Even more complete freetype version checking * Binary transparency is now handled correctly in gdImageToPalette
2004-04-26Changes 2.0.23:adam1-2/+2
* horizontal and vertical DPI hints can now be given to the freetype font renderer via the gdFTStringExtra * several autoconf problems have been addressed * the current version of freetype is more precisely detected to prevent FT_ENCODING_SYMBOL-related errors * a significant bug in gdNewDynamicCtx was fixed
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-04Type fixed, thanks to Stonedadam1-2/+2
2004-02-04Changes 2.0.22:adam1-2/+2
* New font-fetching functions * CMYK colour-space in JPEGs can now be opened * Fixed configure script
2004-01-20Changes 2.0.21:adam1-3/+5
* added gdImageCreateFromPngPtr and similar
2004-01-09Changes 2.0.20:adam1-2/+2
fixed binary API incompatibility introduced in 2.0.16
2004-01-08Changes 2.0.19:adam1-2/+2
correcting problem with the built-in gd fonts on Unix Changes 2.0.18: introduced a conveniently precompiled DLL for Windows programmers the default separator of alternative truetype font paths is now a semicolon rather than a space
2004-01-07s/buildlink2/buildlink3/ I must be going blind!jlam1-2/+2
2004-01-06bl3ifyjlam1-7/+9
2004-01-05Little bug in the Makefile, mea culpaadam1-2/+2
2004-01-05Changes 2.0.17:adam1-3/+5
minor compilation and packaging problem fixed Changes 2.0.16: Adds polar coordinate transformation, text on a circle, thread safety truetype font output, performance optimizations, correct compilation with the latest versions of freetype, and many fixes
2003-11-06Set LIBTOOL_OVERRIDE.gavan1-1/+2
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-23Update gd to 2.0.15adam1-22/+5
What's new: * Support for truecolor images * Support for alpha channels * The specialized .gd and .gd2 file formats * Documentation fixes * Bug fixes