pkgsrc/graphics
wiz 205fb4159b Update cairo to 1.14.0:
Release 1.14.0 (2014-10-13 Bryce Harrington <bryce@osg.samsung.com>)
====================================================================
Hard to believe it's been over a year since our last release, but it's
not for lack of activity.  This release includes contributions of a wide
assortment of bug fixes, build system improvements, warnings cleanups,
codebase refactoring, test suite repairs, and static analysis work.

This release is lighter on features (compared with 1.12.10) but includes
a highly demanded rehaul of our image downscaling functionality, which
solves a serious problem experienced by Inkscape users when shrinking
embedded bitmaps in SVG files.  The new scaling algorithms are used by
the image backend and by other backends as needed for fallbacks.


Features
--------

  Filtering improvements for the image backend, in particular
  down-scaling of images produces filtered images that depend on all the
  pixels of the source. When using the image backend you get the
  following settings:

  CAIRO_FILTER_GOOD: uses a box filter for scales less than .75 in
    either direction. For scales larger than this, the same filter as
    CAIRO_FILTER_BILINEAR is used.

  CAIRO_FILTER_BEST: uses a Catmull-Rom filter always. When upscaling
    more than 2x this will produce anti-aliased square pixels, similar
    to OS/X.

  CAIRO_FILTER_GAUSSIAN: uses PIXMAN_FILTER_BEST, which in current
    pixman is the same as BILINEAR. (This is subject to change in the
    future).

  xlib and xcb also use the image fallback for GOOD/BEST filters, but
  note that other backends do not implement these filtering fixes yet,
  however other actions may cause them to use an image fallback which
  will cause these filters to be used.

  Improve handling of device transformation and scaling, allowing Cairo
  to now support scaling at a device level, permitting easier, more
  transparent HiDPI support.

  Support JBIG2 mime data in PDF.  This allows embedding of more
  compressed JPEG formats within PDF, rather than including the full
  uncompressed image.  Also, reduce the number of transparency groups
  used by PDF to keep the file size small and viewing/printing of the
  PDF fast.

  Expand the embedding section to include stencil mask support.

  Reorder font declarations to be in natural order.

  Update the Skia backend to build against current Skia (as of June
  2014).

  Drop Link-Time Optimization (LTO) support from build system.  This
  seems to have caused much trouble for unclear benefit, and most
  distros are reverting or disabling it anyway.

  Optimize VBO size on GL to 1M and to 16k for EGL.  This improves
  (theoretical) performance for desktop GLX use cases while avoiding
  hitting VBO memory size limitations on embedded devices.

API Changes
-----------

  cairo_surface_set_device_scale, cairo_surface_get_device_scale:

    Sets a scale that is multiplied to the device coordinates
    determined by the CTM when drawing to @surface. One common use for
    this is to render to very high resolution display devices at a scale
    factor, so that code that assumes 1 pixel will be a certain size
    will still work.

  cairo_egl_device_get_display, cairo_egl_device_get_context:

    Support get/set of EGLContext and EGLDisplay for egl-based cairo
    devices, similar to GLX.

Dependency Changes
------------------

  Cairo now requires glib 2.14 for its gobject helper functions,
  and pixman 0.30 for downscaling.


