pkgsrc/graphics
wiz cc1bf37073 Update to 1.10.0. Add default-on xcb option (implying x11 option).
Release 1.10.0 (2010-09-06 Chris Wilson <chris@chris-wilson.co.uk>)
===================================================================
The cairo community is astounded (and flabbergast) to finally announce
the 1.10.0 release of the cairo graphics library. This is a major update
to cairo, with new features and enhanced functionality which maintains
compatibility for applications written using any previous major cairo
release, (1.8, 1.6, 1.4, 1.2, or 1.0). We recommend that anybody using
a previous version of cairo upgrade to cairo 1.10.0.

One of the more interesting departures for cairo for this release is the
inclusion of a tracing utility, cairo-trace. cairo-trace generates a
human-readable, replayable, compact representation of the sequences of
drawing commands made by an application. This can be used to inspecting
applications to understand issues and as a means for profiling
real-world usage of cairo.

The traces generated by cairo-trace have been collected in

  git://git.cairographics.org/git/cairo-traces

and have driven the performance tuning of cairo over the last couple of
years. In particular, the image backend is much faster with a new
polygon rasterisation and a complete overhaul of the tessellator. Not
only is this faster, but also eliminates visual artifacts from
self-intersecting strokes. Not only has cairo-trace been driving
performance improvements within cairo, but as a repeatable means of
driving complex graphics it has been used to tune OpenGL, DDX, and
pixman.

Cairo's API has been extended to better support printing, notably
through the ability to include a single compressed representation of an
image for patterns used throughout a document, leading to dramatic file
size reductions. Also the meta-surface used to record the vector
commands compromising a drawing sequence is now exposed as a
CAIRO_SURFACE_TYPE_RECORDING, along with a new surface that is a child of a
larger surface, CAIRO_SURFACE_TYPE_SUBSURFACE. One typical usage of a
subsurface would be as a source glyph in a texture atlas, or as a
restricted subwindow within a canvas.

Cairo's API has also resurrected the RGB16 format from the past as
the prevalence of 16-bit framebuffers has not diminished and is a
fore-taste of the extended format support we anticipate in the future.
Increasing cairo's utility, we introduce the cairo_region_t for handling
sets of pixel aligned rectangles commonly used in graphics applications.
This is a merger of the GdkRegion and the pixman_region_t, hopefully
providing the utility of the former with the speed of the latter.

Furthermore cairo has been reworked to interoperate more closely with
various acceleration architectures, gaining the ability to share
those hardware resources through the new cairo_device_t. For instance,
with the new OpenGL backend that supersedes the Glitz backend, hardware
and rendering operations can be shared between a classic OpenGL
application mixing libVA for the hardware assisted video decode with
cairo for high quality overlays all within the same OpenGL canvas.

Many thanks for the hard work of Adrian Johnson, Andrea Canciani, Behdad
Esfahbod, Benjamin Otte, Carl Worth, Carlos Garcia Campos, Chris Wilson,
Eric Anholt, Jeff Muizelaar, Karl Tomlinson, M Joonas Pihlaja, Søren
Sandmann Pedersen and many others that have contributed over the last
couple of years to cairo. Thank you all!

Snapshot 1.9.14 (2010-07-26)
============================

  A quiet couple of weeks, hopefully Cairo is seeing widescale deployment and
  we are being to see the results of the stabilisation effort. Clipping bugs
  seems to have been the order of the last couple of weeks, with a couple
  reported and duly fixed. Thank you Igor Nikitin and Karl Tomlinsion for
  finding those regressions. At this point all that seems to remain to do is
  to fix the outstanding regressions in the PDF backend...

Bugs fixes
----------

    Clip doesn't work for text on the image backend
    https://bugs.freedesktop.org/show_bug.cgi?id=29008

    Add explicit dependency for cxx
    https://bugs.freedesktop.org/show_bug.cgi?id=29114

    Fix regressions in reporting clip extents
    https://bugs.freedesktop.org/show_bug.cgi?id=29120
    https://bugs.freedesktop.org/show_bug.cgi?id=29121
    https://bugs.freedesktop.org/show_bug.cgi?id=29122
    https://bugs.freedesktop.org/show_bug.cgi?id=29124
    https://bugs.freedesktop.org/show_bug.cgi?id=29125


Snapshot 1.9.12 (2010-07-12)
============================

  A couple of weeks spent fixing those annoying bugs and cleaning up the build
  system; the list of outstanding tasks to complete for the stable release is
  finally shrinking. The chief bug fixer has been Benjamin Otte who not only
  made sure that the public API is consistent and being tested for its
  consistency, but also ensured that the documentation was up-to-date and
  spent time clarifying cases where even the Cairo developers have come
  unstuck in the past. Many thanks, Benjamin. However, he was not alone,
  as Andrea Canciani continued his fine work in isolating broken corner cases
  and proceeding to fix them, and tidying up the quartz backend. And last, but
  definitely not least, M Joonas Pihlaja tried building Cairo across a
  perverse range of systems and fixed up all the loose bits of code that came
  unravelled. Thanks everybody!

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

  cairo_surface_set_mime_data, cairo_surface_get_mime_data:

    The length parameter is now an unsigned long (as opposed to an unsigned
    int). The parameter is intended to be an equivalent to a size_t without
    requiring POSIX types and be large enough to store the size of the
    largest possible allocation.

  cairo_gl_surface_create_for_texture:

    This a new surface constructor for cairo-gl that explicitly enables
    render-to-texture for foreign, i.e. application, textures.

  cairo_region_xor, cairo_region_xor_rectangle

    A couple of utility routines add to the region handling interface for
    the purpose of replacing existing GdkRegion functionality.

