summaryrefslogtreecommitdiff
path: root/graphics/cairo
AgeCommit message (Collapse)AuthorFilesLines
2004-07-03Add a patch from the mono project:recht3-2/+27
pixman_image_set_clip_region expects to take ownership of the passed-in region, so we create a copy to give it. bump PKGREVISION to 1
2004-06-26Raise the dependency to 0.1.1 libpixman's buildlink3.mk. This avoidsrecht1-2/+1
the BUILDLINK_DEPENDS >= 0.1.1 in cairo's Makefile which is the only consumer anyway. Or, in other words: simplify
2004-05-12This needs libpixman >= 0.1.1.jmmv1-1/+2
2004-05-11update to cairo-0.1.23recht3-7/+7
Fixes for gcc 3.4 ----------------- Fix prototype mismatches so that cairo can be built by gcc 3.4. Updates to track glitz ---------------------- Various fixes to support the latest glitz snapshot (0.1.2). Gradient updates ---------------- Radial gradients now support both inner and outer circles. Transformed linear gradients are now properly handled. Fixes for extend type reflect. Glitz updates ------------- Converted shading routines to use fixed point values and introduced a shading operator structure for more efficient shading calculations. Support compositing with mask surface when mask is solid or multi-texturing is available. PNG backend cleanups -------------------- Fix output to properly compensate for pre-multiplied alpha format in cairo. Add support for A8 and A1 image formats. Bug fixes --------- Avoid crash or infinite loop on null strings and degeneratively short splines. New? bugs in cairo_clip ----------------------- There are some fairly serious bugs in cairo_clip. It is sometimes causing an incorrect result. And even when it does work, it is sometimes so slow as to be unusable. Some of these bugs may not be new, (indeed cairo_clip has only ever had a braindead-slow implementation), but I think they're worth mentioning here.
2004-04-27buildlink3 fixadam1-1/+3
2004-04-27Changes 0.1.22:adam2-10/+11
* Cairo was updated to track the changes in libpixman, and now depends on libpixman version 0.1.1 Changes 0.1.21: * New OpenGL backend * Automatic detection of available backends Changes 0.1.20: * New pattern API * Update to XCB backend * Faster clipping
2004-04-04update to 0.1.18recht3-8/+7
Includes new functions: - cairo_current_path, cairo_current_path_flat, cairo_surface_get_filter. Support for XCB backend. Fixes for building in cygwin. Adds cairo_surface_get_filter.
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-3/+5
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-29Add explicit dependencies on the pkgsrc versions of Xft2/Xrender to avoidrecht3-36/+18
problems. Also remove superfluous buildlink2.mk and bump PKGREVISION to 1.
2004-02-23Add explicit dependency on pkgconfig.recht1-1/+2
2004-02-14PKGCONFIG_OVERRIDE is relative to WRKSRC.jmmv1-2/+2
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-09BUILDLINK_DEPENDS.<pkg> lines should _always_ use += to _append_ to thejlam1-14/+8
existing value. This is critical to set the correct list of dependencies for a package.
2004-02-03initial import of cairo-0.1.17recht6-0/+103
Cairo is a vector graphics library with cross-device output support. Currently supported output targets include the X Window System and in-memory image buffers. PostScript and PDF file output is planned. Cairo is designed to produce identical output on all output media while taking advantage of display hardware acceleration when available (eg. through the X Render Extension). Cairo provides a stateful user-level API with capabilities similar to the PDF 1.4 imaging model. Cairo provides operations including stroking and filling Bezier cubic splines, transforming and compositing translucent images, and antialiased text rendering.