Bug fixes
---------

  Don't embed CMYK Jpeg images in svg.

  Fix tests to place output in proper location.

  Fix determination of alpha for all surfaces when recording.

  Extend oversize check to cairo_gl_surface_create_for_texture, so an
  error surface is returned if the texture is too large to render to.

  Fix embedding of mime data in PDF and PS files.

  Remove useless error handling in *_reply() functions in XCB.

  Fix a double-free exposed by multithreaded apps creating and
  destroying the same font concurrently.
  https://bugs.freedesktop.org/show_bug.cgi?id=69470

  Fix corrupt stacks produced by bugs in operand emission for trace.

  Fix out of bounds array access in format cache for xlib

  Don't rename glyphs used by seac operator.  This can cause certain
  combined characters to use their decorations (e.g. umlauts on ö) to be
  lost during printing of PDFs using evince.
  https://bugs.freedesktop.org/show_bug.cgi?id=70364

  Fix crash on calling cairo_create with a finished surface

  Fix SSIZE_T definition problem when making with MSYS on Windows7

  Fix one off issue in gl context cleanup

  Fix usage of CAIRO_STACK_ARRAY_LENGTH

  Fix rectangle stroke with non rectilinear pen

  Fix imagemask with pattern source failure on some printers.  This bug
  could cause files converted using pdftops to fail for example on Ricoh
  printers, or opening in Adobe Distiller on Windows.
  https://bugs.freedesktop.org/show_bug.cgi?id=69485

  Fix whitespace in font names

  Fix page size in generated PDFs.  When printing using pdftocairo on
  larger page sizes, such as 11x17, the image would be cropped to letter
  size.
  https://bugs.freedesktop.org/show_bug.cgi?id=73452

  Fix path-currentpoint test by preserving current-point in
  copy_path()/append_path() sequence

  Fix generation of HTML in code docs for
  cairo-format-stride-for-width.  Raw HTML code was being passed
  to the browser, instead of displaying normally.
  https://bugs.freedesktop.org/show_bug.cgi?id=63257

  Fix spelling of "tessellator" throughout code.  We're using the
  American rather than British spelling of this word.
  https://bugs.freedesktop.org/show_bug.cgi?id=50411

  Fix crash in pixman_image_composite32

  Fix crash when trying to modify a (const) all-clipped cairo_clip_t
  https://bugs.freedesktop.org/show_bug.cgi?id=75819

  Add check_composite method to all compositors, to fix crashes in the
  test suite.

  Fix crash in Firefox when scrolling on certain pages.

  Fix memory leaks found by static analysis.

  Fix build of any2ppm if fork is not available.

  Fix broken build for Qt backend, due to missing libstdc++.

  Fix typo in two cairo_uint128 functions.  Fixes potential build issues
  on systems without a uint128 type.

  Fix build when --enable-pdf=no

  Fix cache_frozen assertions for Win32 print.

  Correctly check for xcb image surface for inplace upload

  Fix webkit-based web browser crashes due to empty boxes by skipping
  over them when tesselating.

  Make pixman, libpng, and zlib paths commandline configurable for win32
  builds.

  Fix image scale on Win32 when GDI scale is not identity.

  Fix float endian configure test when using clang -O4

  Fix compilation with Android bionic libc

  Don't try to build util/sphinx on Windows

  Fix loss of precision when emitting joins.  This was caused by
  discrepancies in line gradients when passing trapezoids around.

  Fix loss of precision and associated rendering issues in
  cairo-tor-scan-converter from projection onto sample grid.

  Fix pixman oversampling of neighbouring edges within a cell by
  eliminating self-intersections for the pixman traps compositor.

  Fix multi-line string splitting in PDFs

  Various cleanups and fixes to warnings, documentation, tests, and
  build system.  Improve error handling and return value checks.
  Cleanup XFAIL tests and reference images.  Cover recently added
  functionality.