Bugs fixes
----------

  https://bugs.launchpad.net/ubuntu/+source/cairo/+bug/600622

    Inkscape was caught in the act of attempting to modify a finished surface.
    Unfortunately, we had the ordering of our guards and assertions wrong and
    so an ordinary application error was triggering an assert in Cairo. This
    lead Benjamin to add a test case to ensure that the entire public API
    could handle erroneous input and then proceeded to fix a whole slew of
    uncovered bugs.


  https://bugs.freedesktop.org/show_bug.cgi?id=28888

    A regression introduced by the special casing of uploading images to an
    xlib surface in-place which was ignoring the translation applied to the
    image.


Snapshot 1.9.10 (2010-06-26)
============================

   The first "quick" snapshot in the run up to the stable release.  The
   last snapshot was picked up by the bleeding edge distributions and so the
   bug reports have to started to roll in.  The most frequent of these are the
   introduction of rendering errors by applications that modify a surface
   without subsequently calling cairo_surface_mark_dirty(). Make sure the
   application developers are aware of increased reliance on strict use of the
   Cairo API before 1.10 is released!

   The usual slew of bugs reported and we would like to thank Zoxc for
   contributing the WGL interface for cairo-gl, and finding more build
   failures on win32.  And it just wouldn't be a 1.9 snapshot unless
   Benjamin Otte improved the error handling within cairo-gl, as well as
   isolating and fixing some more errors in the test suite. The biggest bug of
   the snapshot turned out to be a major sign extension issue that had lain
   hidden for many years and was suddenly exposed by incorrectly rounding
   rectangles when performing non-antialiased rendering.  Also to the relief
   of many we have included the downstream patch to honour the user's LCD
   filtering preferences for subpixel rendering of fonts.  The interface
   remains private for the time being, whilst the proposed public API is
   finalized.

API changes
-----------
   None.

Snapshot 1.9.8 (2010-06-12)
===========================

   One major API changes since the last snapshot, and a whole slew of bugs
   fixed and inconsistencies eliminated. Far too many bugs fixed to
   individually identify. We need to thank Benjamin Otte for his fantastic
   work on the cairo-gl backend making it faster and more robust, Andrea
   Canciani for finding so many bugs and developing test cases for them, as
   well fixing them. And last but not least we must all thank Adrian Johnson for
   continuing to eliminate bugs and improving the PostScript and PDF backends.

   This snapshot represents almost 4 months of bug fixing, bringing Cairo to
   a point where we consider it almost ready to be a candidate for release.
   There are a few known bugs left to be fixed, being tracked in
   https://bugs.freedesktop.org/show_bug.cgi?id=24384, so please give Cairo a
   whirl and report any regressions. The plan is to release a new snapshot
   every other week leading to a 1.10 release with a target date of
   2010-08-16.

API additions
-------------
  CAIRO_FORMAT_RGB16_565

    16 bit devices still remain popular, and so with great demand,
    CAIRO_FORMAT_RGB16_565 has been restored enabling applications to create
    and use 16 bit images as sources and render targets.

  cairo_surface_create_for_rectangle()

    It is common practice to cut an image up into many smaller pieces and use
    each of those as a source - a technique called texture atlasing.
    cairo_surface_create_for_rectangle() extends Cairo to directly support use
    of these subregions of another cairo_surface_t both as a source and as a
    render target.

  cairo_region_create()
  cairo_region_create_rectangle()
  cairo_region_create_rectangles()
  cairo_region_copy()
  cairo_region_reference()
  cairo_region_destroy()
  cairo_region_equal()
  cairo_region_status()
  cairo_region_get_extents()
  cairo_region_num_rectangles()
  cairo_region_get_rectangle()
  cairo_region_is_empty()
  cairo_region_contains_rectangle()
  cairo_region_contains_point()
  cairo_region_translate()
  cairo_region_subtract()
  cairo_region_subtract_rectangle()
  cairo_region_intersect()
  cairo_region_intersect_rectangle()
  cairo_region_union()
  cairo_region_union_rectangle()

    The Cairo region API was actually added a couple of snapshots ago, but we
    forgot to mention it at the time. A simple API for the handling of
    rectangular pixel-aligned regions by Soeren Sandmann.


Backend-specific improvements
-----------------------------
cairo-gl

  Benjamin Otte made more than 200 commits in which he refactored the cairo-gl
  backend, reducing a lot of code duplication and enabled him to begin working
  on improving performance by reducing state changes and associated overhead.

cairo-xlib

  Access to the underlying connection to the Display is now thread-safe
  enabling cairo-xlib to be used in a multi-threaded application without fear
  of random corruption. Thanks Benjamin Otte!

  cairo-xlib will now attempt to use PolyModeImprecise when compositing
  trapezoids (i.e. a fill or a stroke operation with a non-trivial path) which
  should allow hardware drivers more scope for accelerating the operation at
  the cost of potentially incurring minute rendering errors. The mode can be
  forced back to PolyModePrecise by setting the antialias parameter to
  CAIRO_ANTIALIAS_SUBPIXEL.

cairo-svg

  A notable improvement was contributed by Alexander Shulgin to enable SVG to
  reference external image through the use an extended MIME data type.

