* 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
29 lines
755 B
Makefile
29 lines
755 B
Makefile
# $NetBSD: Makefile,v 1.74 2007/07/01 07:54:25 adam Exp $
|
|
|
|
DISTNAME= gd-2.0.35
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.libgd.org/releases/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= http://www.libgd.org/
|
|
COMMENT= Graphics library for the dynamic creation of images
|
|
|
|
# fails in test not finding libgd.a
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= perl:run
|
|
GNU_CONFIGURE= yes
|
|
REPLACE_PERL+= bdftogd
|
|
PTHREAD_AUTO_VARS= yes
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../graphics/freetype2/buildlink3.mk"
|
|
.include "../../graphics/jpeg/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|