2014-10-22 09:55:36 +00:00
..
aalib Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
AfterShotPro Update to 1.1.0.30. Changes not found, but that's the currently available 2013-12-29 13:27:56 +00:00
agg Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
aqsis Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
artist Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
asymptote Needs zlib. 2014-09-24 23:10:51 +00:00
autopano-sift-C missing bump PKGREVISION after libpano13 ABI bump. 2014-07-09 00:39:33 +00:00
autotrace Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
aview Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
babl ftp.gimp.org is no longer. Update/remove links pointing there. 2014-08-19 10:42:55 +00:00
barcode Changes 0.99: 2013-10-06 17:15:35 +00:00
bktr2jpeg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
blender Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
blender-doc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
blinkenthemes Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
blinkentools Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
cairo Update cairo to 1.14.0: 2014-10-22 09:55:36 +00:00
cairo-gobject Update cairo to 1.14.0: 2014-10-22 09:55:36 +00:00
cairomm Fix PLIST for the case when graphics/cairo is built with quartz backend enabled 2014-05-31 11:25:46 +00:00
cal3d Instruct automake to copy missing files. 2013-08-17 11:15:26 +00:00
cal3d-examples Fix automake invocation. 2013-08-31 14:49:40 +00:00
cambevao Remove example rc.d scripts from PLISTs. 2014-03-11 14:04:57 +00:00
camediaplay Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
camlimages Update for lablgtk -> ocaml-lablgtk rename. 2014-10-10 14:04:19 +00:00
cdlabelgen Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
Cenon Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
cheese Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
cinepaint Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
circos Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
claraocr Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
clutter Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
clutter-box2d Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
clutter-gtk Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
clutter-gtk0.10 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
clutter-mx Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
cnxtview Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
cogl prepare missing OpenGL ARB_sync extension. 2014-05-16 01:56:59 +00:00
Coin Revbump after updating graphics/giflib 2014-05-15 14:41:45 +00:00
comix Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
compface Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
cpia2view Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
cqcam Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
CRWInfo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
darktable Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
dcraw Set DIST_SUBDIR 2014-03-15 00:16:03 +00:00
deforaos-camera Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
denemo Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
dia Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
dia-python Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
digikam Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
digikam-doc-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
digikam-kde3 Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
djview4 Stop treating FreeBSD 10 like FreeBSD 1. 2014-04-04 18:25:51 +00:00
djvulibre-lib #undef getc in case it is still a macro from stdio.h. 2012-12-19 12:51:26 +00:00
djvulibre-tools Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
dvipng recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
dx Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
dxsamples Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
edje Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
enblend-enfuse Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
eog Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
eog-plugins Recursive revbump from pulseaudio-5.0 2014-06-09 14:18:04 +00:00
eog-plugins-map Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
eog3 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
epeg Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
evas Fixes build with giflib-5.1. 2014-05-25 08:04:00 +00:00
evas-buffer Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
evas-edb Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
evas-eet Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
evas-gif libungif is not relevant any longer since the GIF relevant patents 2014-05-31 15:56:26 +00:00
evas-jpeg Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
evas-pmaps Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
evas-png Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
evas-software-x11 Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
evas-svg Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
evas-tiff Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
evas-xpm Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
ewipe Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
exif Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
exifprobe Fix build on SunOS. Patches from Sebastian Wiedenroth. 2013-12-10 11:41:42 +00:00
exiftags Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
exiv2 Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings. 2014-10-05 16:41:05 +00:00
exiv2-organize Switch to Makefile.common and fix for -ldl 2014-06-05 07:12:53 +00:00
extrema Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
f-spot Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
f4l recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
fbm Fix return types. 2013-02-26 11:13:22 +00:00
feh Update to feh-2.12 2014-09-27 10:52:38 +00:00
flphoto Fix build on SunOS (needs explicit -lstdc++). 2014-08-21 08:55:01 +00:00
fly Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
fnlib Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
fotoxx Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
frameworks Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
freeglut Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
freetype
freetype-lib Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
freetype-utils Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
freetype2 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
fujiplay Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
g2 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gd Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
gdchart Needs libiconv. 2014-01-09 10:33:19 +00:00
gdk-pixbuf Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
gdk-pixbuf2 update to 2.30.3 2014-01-15 17:12:54 +00:00
gdk-pixbuf2-jasper reset PKGREV for base pkg update 2013-07-24 10:58:42 +00:00
gdk-pixbuf2-xlib reset PKGREV for base pkg update 2013-07-24 10:58:42 +00:00
geeqie Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
gegl Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
geomview Resolves: 2013-04-06 20:27:16 +00:00
get_ds7 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gfract Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
gif2png Update to 2.5.9: 2014-06-09 12:48:52 +00:00
gif320 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
giflib Remove mk/giflib reference. 2014-05-31 23:44:19 +00:00
giflib-util libungif is not relevant any longer since the GIF relevant patents 2014-05-31 15:56:26 +00:00
gifsicle Update to 1.78. From the changelog: 2014-02-16 01:04:39 +00:00
giftrans Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
gimmage Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gimp Changes 2.8.14: 2014-08-30 06:37:41 +00:00
gimp-color-manager Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gimp-docs-de Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-en Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings. 2014-10-05 16:41:05 +00:00
gimp-docs-es Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-fr Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-it Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-ja Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-ko Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-nl Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-nn Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-pl Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-ru Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-sv Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-docs-zh_CN Update to 2.8.1 2014-03-26 16:18:29 +00:00
gimp-exif-browser Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gimp-fix-ca Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gimp-high-pass-filter Import gimp-high-pass-filter-1.2 as graphics/gimp-high-pass-filter. 2013-01-23 21:53:39 +00:00
gimp-liquid-rescale Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gimp-rawphoto Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gimp-refocus-it Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gimp-resynthesizer Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gimp-ufraw Bump PKGREVISION for exiv2 shlib major bump 2014-06-07 12:11:23 +00:00
gimp-warp-sharp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
gimp2-wideangle Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
giram Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gle Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
glew For some reason NetBSD is identified as 'netbsdelf' here. 2014-02-16 22:45:54 +00:00
glitz Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
gliv Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
glm Update to 0.9.5.3 2014-10-13 21:47:59 +00:00
glpng Recursive bump for png-1.6. 2013-02-16 11:17:56 +00:00
glu Fix the builtin version detection by checking the pkgconfig files if 2013-06-17 05:27:50 +00:00
glut update missing entry in glut/PLIST 2013-05-16 14:43:13 +00:00
glx-utils Crude compilation fix for graphics/glx-utils: 2013-08-10 23:02:26 +00:00
gmic Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
gmngview When using EXTRACT_ELEMENTS with wildcards we need to set EXTRACT_USING 2014-09-25 10:51:31 +00:00
GMT Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
gnome-backgrounds Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
gnome-icon-theme Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gnome-icon-theme-extras Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
gnome-icon-theme-symbolic Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gnuplot Revbump after lang/lua51 update. 2014-10-19 22:27:43 +00:00
gocr Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
goocanvas Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
goocanvas2 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
goocanvasmm Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gource Revbump from graphics/glm 2014-10-13 21:54:56 +00:00
gphoto2 * .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes 2013-07-15 02:02:17 +00:00
gpicview Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gqview Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gqview-devel Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
grap Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
GraphicsMagick Changes 1.3.20: 2014-08-18 11:13:45 +00:00
graphite2 Make libtool file on all non-Windows platforms, not only Linux and OS X. 2014-05-16 12:51:24 +00:00
graphviz Revbump for ocaml 4.02.0. 2014-10-09 19:14:03 +00:00
graphviz-dot-mode Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
gri Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gst-plugins0.10-cairo Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gst-plugins0.10-jpeg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
gst-plugins0.10-png Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
gst-plugins1-cairo Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-plugins1-jpeg Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gst-plugins1-png Reset PKGREVISION for gst-plugins1* update to 1.4.0. 2014-08-08 21:31:06 +00:00
gthumb Bump PKGREVISION for exiv2 shlib major bump 2014-06-07 12:11:23 +00:00
gthumb3 Bump PKGREVISION for exiv2 shlib major bump 2014-06-07 12:11:23 +00:00
gtkam Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gtkglext Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
gtkimageview Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
gtksee Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
guile-cairo Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
GUIlib Remove patches removed from distinfo during 1.2.1 update. 2014-09-19 06:03:21 +00:00
gwenview Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
gwenview-i18n-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
gwenview-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
h5utils recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
hermes Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
hicolor-icon-theme Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
hp2xx Resolves: 2013-04-06 20:27:16 +00:00
hugin Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
icon-naming-utils Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
iGMT Revbump for all packages that have USE_TOOLS+=gs 2013-04-24 10:06:47 +00:00
ilmbase Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
ImageMagick Update for recent change to the makefile: ghostscript is no longer optional. 2014-10-16 02:33:48 +00:00
ImageViewer Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
imlib Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
imlib-gtk Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
imlib2 libungif is not relevant any longer since the GIF relevant patents 2014-05-31 15:56:26 +00:00
impress Do not build statically on SunOS. 2014-01-09 12:07:42 +00:00
inkscape Changes 0.48.5: 2014-07-29 07:03:27 +00:00
ivtools Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
jasper Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
jbig2dec Switched MASTER_SITES to SourceForce, since the original distfile can't be found 2013-08-22 20:08:01 +00:00
jbigkit not using. 2014-09-28 02:54:48 +00:00
jhead Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
jpeg Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
jpeg2ps Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
jpeg_ls Edited DESCR in the case of: 2013-04-07 20:49:31 +00:00
jpeginfo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
jpegoptim Changes 1.4.1 - fix --stdin option (assume -f when reading from stdin), 2014-05-28 14:54:25 +00:00
jpegpixi Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
jpegquality Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
kamera Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kbarcode Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kcolorchooser Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kde-base-artwork Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kdegraphics-mobipocket Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kdegraphics-strigi-analyzer Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kdegraphics-thumbnailers Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kdegraphics3 Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
kgamma Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kipi-plugins Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kipi-plugins-calendar-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kipi-plugins-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kolourpaint Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
koverartist Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kphotoalbum Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kphotobook Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kphotools Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
kruler Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
ksaneplugin Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
ksnapshot Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
lasem Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
lcms Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
lcms2 Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
lensfun install_name_tool must be used on OS X 2014-06-14 17:56:43 +00:00
leptonica Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
lib3ds Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
libart Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libcaca libcaca.so references stuff from zlib, fixes misc/toilet 2014-02-26 10:34:30 +00:00
libexif Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libexif-gtk Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
libgdiplus libungif is not relevant any longer since the GIF relevant patents 2014-05-31 15:56:26 +00:00
libgexiv2 Bump PKGREVISION for exiv2 shlib major bump 2014-06-07 12:11:23 +00:00
libggi FreeBSD 10 is not FreeBSD 1. 2014-06-30 17:45:32 +00:00
libggigcp FreeBSD 10 is not FreeBSD 1. 2014-06-30 17:45:32 +00:00
libggimisc FreeBSD 10 is not FreeBSD 1. 2014-06-30 17:45:32 +00:00
libggiwmh FreeBSD 10 is not FreeBSD 1. 2014-06-30 17:45:32 +00:00
libgii FreeBSD 10 is not FreeBSD 1. 2014-06-26 20:34:02 +00:00
libgiigic Use --mode=link argument for libtool, it gets confused during configure. 2013-09-10 14:20:47 +00:00
libgltf Needs glu. 2014-10-14 15:56:17 +00:00
libgnomecanvas Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
libgnomecanvasmm Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
libjpeg-turbo + patch-jpeglib.h (hi joerg!) 2013-10-24 09:06:05 +00:00
libkdcraw Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
libkdcraw-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
libkexif Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
libkexiv2 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
libkexiv2-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
libkface Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
libkipi Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
libkipi-kde3 Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
libksane Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
liblqr Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
libotf Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
libpano13 Switched to CMake; removed gimp dependency. 2014-07-10 13:41:48 +00:00
libpgf Trick dos2unix into actually converting configure.ac, fixes patching 2014-09-24 13:30:59 +00:00
libpuzzle Needs libiconv. 2014-01-09 10:39:18 +00:00
libraw Changes 0.15.1: 2013-05-26 09:07:34 +00:00
libraw013 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
librsvg Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
libscigraphica Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
libsixel Drop maintainershop. 2014-09-27 12:27:39 +00:00
libv4l Fixes for SunOS 64-bit where open/mmap are redefined to *64 versions. 2013-06-24 15:57:21 +00:00
libvideogfx Recursive bump for png-1.6. 2013-02-16 11:17:56 +00:00
libwebp Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
libwmf Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
libxmi Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
ljpeg Edited DESCR in the case of: 2013-04-07 20:49:31 +00:00
lprof Fix build on SunOS (needs explicit -lstdc++, avoid overloaded functions). 2014-08-21 16:37:51 +00:00
magicpoint Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
mandelbulber Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
Mesa Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
MesaDemos
MesaLib Use __attribute__((__destructor__)) instead of magic __dso_handle, and 2014-08-06 10:25:14 +00:00
metacam Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
mgl libungif is not relevant any longer since the GIF relevant patents 2014-05-31 15:56:26 +00:00
mng Update to 2.0.2. 2013-10-09 17:38:26 +00:00
mpeg2codec Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
mpgtx Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
mscgen Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
mypaint Force PIC for shared object, fixes build on amd64. Bump revision. 2014-10-17 22:01:25 +00:00
ncview Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
netpbm Configure netpbm with tiff and zlib support so that pamtotiff, 2014-10-09 18:58:18 +00:00
Ngraph Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
ns-cult3d Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
nvtv Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ocrad Fix missing includes. 2013-05-23 15:04:44 +00:00
opencsg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
opencv Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
opendis Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
openexr Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
openimageio Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
openjpeg Changes 2.1.0: 2014-05-15 14:14:54 +00:00
openjpeg15 Changes 1.5.2: 2014-04-07 14:49:41 +00:00
OpenRM Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
optipng Changes 0.7.5: 2014-03-31 07:15:19 +00:00
osg Recursive bump for ffmpeg2 shared library major version bump. 2014-10-01 16:09:34 +00:00
oxygen-icons Update to KDE SC 4.11.5 2014-02-01 02:20:43 +00:00
p5-Barcode-Code128 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-cairo Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-cairo-gobject Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Chart Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Chart-ThreeD Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-clutter Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-GD Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-GD-Barcode Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-GD-Graph-sparklines Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-GD-Graph3d Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-GD-SecurityImage Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-GD-SVG Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-GDGraph Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-GDGraph-boxplot Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-GDTextUtil Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-GIFgraph Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Gnome2-Canvas Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-GraphicsMagick Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-GraphViz Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-GraphViz2 Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Image-BMP Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-Image-ExifTool Update to 9.70: 2014-09-07 12:31:04 +00:00
p5-Image-Imlib2 Remove SVR4_PKGNAME, per discussion on tech-pkg. 2014-10-09 13:44:32 +00:00
p5-Image-Info Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Image-Size Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-PerlMagick Update to 6.8.9.8. patch-configure was integrated upstream. 2014-10-13 09:08:31 +00:00
p5-RRDTool-OO Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-SVG Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-SVG-Graph Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
p5-SWF-File Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
p5-Template-GD Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
panomatic Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
PanoTools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
pdiff Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
pear-Image_Canvas Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
pear-Image_Color Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
pear-Image_Graph Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
pfstmo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
pfstools Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
pgraf Use void for xx. 2012-12-20 21:51:38 +00:00
photopc Update to 3.05. No changelog. 2013-03-03 10:40:12 +00:00
php-exif Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
php-gd Apply a patch to fix CVE-2014-2497, taken from 2014-05-11 11:20:47 +00:00
php-jpgraph Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
pixmap Add missing buildlink3s implied by openmotif but not lesstif. 2013-01-19 21:04:43 +00:00
ploticus Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
ploticus-examples Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
plotmtv Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
plotutils Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
png Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
png2html recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
pngcheck Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
pngcrush Changes 1.7.76: 2014-08-17 09:09:54 +00:00
potrace Update to 1.11: 2013-03-15 23:21:39 +00:00
povray Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
prag Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
ps2eps Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
pstoedit Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
py-aafigure Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-actdiag Update actdiag to 0.5.3. 2014-07-06 12:33:08 +00:00
py-altgraph 0.12 2014-08-07 01:37:17 +00:00
py-biggles Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-blockdiag Update blockdiag to 1.4.3. 2014-08-26 11:44:50 +00:00
py-cairo Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-cairo3 pkg-config is still needed. 2014-06-30 14:25:59 +00:00
py-cairocffi Version 0.6 2014-10-05 20:24:57 +00:00
py-chart Doesn't agree with Python 3.x. 2014-08-13 22:36:38 +00:00
py-dot Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-fits Import py27-fits-3.2 as graphics/py-fits. 2014-01-19 20:30:05 +00:00
py-gdchart Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-gdmodule Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-gnuplot Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-goocanvas Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-gtkglext Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-imaging Icns DOS fix -- CVE-2014-3589 2014-09-07 09:37:46 +00:00
py-imagingtk Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-matplotlib Rename variables to avoid use of reserved identifiers. 2014-02-26 10:36:58 +00:00
py-matplotlib-gtk2 Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-matplotlib-tk Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
py-mcomix Fixes dependency versions, allow py-imaging again. 2014-07-15 23:31:13 +00:00
py-nwdiag Update nwdiag to 1.0.3. 2014-07-06 12:36:47 +00:00
py-OpenGL Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-piddle Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-Pillow Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
py-pycha Doesn't support Python 2.6. 2014-06-28 22:49:32 +00:00
py-pygal V 1.5.1 2014-10-05 20:34:20 +00:00
py-qrcode Version 5.0 2014-07-16 23:36:23 +00:00
py-seqdiag Update seqdiag to 0.9.3. 2014-07-06 12:28:22 +00:00
py-sk1libs Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
py-uniconvertor Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
qcomicbook recursive PKGREVISION bump for poppler shlib major change 2014-04-29 07:57:13 +00:00
qimageblitz Recursive PKGREVISION bump for OpenSSL API version bump. 2014-02-12 23:17:32 +00:00
qiv Update qiv to 2.3.1. Changes: 2014-10-10 20:57:32 +00:00
qiviewer Remove outdated replacements that now break the build. 2014-09-10 12:15:35 +00:00
quesoglc Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
qvplay Update to 0.95. No changelog. 2013-03-03 10:53:31 +00:00
R-latticeExtra Initial revision. 2014-09-19 16:50:27 +00:00
rabbit Update rabbit to 2.1.3. 2014-08-04 09:32:14 +00:00
radiance Add platform code for MacOS. 2014-06-29 04:16:51 +00:00
rayshade Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
refocus-it Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
resize_image Don't use nested functions. Bump revisions. 2012-11-01 19:52:03 +00:00
ristretto Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
ruby-chunky_png Update ruby-chunky_png to 1.3.0. 2014-03-14 17:08:35 +00:00
ruby-color Update ruby-color to 1.5.1. 2014-03-14 17:10:02 +00:00
ruby-color-japanese
ruby-color-tools
ruby-gd * Add GEM_EXTSDIR support. 2014-03-17 14:12:10 +00:00
ruby-gnome2-cairo-gobject Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-gnome2-clutter Import ruby-gnome2-clutter-2.0.2 as graphics/ruby-gnome2-clutter. 2014-01-05 09:04:31 +00:00
ruby-gnome2-clutter-gtk Import ruby-gnome2-clutter-gtk-2.0.2 as graphics/ruby-gnome2-clutter-gtk. 2014-01-05 09:06:05 +00:00
ruby-gnome2-gdk3 Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-gnome2-gdkpixbuf revert `say good-bye to ruby-1.8', it should not be done dureing a freeze. 2013-06-20 09:12:13 +00:00
ruby-gnome2-goocanvas Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-gnome2-rsvg Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-gnuplot Update ruby-gnuplot to 2.6.2. 2013-01-14 06:14:03 +00:00
ruby-imlib2 Add GEM_EXTSDIR support and utilize GEM_NAME. 2014-03-17 14:13:54 +00:00
ruby-mini-magick Update ruby-mini-magick to 3.7.0. 2014-03-14 17:11:42 +00:00
ruby-oily_png Update ruby-oily_png to 1.1.1. 2014-03-14 17:13:14 +00:00
ruby-opengl Fix build with ruby21. 2014-03-25 16:34:50 +00:00
ruby-rcairo Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
ruby-RMagick Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
s10sh Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
sane-backends Fixes: 2013-04-06 03:45:05 +00:00
sane-frontends Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
scidavis Make sure that qwt-qt4 users don't pick up qwt6-qt4. 2014-10-20 20:08:09 +00:00
scigraphica Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
scrot Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
SDL2_image Don't let configure switch OBJC to gcc, or building may fail then CC=clang. Only affects OS X. 2014-10-14 19:20:05 +00:00
SDL_image Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
shotwell Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
shotwell-gtk3 Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
showimg Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
silgraphite Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
silgraphite-ft Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
silgraphite-xft Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
simage Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
skencil Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
spcaview Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
svgpart Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
tango-icon-theme Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
tesseract Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
tex-a2ping Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
tex-a2ping-doc Sync tex-a2ping{,-doc} with TeX Live 2013 2013-12-03 20:15:47 +00:00
tex-asyfig
tex-asyfig-doc
tex-auto-pst-pdf Import tex-auto-pst-pdf-0.6 as graphics/tex-auto-pst-pdf. 2012-10-16 22:07:28 +00:00
tex-auto-pst-pdf-doc Import tex-auto-pst-pdf-doc-0.6 as graphics/tex-auto-pst-pdf-doc. 2012-10-16 22:07:51 +00:00
tex-dvipng-doc Update tex-dvipng-doc to 1.14 2013-12-03 02:18:49 +00:00
tex-eepic
tex-eepic-doc
tex-epstopdf Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
tex-epstopdf-doc Update tex-epstopdf{,-doc} to 2.20 2013-12-03 19:55:56 +00:00
tex-metapost Update tex-metapost{,-doc} to 1.803 2013-12-03 22:44:48 +00:00
tex-metapost-doc Update tex-metapost{,-doc} to 1.803 2013-12-03 22:44:48 +00:00
tex-mptopdf Update tex-mptopdf{,-doc} to 2013 2013-12-03 20:04:35 +00:00
tex-mptopdf-doc Update tex-mptopdf{,-doc} to 2013 2013-12-03 20:04:35 +00:00
tex-pdfcrop Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
tex-pdfcrop-doc
tex-psgo
tex-psgo-doc
tex-pst-2dplot
tex-pst-2dplot-doc
tex-pst-3d Fixes: 2013-04-06 03:45:05 +00:00
tex-pst-3d-doc
tex-pst-3dplot
tex-pst-3dplot-doc
tex-pst-barcode
tex-pst-barcode-doc
tex-pst-blur
tex-pst-blur-doc
tex-pst-circ
tex-pst-circ-doc
tex-pst-coil
tex-pst-coil-doc
tex-pst-eps
tex-pst-eps-doc
tex-pst-fill
tex-pst-fill-doc
tex-pst-ghsb
tex-pst-ghsb-doc
tex-pst-gr3d
tex-pst-gr3d-doc
tex-pst-grad
tex-pst-grad-doc
tex-pst-lens
tex-pst-lens-doc
tex-pst-math
tex-pst-math-doc
tex-pst-node
tex-pst-node-doc
tex-pst-osci
tex-pst-osci-doc
tex-pst-pdf Instead of having a DEPENDS+=ghostscript... have USE_TOOLS+=gs:run 2013-04-24 10:10:13 +00:00
tex-pst-pdf-doc
tex-pst-plot
tex-pst-plot-doc
tex-pst-poly
tex-pst-poly-doc
tex-pst-slpe
tex-pst-slpe-doc
tex-pst-text
tex-pst-text-doc
tex-pst-tree
tex-pst-tree-doc
tex-pst-vue3d
tex-pst-vue3d-doc
tex-pstools Import tex-pstools-1.68 as graphics/tex-pstools. 2013-12-04 18:34:47 +00:00
tex-pstools-doc Import tex-pstools-doc-1.68 as graphics/tex-pstools-doc. 2013-12-04 18:35:15 +00:00
tex-pstricks Update tex-pstricks to 2.33. 2012-10-16 22:24:17 +00:00
tex-pstricks-add
tex-pstricks-add-doc
tex-pstricks-doc Update tex-pstricks to 2.33. 2012-10-16 22:24:17 +00:00
tex-tex-ps
tex-tex-ps-doc
tex-xypic
tex-xypic-doc
tgif Remove "Trailing empty lines." and/or "Trailing white-space." 2013-04-08 11:17:08 +00:00
tiff Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
TiffIO recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
tkpiechart Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. 2014-10-09 14:05:50 +00:00
tuxpaint Replace patch with a MAKE_FLAGS line. 2014-09-24 22:00:06 +00:00
tuxpaint-config Reduce diff to upstream; install more files. 2014-08-24 15:30:43 +00:00
tuxpaint-stamps Update to 20140823. 2014-08-24 07:39:42 +00:00
ucview Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
unicap Switch to ffmpeg1 instead of ffmpeg. 2014-08-11 23:09:44 +00:00
urt Bump PKGREVISION for netpbm update. 2014-09-08 21:24:44 +00:00
vcg Use c89; fix void main; preliminary LP64 fixes (a lot more likely required) 2013-04-14 00:15:27 +00:00
veusz Update to 1.21. Convert to distutils.mk and add egg. 2014-08-21 20:38:47 +00:00
vid Deal with move of netpbm headers. 2014-09-22 11:53:43 +00:00
viewfax Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
viewnior Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
vigra Bump PKGREVISION for ilmbase shlib major bump. 2014-08-22 11:24:25 +00:00
vnc2swf "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
vp add missing libs on SunOS 2014-02-08 22:54:45 +00:00
vtk Fix ``Please add a line "# used by foo/bar/Makefile" here.'' warnings. 2014-10-05 16:41:05 +00:00
vtk-data Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
vtk-docs Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
wmphoto Fix inline usage. 2012-11-01 19:52:47 +00:00
wxsvg Switch to ffmpeg1 instead of ffmpeg. 2014-08-11 23:09:44 +00:00
x11rec Fixes missing dependency on ruby-base. 2014-03-27 09:19:12 +00:00
xart Don't use non-POSIX brace expansion. 2014-09-29 12:27:16 +00:00
xbmbrowser Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
xdot Mark packages that are not ready for python-3.3 also not ready for 3.4, 2014-05-09 07:36:53 +00:00
xdvipresent Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
xfce4-icon-theme Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
xfig Add stronger accomodation for broken modes in distfile. 2014-03-18 23:28:20 +00:00
xgc Add MAKE_FLAGS+=appdefaultdir=${PREFIX}/lib/X11/app-defaults so package 2013-06-09 12:12:26 +00:00
xgraph Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
xli Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
xmorph Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
xpaint Protect /* in bitmaps/Imakefile so that imake does not mistake it for 2013-08-15 00:05:44 +00:00
xplot Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
xplot-devel Bump for perl-5.20.0. 2014-05-29 23:35:13 +00:00
xsane Fix build on SunOS (needs explicit -lsocket -lnsl). 2014-08-21 16:06:44 +00:00
xv Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
xzgv Recursive revbump from x11/pixman 2014-05-05 00:47:34 +00:00
zphoto Revbump after updating libwebp and icu 2014-10-07 16:47:10 +00:00
Makefile Add libgltf 2014-10-13 21:52:02 +00:00