Snapshot 1.9.6 (2010-02-19)
===========================
API additions
-------------
    Add cairo_device_t

    The device is a generic method for accessing the underlying interface
    with the native graphics subsystem, typically the X connection or
    perhaps the GL context. By exposing a cairo_device_t on a surface and
    its various methods we enable finer control over interoperability with
    external interactions of the device by applications. The use case in
    mind is, for example, a multi-threaded gstreamer which needs to serialise
    its own direct access to the device along with Cairo's across many
    threads.

    Secondly, the cairo_device_t is a unifying API for the mismash of
    backend specific methods for controlling creation of surfaces with
    explicit devices and a convenient hook for debugging and introspection.

    The principal components of the API are the memory management of:

      cairo_device_reference(),
      cairo_device_finish() and
      cairo_device_destroy();

    along with a pair of routines for serialising interaction:

      cairo_device_acquire() and
      cairo_device_release()

    and a method to flush any outstanding accesses:

      cairo_device_flush().

    The device for a particular surface may be retrieved using:

      cairo_surface_get_device().

    The device returned is owned by the surface.

API changes (to API new in the cairo 1.9.x series)
--------------------------------------------------
  cairo_recording_surface_create()
  cairo_recording_surface_ink_extents()

    These are the replacement names for the functions previously named
    cairo_meta_surface_create and cairo_meta_surface_ink_extents.

  cairo_surface_set_mime_data

    This interface is now changed such that the MIME data will be
    detached if the surface is modified at all. This guarantees that
    the MIME data will not become out of synch due to surface
    modifications, and also means that for the MIME data to be useful,
    it must be set after all modifications to the surface are
    complete.

API removal (of experiment API)
-------------------------------
  The cairo-glitz backend is removed entirely, (in favor of the new
  cairo-gl backend). See below for more on cairo-gl.

Generic fixes
-------------

  Many improvements for drawing of dashed strokes

	Fix incorrect handling of negative offset
	Faster computation of first dash (avoids near-infinite looping)
	Approximate extremely fine dash patterns with appropriate alpha value

  Optimize spans-based renderers for repeated rows, (such as in a rounded rectangle)

Backend-specific improvements
-----------------------------
cairo-drm

  This is a new, direct-rendering backend that supports Intel graphics
  chipsets in the i915 and i965 families. It's still experimental and
  will likely remain that way for a while. It's already got extremely
  good performance on the hardware it supports, so if nothing else
  provides a working proof and performance target for the cairo-gl
  work for Intel graphics.

cairo-gl

  Start using GLSL to accelerate many operations. Many thanks to Eric
  Anholt and T. Zachary Laine for this work. For the first time, we
  have what looks like what will be a very compelling OpenGL-based
  backend for cairo (in terms of both quality and performance).

  See this writeup from Eric for more details on recent progress of
  cairo-gl (which he presented at FOSDEM 2010):

	http://anholt.livejournal.com/42146.html

cairo-image

  The image backend is made dramatically faster (3-5 times faster for
  benchmarks consisting primarily of glyph rendering).

cairo-quartz fixes:

  Many fixes from Robert O'Callahan and Andrea Canciani including:

	Fixed gradient pattern painting
	Improved A8 image handling
	Fixes for "unbounded" and other compositing operators

cairo-pdf fixes:

  Improvements to embedding of JPEG and JPEG2000 data.

cairo-ps fixes:

  Fix printing of rotated user fonts.

Snapshot 1.9.4 (2009-10-15)
===========================
API additions:

  cairo_meta_surface_create()
  cairo_meta_surface_ink_extents()

    Finally exporting the internal meta-surface so that applications
    have a method to record and replay a sequence of drawing commands.

  cairo_in_clip()

    Determines whether a given point is inside the current clip.
    ??? Should this be called cairo_in_paint() instead? in-clip is the test
    that is performed, but in-paint would be similar to in-fill and in-stroke.

New utilities:

  cairo-test-trace

    A companion to cairo-perf-trace, this utility replays a trace against
    multiple targets in parallel and looks for differences in the output,
    and then records any drawing commands that cause a failure.
    Future plans:
      Further minimisation of the fail trace using "delta debugging".
      More control over test/reference targets.

Backend improvements:

  xlib

     Server-side gradients. The theory is that we can offload computation
     of gradients to the GPU and avoid pushing large images over the
     connection. Even if the driver has to fallback and use pixman to render
     a temporary source, it should be able to do so in a more efficient manner
     than Cairo itself. However, cairo-perf suggests otherwise:

     On tiny, Celeron/i915:

      before: firefox-20090601 211.585
       after: firefox-20090601 270.939

     and on tiger, CoreDuo/nvidia:

      before: firefox-20090601 70.143
       after: firefox-20090601 87.326

     In particular, looking at tiny:

     xlib-rgba paint-with-alpha_linear-rgba_over-512   47.11 (47.16 0.05%) -> 123.42 (123.72 0.13%):  2.62x slowdown
     █▋
     xlib-rgba paint-with-alpha_linear3-rgba_over-512   47.27 (47.32 0.04%) -> 123.78 (124.04 0.13%):  2.62x slowdown
     █▋


New experimental backends:

   QT

   OpenVG - The initial work was done by Øyvind Kolås, and made ready for
            inclusion by Pierre Tardy.

   OpenGL - An advanced OpenGL compositor. The aim is to write a integrate
            directed rendering using OpenGL at a high-level into Cairo. In
	    contrast to the previous attempt using Glitz which tried to
	    implement the RENDER protocol on top of OpenGL, using the
	    high-level interface should permit greater flexibility and
	    more offloading onto the GPU.
	    The initial work on the backend was performed by Eric Anholt.

