Release 1.12.8 (2012-11-24 Chris Wilson <chris@chris-wilson.co.uk>) =================================================================== Another couple of weeks and a few more bugs have been found and fixed, it is time to push the next point release. Many thanks to everyone who reported their issues and helped us track down the bugs and helped testing the fixes. Bug fixes --------- Expand the sanity checking for broken combinations of XSendEvent and ShmCompletionEvent. Notice that "The X.Org Foundation" sometimes also identifies itself as "The Xorg Foundation". Handle various ages of libXext and its Shm headers. Fix the invalid clipping of the source drawable when using SHM transport to upload images. https://bugs.freedesktop.org/show_bug.cgi?id=56547 Handle all Type1 postscript operators for better font compatibility. https://bugs.freedesktop.org/show_bug.cgi?id=56265 Fix a couple of memory leaks in Type1 font subsetting https://bugs.freedesktop.org/show_bug.cgi?id=56566 Tighten the evaluation of the start/stop pen vertices, and catch a few instances where we would use a fan instead of a bevel. https://bugs.freedesktop.org/show_bug.cgi?id=56432 Fix assumption that geometric clipping always succeeds with the span-compositor. https://bugs.freedesktop.org/show_bug.cgi?id=56574 Fix call to spline intersection when evaluating whether a stoke is visible. Remember to copy inferior sources when using SHM to readback the surface for use as a source.
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.120 2012/11/04 23:44:27 wiz Exp $
|
|
|
|
DISTNAME= cairo-1.12.8
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://cairographics.org/releases/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://cairographics.org/
|
|
COMMENT= Vector graphics library with cross-device output support
|
|
LICENSE= gnu-lgpl-v2.1 AND mpl-1.1
|
|
|
|
USE_LANGUAGES= c99
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-gl
|
|
CONFIGURE_ARGS+= --enable-pdf
|
|
CONFIGURE_ARGS+= --enable-ps
|
|
CONFIGURE_ARGS+= --enable-tee
|
|
|
|
PKGCONFIG_OVERRIDE+= src/cairo.pc.in
|
|
PKGCONFIG_OVERRIDE+= src/cairo-features.pc.in
|
|
|
|
.include "options.mk"
|
|
|
|
.if exists(/System/Library/Frameworks/Carbon.framework)
|
|
CONFIGURE_ARGS+= --enable-quartz
|
|
CONFIGURE_ARGS+= --enable-quartz-font
|
|
CONFIGURE_ARGS+= --enable-quartz-image
|
|
PLIST.carbon= yes
|
|
.endif
|
|
|
|
# For snprintf() and ctime_r()
|
|
CPPFLAGS.SunOS+= -D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS
|
|
|
|
TEST_TARGET= check
|
|
|
|
# PR#43928
|
|
.include "../../mk/compiler.mk"
|
|
.if ${MACHINE_PLATFORM:MDragonFly-*-x86_64} && ${CC_VERSION:Mgcc-4.1.*}
|
|
CONFIGURE_ENV+= ac_cv_type___uint128_t=no
|
|
.endif
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../fonts/fontconfig/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.freetype2+= freetype2>=2.1.9
|
|
.include "../../graphics/freetype2/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
# include?
|
|
#.include "../../print/libspectre/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.pixman+= pixman>=0.22.0
|
|
.include "../../x11/pixman/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|