Long standing bugs fixed:

  Self-intersecting strokes.

    A long standing bug where the coverage from overlapping semi-opaque
    strokes (including neighbouring edges) was simply summed in lieu of
    a costly global calculation has been fixed (by performing the costly
    global calculation!) In order to mitigate the extra cost, the
    tessellator has been overhauled and tune, which handles the fallback
    for when we are unable to use the new span rasteriser on the stroke
    (e.g. when using the current RENDER protocol). The large number of
    pixel artefacts that implementing self-intersection elimination
    removes is ample justification for the potential performance
    regression. If you unfortunately do suffer a substantial performance
    regression in your application, please consider obtaining a
    cairo-trace and submitting it to us for analysis and inclusion into
    our performance suite.

Special thanks:

   To the AuroraUX team for providing access to one of their OpenSolaris
   machines for cairo and pixman development.  http://www.auroraux.org/

Snapshot 1.9.2 (2009-06-12)
===========================
API additions:

  cairo_surface_set_mime_data()
  cairo_surface_get_mime_data()

    Should this take unsigned int, unsigned long or size_t for the length
    parameter? (Some datasets may be >4GiB in size.)

    Associate an alternate, compressed, representation for a surface.
    Currently:
     "image/jp2" (JPEG2000) is understood by PDF >= 1.5
     "image/jpeg" is understood by PDF,PS,SVG,win32-printing.
     "image/png" is understood by SVG.

  cairo_pdf_version_t
  cairo_pdf_surface_restrict_to_version()
  cairo_pdf_get_versions()
  cairo_pdf_version_to_string()

    Similar to restrict to version and level found in SVG and PS,
    these limit the features used in the output to comply with the PDF
    specification for that version.

  CAIRO_STATUS_INVALID_SIZE
    Indicates that the request surface size is not supported by the
    backend.  This generally indicates that the request is too large.

  CAIRO_STATUS_USER_FONT_NOT_IMPLEMENTED
    Indicates that a required callback for a user-font was not implemented.

  CAIRO_STATUS_LAST_STATUS
    This is a special value to indicate the number of status values enumerated
    at compile time. (This may differ to the number known at run-time.)

  The built-in twin font is now called "@cairo:" and supports a limited set
  of options like "@cairo:mono". Where are these specified?

  cairo_in_fill() now uses HTML Canvas semantics, all edges are inside.

New experimental backends:

   CairoScript

New utility:

  cairo-trace and cairo-perf-trace

    cairo-trace generates a human-readable, replayable, compact(-ish!)
    representation of the sequences of drawing commands made by an
    application.

    Under the util/cairo-script directory is a library to replay traces.

    perf/cairo-perf-trace replays traces against multiple backends
    and makes useful benchmark reports. This is integrated with
    'make perf'. You may collect your own traces or take advantage
    of traces collected by the community:

      git://git.cairographics.org/git/cairo-traces

    (Put this into perf/cairo-traces to run these as part of "make perf".)

    There is additional WIP in building a debugging tool for cairo applications
    based on CairoScript (currently very preliminary, mostly serves to show
    that GtkSourceView is too slow) :

      people.freedesktop.org:~ickle/sphinx

Test suite overhaul:

  The test suite is undergoing an overhaul, primarily to improve its speed
  and utility. (Expect more changes in the near future to improve XFAIL
  handling.)

Optimisations:
  polygon rasterisation! Joonas implemented the Tor polygon scan converter,
  on typical geometry is about 30% faster for the image backend.

  Bovine Polaroids! For those not in on the joke, this is the long
  awaited "copy-on-write snapshot" or "COW snapshot" support. The
  user-visible feature is that including the same image multiple times
  into a PDF file should result in only a single instance of that
  image in the final output. This is unlike previous versions of cairo
  which would generate very large PDF files with multiple copies of
  the same image. Adrian says that the PDF is not quite working as
  well as it should yet, so we hope for futher improvements before
  cairo 1.10.

Bug fixes:

  EXTEND_PAD.

  Better handling of large scale-factors on image patterns.

  Emit /Interpolate for PS,PDF images.

  Global glyph cache - cap on the total number of inactive glyphs,
  should prove fairer for fonts with larger glyph sets.

  Compilation without fontconfig

  Improved handling of low-bitdepth sources (e.g. copying the contents
  of 16-bit xserver windows)

Regressions:

  cairo_traps_extract_region >10x slower. Fix pending.

Still to come:

  Region tracking API (ssp) for damage tracking, hit testing etc
  mime-surface

  An expiremental OpenGL backend?

  Tweaks to tessellator, allocations of patterns, delayed
  initialisation of the xlib backend (reduce the cairo overhead of
  render_bench by ~80%).
2010-09-13 12:23:01 +00:00
..
aalib Added LICENSE information. 2010-01-24 17:11:17 +00:00
agg Not make-jobs safe (fails when linking examples with -j16). 2010-01-20 12:46:07 +00:00
aqsis Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
artist PKGREVISION bump for elisp packages because of bytecode format changes 2009-08-06 01:44:45 +00:00
asymptote Update to 1.85: 2009-08-31 14:53:10 +00:00
autopano-sift-C work-around finding libpng 2010-06-15 09:42:23 +00:00
autotrace Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
aview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
babl minor cleanup: remove a "subst" hack which doesn't apply anymore, 2010-02-05 11:42:37 +00:00
barcode
bktr2jpeg Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
blender Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
blender-doc Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
blinkenthemes Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
blinkentools Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
cairo Update to 1.10.0. Add default-on xcb option (implying x11 option). 2010-09-13 12:23:01 +00:00
cairomm Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
cal3d Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
cal3d-examples Add user-destdir support. 2009-08-30 05:21:20 +00:00
cambevao Set LICENSE. 2010-09-12 19:06:42 +00:00
camediaplay DESTDIR support 2010-02-01 02:41:52 +00:00
camlimages Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
cdlabelgen honour PKGMANDIR 2009-09-23 13:52:11 +00:00
Cenon More PKGREVISION bumps of jpeg dependencies. 2010-01-24 13:26:09 +00:00
cheese bump PKGREV fir gnome-desktop and e-d-s updates 2010-07-14 16:42:11 +00:00
cinepaint Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
circos Fix dependency pattern. 2010-06-08 13:52:57 +00:00
claraocr DESTDIR support 2010-02-01 02:41:52 +00:00
clutter Fixes build on Darwin 8.11.0 without X. 2010-08-01 09:04:33 +00:00
clutter-box2d Update MASTER_SITES. 2010-08-14 11:33:41 +00:00
clutter-cairo Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
clutter-gtk Update clutter-gtk to 0.10.6. 2010-08-14 11:28:59 +00:00
clutter-qt Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
clutter08 Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
clutter08-gtk Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
cnxtview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
Coin Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
comix Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
compface Add DESTDIR support. 2009-06-11 10:04:27 +00:00
cpia2view Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
cqcam Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
CRWInfo Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
dcraw Update dcraw from 8.82 to 9.04. 2+ years worth of changes but no change log. 2010-08-06 20:49:23 +00:00
denemo Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
dia add conditionals to PLIST to fix the non-gnome case, should fix 2010-08-31 18:25:29 +00:00
dia-python Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
digikam Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
digikam-doc-kde3 Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
digikam-kde3 Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
djview4 Update djview4 to 4.5. 2010-08-15 07:09:27 +00:00
djvulibre-lib update to 3.5.22, from Ryo ONODERA per PR pkg/43711 2010-08-09 11:05:54 +00:00
djvulibre-tools update to 3.5.22, from Ryo ONODERA per PR pkg/43711 2010-08-09 11:05:54 +00:00
dvipng Update dvipng to 1.13. 2010-09-13 04:28:21 +00:00
dx Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
dxsamples Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
enblend-enfuse Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
eog add one 2010-07-26 11:13:43 +00:00
eog-plugins add eog-plugins-2.30.1, a collection of plugins for the "eog" image viewer 2010-07-26 11:16:27 +00:00
eog-plugins-map add eog-plugins-map-2.30.1, a map plugin for the "eog" image viewer, 2010-07-26 11:18:15 +00:00
epeg Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-buffer Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-edb Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-eet Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-gif Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-jpeg Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-pmaps Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-png Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
evas-sdl Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-sdl-16 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-software-x11 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-svg Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
evas-tiff Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-xpm Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
evas-xrender-x11 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
ewipe Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
exif update to 0.6.19 2009-11-15 21:23:57 +00:00
exifprobe DESTDIR support 2010-02-03 23:27:52 +00:00
exiftags DESTDIR support 2010-02-03 23:23:27 +00:00
exiv2 belatedly bump ABI rev - the last update changed the shlib major 2010-07-14 18:46:30 +00:00
exiv2-organize sync w/ base pkg 2010-07-14 18:47:06 +00:00
extrema update to 4.4.4 2010-06-16 20:45:42 +00:00
f-spot Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
f4l Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
fbm DESTDIR support 2010-02-03 23:23:27 +00:00
feh Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
flphoto Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
fly Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
fnlib Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
fotoxx Update fotoxx from 5.8 to 10.8.4. Way to many changes to list them 2010-08-24 18:58:02 +00:00
frameworks Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
freeglut Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 20:05:39 +00:00
freetype Use META_PACKAGE. 2009-04-08 23:05:45 +00:00
freetype-lib Add patches to avoid conflict with getline(3). 2009-08-11 15:26:22 +00:00
freetype-utils
freetype2 Update to freetype2-2.4.2: 2010-08-08 16:06:02 +00:00
fujiplay
g2 Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
g3d Remove USE_DIRS from pkgsrc. 2009-07-22 09:01:16 +00:00
gd Make sure configure doesn't find an old (possibly non-Pkgsrc) libpng12-config 2010-06-23 03:02:37 +00:00
gdchart Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gdk-pixbuf Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
geeqie Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gegl configure said: 2010-08-16 23:36:28 +00:00
geomview MAKE_JOBS_SAFE=no 2009-08-03 14:01:32 +00:00
get_ds7 Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
gfract Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gif2png Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gif320
gifsicle
giftrans
gimageview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimmage Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp No need gtkdoc-rebase workaround anymore. 2010-08-29 09:29:38 +00:00
gimp-color-manager Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp-docs Not MAKE_JOBS_SAFE. 2010-03-09 18:24:53 +00:00
gimp-exif-browser Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp-fix-ca Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp-liquid-rescale Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp-rawphoto Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp-refocus-it Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp-resynthesizer Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp-ufraw update to 0.17 2010-06-16 15:24:10 +00:00
gimp-warp-sharp
gimp1
gimp1-base Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp1-data Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp1-wideangle Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gimp2-wideangle Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
giram Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gle Remove two master sites: one does not have the file, the other times out. 2009-08-09 22:25:07 +00:00
glew Fix destdir installation. 2010-05-25 06:44:14 +00:00
glitz Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gliv Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
glpng Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
glu Bump PKGREVISION to fix pkg-config files as noted by obache@ in the PR 41895. 2009-08-25 07:29:18 +00:00
glut Bump PKGREVISION to fix pkg-config files as noted by obache@ in the PR 41895. 2009-08-25 07:29:18 +00:00
glx-utils Update to 7.4.4. Make software ratserizer actually work. Add one patch from 2009-07-08 20:00:57 +00:00
gmngview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
GMT Use correct variable for rpath. 2009-11-23 16:00:34 +00:00
gnome-backgrounds update to 2.30.0 2010-07-06 15:06:39 +00:00
gnome-icon-theme Make librsvg a build dependency by using its buildlink3.mk and 2010-07-17 12:22:32 +00:00
gnome-icon-theme-extras Initial import of gnome-icon-theme-extras-2.30.1: 2010-06-05 10:22:17 +00:00
gnome-icon-theme-symbolic Initial import of gnome-icon-theme-symbolic-2.30.0: 2010-06-05 10:25:43 +00:00
gnuplot Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gnuplot-nox11 Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gocr Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
goocanvas Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
goocanvasmm Update goocanvasmm to 0.15.3. 2010-08-04 11:58:13 +00:00
gphoto Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gphoto2 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
gqview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gqview-devel Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gqview-gtk1 Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
grap Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
GraphicsMagick Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
graphviz Bump PKGREVISION for DEPENDENCY change. 2010-08-31 18:24:11 +00:00
gri Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 20:05:39 +00:00
gst-plugins0.10-cairo reset PKGREV for base pkg update 2010-07-22 13:22:01 +00:00
gst-plugins0.10-jpeg reset PKGREV for base pkg update 2010-02-16 13:17:28 +00:00
gst-plugins0.10-png reset PKGREV for base pkg update 2010-07-22 13:22:01 +00:00
gthumb Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gtkam Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gtkglext Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gtkimageview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
gtksee Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
guile-cairo Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
GUIlib Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
gwenview Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
gwenview-i18n Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
h5utils Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
hermes Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
hicolor-icon-theme Update to 0.12. Changes undocumented. 2010-01-20 13:43:45 +00:00
hp2xx Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
hugin Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
icon-naming-utils Remove USE_DIRS from pkgsrc. 2009-07-22 09:01:16 +00:00
iGMT Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
ilmbase Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
ImageMagick Fix whitespace problem in Makefile. 2010-08-08 21:07:23 +00:00
ImageViewer More PKGREVISION bumps of jpeg dependencies. 2010-01-24 13:26:09 +00:00
imlib Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
imlib2 Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
impress DESTDIR support 2010-02-03 22:58:38 +00:00
inkscape revbumps for poppler update 2010-08-15 11:22:10 +00:00
ivtools Disable for 64bit platforms, doesn't compile due to int casts. 2010-07-01 22:21:29 +00:00
jasper Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
jbig2dec Import jbig2dec-0.11: 2010-09-09 02:13:50 +00:00
jbigkit LICENSE=gnu-gpl-v2 2010-05-17 03:08:21 +00:00
jhead Upgrade to jhead-2.87; this fixes CVE-2008-4641 (fix reported by 2009-09-29 20:04:05 +00:00
jpeg Replace DESCR from version depend README in distribution file 2010-08-05 11:29:09 +00:00
jpeg2ps fix MASTER_SITE & HOMEPAGE 2009-10-12 05:33:05 +00:00
jpeg_ls Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
jpeginfo Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
jpegoptim Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
jpegpixi Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
jpegquality Fix HOMEPAGE and MASTER_SITES. 2010-05-01 20:52:36 +00:00
kbarcode Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
kdegraphics3 Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
kdegraphics4 Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
kipi-plugins Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
kipi-plugins-calendar-kde3 Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
kipi-plugins-kde3 Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
koverartist Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
kphotoalbum Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
kphotobook Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
kphotools Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
lcms update to 1.19 2010-06-16 15:17:58 +00:00
lensfun Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
lib3ds Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
libart update to 2.3.21 2010-04-13 16:45:37 +00:00
libcaca Recursive bump for libltdl 2009-12-15 21:41:00 +00:00
libexif Added LICENSE information. 2010-01-30 16:27:59 +00:00
libexif-gtk Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
libgdiplus Update to 2.6.7 - sync with mono 2.6.7 2010-07-31 08:43:27 +00:00
libggi export libXxf86dga dependency 2010-01-30 15:29:04 +00:00
libggigcp Update to libggigcp-1.0.2. 2010-01-30 15:33:25 +00:00
libggimisc Update to libggimisc-2.2.2 2010-01-30 15:29:44 +00:00
libggiwmh Update to libggiwmh-0.3.2. 2010-01-30 15:36:36 +00:00
libgii Update to libgii-1.0.2. 2010-01-30 14:54:48 +00:00
libgiigic Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
libgnomecanvas Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
libgnomecanvasmm Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
libkdcraw Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
libkexif Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
libkexiv2 Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
libkipi Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
liblqr Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
libotf Update libotf to 0.9.11. 2010-04-09 01:46:49 +00:00
libpano13 Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
libpuzzle Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
librsvg Don't change ${PREFIX} during installation. Look inside DESTDIR. 2010-06-27 20:11:36 +00:00
libscigraphica Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
libungif Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
libv4l Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
libvideogfx Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
libwmf Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
libxmi libxmi is a machine-independent vector graphics rasterization library. 2009-09-01 14:33:39 +00:00
ljpeg Support DESTDIR and PKGMANDIR 2009-10-29 22:34:33 +00:00
lprof Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
magicpoint Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
Mesa Update to 7.4.4. Make software ratserizer actually work. Add one patch from 2009-07-08 20:00:57 +00:00
MesaDemos Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
MesaLib The BUILDLINK API dependency should be for xf86driproto not 2010-05-05 18:33:30 +00:00
metacam
mgl Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
mng Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
mpeg2codec Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
mpgtx
ncview DESTDIR support 2010-02-03 22:37:56 +00:00
netpbm Arrange conditional PLIST for the "fiasco" converters since they're 2010-07-14 02:39:17 +00:00
Ngraph DESTDIR support 2010-02-01 02:31:28 +00:00
ns-cult3d Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
nvtv Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ocrad Changes 0.19: 2010-03-08 12:35:54 +00:00
opencv Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
opendis Reset maintainer, he resigned. 2010-08-16 09:48:00 +00:00
openexr Add patches for CVE-2009-1720 (multiple integer overflows in OpenEXR) and 2009-08-28 21:33:07 +00:00
openjpeg Import openjpeg-1.3: 2010-09-09 02:15:22 +00:00
OpenRM Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
optipng Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
osg The OpenSceneGraph is an open source high performance 3D graphics toolkit, used 2010-08-26 13:08:48 +00:00
ov519view Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
oxygen-icons Update to KDE SC 4.4.5. 2010-07-04 11:02:32 +00:00
p5-cairo Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Chart Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Chart-ThreeD Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-clutter Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-GD Update to 2.45, same number of test failures as before: 2010-09-06 11:24:05 +00:00
p5-GD-Graph-sparklines Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-GD-Graph3d Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-GD-SecurityImage Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-GD-SVG Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-GDGraph Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-GDGraph-boxplot Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Gdk-Imlib Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Gdk-Pixbuf Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-GDTextUtil Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-GIFgraph Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Gnome2-Canvas Initial import of p5-Gnome2-Canvas-1.002: 2010-09-03 22:38:19 +00:00
p5-GraphViz Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Image-BMP Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Image-ExifTool Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Image-Imlib2 Update to 2.03, set LICENSE. Same number of test failures as in 2.02: 2010-09-06 11:26:44 +00:00
p5-Image-Info Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Image-Size Update to 3.230/3.2.3.0: 2010-09-06 11:27:48 +00:00
p5-PerlMagick Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-RRDTool-OO Update to 0.31: 2010-09-06 11:29:34 +00:00
p5-SVG Updating graphics/p5-SVG from 2.49nb1 to 2.50 2010-08-27 06:14:37 +00:00
p5-SWF-File Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
p5-Template-GD Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
panomatic Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
PanoTools Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
pdiff Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
pear-Image_Canvas Update pear-Image_Canvas package from 0.2.4 to 0.3.2. 2010-02-06 15:49:18 +00:00
pear-Image_Color Update pear-Image_Color package to 1.0.4. 2010-05-26 16:16:09 +00:00
pear-Image_Graph Update pear-Image_Graph from 0.3.0dev4 to 0.7.2. 2010-02-06 15:51:37 +00:00
pfstmo Import pfstmo-1.3.2 as graphics/pfstmo. 2009-01-18 12:48:19 +00:00
pfstools "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
pgraf Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
photopc
php-exif Reset PKGREVISION. 2010-02-27 03:35:11 +00:00
php-gd Revert revision of several PHP extensions after both core PHP packages 2010-07-24 22:24:21 +00:00
php-jpgraph Give up MAINTAINER 2009-07-17 18:00:13 +00:00
phpsview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
pixieplus Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
pixmap Various fixes: 2008-11-30 08:43:16 +00:00
ploticus Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ploticus-examples Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 20:05:39 +00:00
plotmtv Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
plotutils Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
plotutils-nox11 Fix PLIST. Caught by <joerg>. 2010-06-30 10:24:37 +00:00
png Security update to 1.4.3: 2010-06-26 19:11:32 +00:00
png2html Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
pngcheck Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
pngcrush Changes 1.7.11: 2010-07-19 13:01:58 +00:00
pornview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
potrace
povray Add upstream bug report URL. 2010-06-20 19:05:10 +00:00
ppmtoxvpic More PKGREVISION bumps of jpeg dependencies. 2010-01-24 13:26:09 +00:00
prag
ps2eps
pstoedit Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
py-aafigure Import py-aafigure-0.5 as graphics/py-aafigure. 2010-08-01 10:14:31 +00:00
py-biggles Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
py-cairo py-Numeric was dropped as a dependency back at 1.4.0 so remove the 2010-08-22 20:48:18 +00:00
py-clutter Update MASTER_SITES. 2010-08-14 11:33:41 +00:00
py-clutter-gtk Update MASTER_SITES. 2010-08-14 11:33:41 +00:00
py-gd Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
py-gdchart Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
py-gnuplot py-gnuplot-1.8: 2009-12-15 16:41:12 +00:00
py-goocanvas Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
py-gtkglext Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
py-imaging recognize a 16bit greyscale format with "white is zero" (which is 2010-07-19 17:45:02 +00:00
py-imagingtk Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
py-matplotlib Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
py-matplotlib-gtk2 Fix booleans in the patch. 2010-07-20 09:00:17 +00:00
py-matplotlib-tk Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
py-OpenGL update to 3.0.1 2010-05-20 11:15:17 +00:00
py-piddle Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
qcamview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
qimageblitz Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
qiv Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
quesoglc Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
qvplay DESTDIR support 2010-02-03 21:55:04 +00:00
rabbit Remove default value's PKGNAME. 2010-09-10 06:40:06 +00:00
radiance Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
rayshade Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
refocus-it
resize_image Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
ristretto Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ruby-clutter * Update RUBY_HAS_ARCHLIB. 2010-09-10 06:44:03 +00:00
ruby-clutter-cairo Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ruby-clutter-core * Mark these packages Ruby 1.8.x support only. 2010-09-07 17:20:24 +00:00
ruby-clutter-gtk Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ruby-color Update graphics/ruby-color to 1.4.1. 2010-09-10 06:45:00 +00:00
ruby-color-japanese Importing graphics/ruby-color-tools 1.0.0. 2010-09-12 01:43:31 +00:00
ruby-color-tools Importing graphics/ruby-color-tools 1.3.0. 2010-09-12 01:41:21 +00:00
ruby-gd * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 06:46:43 +00:00
ruby-gnome2-gdkpixbuf Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ruby-gnome2-gnomecanvas Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ruby-gnome2-goocanvas Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ruby-gnome2-gtkglext Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ruby-gnome2-libart Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ruby-gnome2-rsvg Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
ruby-gnuplot Update graphics/ruby-gnuplot to 2.3.4. 2010-09-10 06:47:43 +00:00
ruby-imlib2 * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 06:49:22 +00:00
ruby-mini-magick Updaet graphics/ruby-mini-magick to 2.1. 2010-09-10 06:51:03 +00:00
ruby-opengl * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk. 2010-09-10 06:51:52 +00:00
ruby-rcairo Update graphics/ruby-rcairo to 1.8.5. 2010-09-10 06:55:02 +00:00
ruby-RMagick Update graphics/ruby-RMagick to 2.13.1. 2010-09-10 06:42:52 +00:00
s10sh Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
sane-backends Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
sane-frontends Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
scidavis update to 0.2.4 2010-09-07 16:45:18 +00:00
scigraphica Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
scrot Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
SDL_image Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
showimg Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
silgraphite Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
silgraphite-ft Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
silgraphite-xft Fixed pkglint warning. 2009-04-26 10:13:31 +00:00
simage Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
skencil Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
snx101view Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
spcaview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
tango-icon-theme Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
tesseract Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
tex-a2ping Let tex-a2ping{,-doc} use DISTFILES from TeX Live 2009. 2010-05-26 05:25:06 +00:00
tex-a2ping-doc Let tex-a2ping{,-doc} use DISTFILES from TeX Live 2009. 2010-05-26 05:25:06 +00:00
tex-asyfig Import tex-asyfig-0.1c as graphics/tex-asyfig. 2010-06-02 20:08:58 +00:00
tex-asyfig-doc Import tex-asyfig-doc-0.1c as graphics/tex-asyfig-doc. 2010-06-02 20:09:09 +00:00
tex-dvipng-doc Import tex-dvipng-doc-1.12 as graphics/tex-dvipng-doc. 2010-01-16 07:09:18 +00:00
tex-eepic Import tex-eepic-1.1e as graphics/tex-eepic. 2010-06-16 23:24:13 +00:00
tex-eepic-doc Import tex-eepic-doc-1.1e as graphics/tex-eepic-doc. 2010-06-16 23:24:33 +00:00
tex-metapost Import tex-metapost-1.211 as graphics/tex-metapost. 2010-06-16 23:57:26 +00:00
tex-metapost-doc Import tex-metapost-doc-1.211 as graphics/tex-metapost-doc. 2010-06-16 23:58:11 +00:00
tgif Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
tiff Add patches from either libtiff's or Red Hat's Bugzilla which fix the 2010-08-04 17:48:22 +00:00
TiffIO Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
tkpiechart Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
tuxpaint Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
tuxpaint-config Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
tuxpaint-stamps DESTDIR support 2010-02-03 21:55:04 +00:00
ucview Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
unicap Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
uniconvertor Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
urt Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
vcg DESTDIR support 2010-02-03 21:55:04 +00:00
veusz update to 1.9 2010-09-02 10:48:46 +00:00
vid Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
viewfax Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
vigra Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
vnc2swf share/doc/html is deprecated, use share/doc/${PKGBASE} instead. 2010-05-15 13:17:28 +00:00
vp Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
vtk Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
vtk-data Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
vtk-docs Remove @dirrm entries from PLISTs 2009-06-14 17:59:04 +00:00
wmphoto DESTDIR support 2010-01-29 23:50:26 +00:00
wxsvg Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
x11rec turn ImageMagick/bl3 inclusion into a simple DEPENDS, nothing 2009-08-11 15:40:18 +00:00
xart Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
xbmbrowser
xdvipresent Remove USE_DIRS from pkgsrc. 2009-07-22 09:01:16 +00:00
xfce4-icon-theme Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
xfig Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
xgraph
xli Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
xmorph "fortran" -> "fortran77" except where it is clear that it isn't F77. 2010-07-30 10:36:22 +00:00
xpaint Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
xplot Support staged installation. 2009-12-11 16:57:12 +00:00
xplot-devel DESTDIR support 2010-01-29 23:50:26 +00:00
xsane Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
xv Use standard format for MESSAGE. 2010-08-20 23:35:38 +00:00
xzgv Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
zphoto Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
Makefile Add and enable ruby-color-japanese and ruby-color-tools. 2010-09-12 01:44:15 +00:00