pkgsrc/graphics
ryoon 29ac170e41 Update to 1.2.2
Changelog:
Release 1.2.2 (1 Oct 2013)
--------------------------
* New features:
  * New oiiotool --siappend : append subimages of top two images on stack.
  * Utilities: added Strutil::contains() and icontains().
* Fixes:
  * Fixes in handling XMP & IPTC metadata.
  * oiiotool --origin and --fullpixels did not correctly propagate their
    changes to the output images.
  * oiiotool --colorconvert (and the underlying ImageBufAlgo::colorconvert)
    could crash if given a color conversion recognized as a no-op.
  * DPX output could crash when writing crop images.
  * DPX input was not recognizing the proper image offset or originalsize.
  * oiiotool --fit wasn't padding correctly or modifying offsets properly.
* Build fixes:
  * Fix compiler error on MIPS platform.
  * Add FIELD3D_HOME description to 'make help'
  * Always use the HDF5 release libraries (for Field3D), not the debug ones.


Release 1.2.1 (5 Aug 2013)
---------------------------
* oiiotool: Fix memory leak when processing frame range.
* Docs improvement: full documentation of ImageBufAlgo.
* oiiotool --help now returns a success error code, not a failure.
* oiiotool: fix incorrect help message about --ociolook.
* oiiotool: Fix typo in "oiio:Colorspace" attribute name that interfered
  with correct color space conversion in --colorconvert.
* Many fixes for compiler warnings on various platforms: fmath_test.cpp,
  field3dinput.cpp, sysutil.cpp, argparse.cpp, oiiotool.cpp.
* Fixes problems on little-endian architecture with texture3d.cpp.
* Fix compilation problems on architectures with gcc, but no 'pause'
  instruction.
* Fix build search path for correctly finding libopenjpeg 1.5.
* Work around bug in older MSVC versions wherein Filesystem::open needed
  to explicitly seek to the beginning of a file.
* Build fixes for FreeBSD.
* Fix testsuite/oiiotool on Windows -- windows shell doesn't expand wildcards.


Release 1.2 (8 July 2013)
-------------------------
Major new features and improvements:
* New oiiotool commands:
    --swap        Exchanges the top two items on the image stack.
    --fit         Resize image to fit into a given resolution (keeping aspect).
    --ch          Select/cull/reorder/add channels within an image.
    --chappend    Merge two images by appending their color channels.
    --chnames     Rename some or all of the color channels in an image.
    --zover       Depth compositing
    --cadd        Add constant per-channel values to all pixels
    --cmul        Multiply an imge by a scalar or per-channel constant.
    --fillholes   Smoothly interpolate for hole filling.
    --resample    Similar to --resize, but just uses closest pixel lookup.
    --clamp       Clamp pixel values
    --rangeexpand Expand range for certain HDR processing
    --rangecompress  Compress range for certain HDR processing
    --unpremult   Divide colors by alpha (un-premultiply).
    --premult     Multiply colors by alpha.
    --kernel      Make a convolution kernel using a filter name.
    --convolve    Convolve two images.
    --blur        Blur an image.
    --unsharp     Sharpen an image using an unsharp mask.
    --paste       Paste one image on another.
    --mosaic      Create a rectilinear image mosaic.
    --transpose   Transpose an image (flip along the diagonal axis)
    --chsum       Sum all channels in each pixel
    --cshift      Circular shift an image pixels
    --fft --ifft  Forward and inverse Fourier transform
    --colorcount  Counts how many pixels are one of a list of colors.
    --rangecheck  Counts how many pixels fall outside the given range.
    --ociolook    Apply OpenColorIO "looks"
    --autotrim    Shrinks pixel data window upon output to trim black edges.
* oiiotool can loop over entire numeric frame ranges by specifying
  wildcard filenames such as "foo.#.tif" or "bar.1-10#.exr".
* oiiotool --frames and --framepadding give more explicit control over
  frame range wildcards.
* Significant performance improvements when reading and writing images
  using the ImageBuf::read and ImageCache::get_pixels interfaces, and in
  some cases also when using regular ImageInput.  This also translates
  to improved performance and memory use for oiiotool and maketx.
* At least doubled the performance of maketx for large images when run
  on multi-core machines.
* Significant performance improvements when using ImageBuf::Iterator
  or ConstIterator to traverse the pixels in an ImageBuf, and the iterators
  now support "wrap" modes (black, clamp, periodic, mirror).
* maketx --hicomp does "highlight compensation" by compressing the
  HDR value range prior to inter-MIP resizes, then re-expanding the range.
* Field3D writer (it could read f3d files before, but not write them).
* idiff can now compare that are not the same size (treating pixels
  beyond the pixel data window is being 0 valued).
* maketx --lightprobe turns a "lightprobe" iamge into a latlong environment
  map.
* Significant improvements and fixes to EXIF, IPTC, and XMP metadata
  reading and writing.
* Significant thread scalability improvements to TextureSystem and
  ImageCache.
* Huge overhaul of functionality, style, and performance of the
  entire ImageBufAlgo set of functions (see the "Public API changes"
  section below, and the imagebufalgo.h file for details).

Public API changes:
* ImageOutput semantics change: If the spec passed to open() has
  spec.format set fo UNKNOWN, then select a default data format for the
  output file that is "most likely to be able to be read" and/or "most
  typical for files of that format in the wild."  Also,
  ImageOutput::open() will never fail because a requested data format is
  unavailable; if the requested format is not supported, a reasonable
  alternate will always be chosen.
* ImageBuf has been changed to a "PIMPL" idiom, wherein all the
  internals are no longer exposed in the public API.  This allows us to
  change ImageBuf internals in the future without breaking API or link
  compatibility (and thus giving us more freedom to backport important
  improvements to prior releases).
* Overhaul of ImageBufAlgo functions: they all take an ROI parameter;
  use the DISPATCH macros to make them work with all pixel data types
  where practical (previously, many supported float only); use Iterator
  rather than getpixel/setpixel, leading to huge speed improvements;
  multithread when operating on enough pixels, leading to huge speed
  improvements; work on 3D (volume) images where applicable; always
  gracefully handle uninitialized dest image or undefined ROI.
* New ImageBufAlgo functions: channels(), channel_append(), mul(),
  paste(), zover(), add() and mul() varieties that that add/multiply a
  constant amount to all pixels, fillholes_pp(), resample(), clamp(),
  rangecompress(), rangeexpand(), make_kernel(), unsharp_mask(),
  transpose(), channel_sum(), circular_shift(), fft(), ifft(),
  color_count(), color_range_check(), nonzero_region().
  [look in imagebufalgo.h for documentation.]
* ImageBufAlgo::make_texture() allows you to do the same thing that
  maketx does, but from inside an application and without launching a
  shell invocation of maketx.  Two varieties exist: one that takes a
  filename and reads from disk, another that takes an ImageBuf already
  in memory.
* ImageBuf Iterator/ConstIterator now take "wrap" mode parameters that
  allow out-of-range iterators to be able to retrieve valid data. Supported
  wrap modes include black, clamp, periodic, and mirror.  This simplifies
  a lot of algorithms using IB::Iterator, they can now be written to
  rely on wrap behavior rather than being cluttered with checks for
  "if (it.exits())" clauses.
* ImageBufAlgo::computePixelHashSHA1 has been refactored to take ROI,
  a block size, and thread count, and thus can be parallelized with threads.
  The block size means that rather than computing a single SHA-1 for all
  the pixels, it computes separate (parallel) SHA-1 for each group of
  blocksize scanlines, then returns the SHA-1 of all the individual SHA-1
  hashed blocks. This is just as strong a hash as before, thought the value
  is different than doing the whole thing at once, but by breaking it into
  blocks the computation can be multithreaded.
* ImageBuf::swap() makes it easy to swap two ImageBuf's.
* ImageSpec::get_channelformats is now const (and always should have been).

Fixes, minor enhancements, and performance improvements:
* TextureSystem improvements:
  * Make sure "black" wrap wins out over "fill" value when they conflict
    (looking up an out-of-range channel beyond the pixel data window).
  * "mirror" wrap mode was slightly incorrect and has been fixed.
* oiiotool improvements:
  * oiiotool -v breaks down timing by individual function.
  * oiiotool has been sped up by forcing read of the whole image up front
      for reasonably-sized files (instead of relying on ImageCache).
  * oiiotool does not write output images if fatal errors have occurred.
  * oiiotool --diff: Better error handling, better error printing, and
    now it can compare images with differing data windows or channel
    numbers ("missing" channels or pixels are presumed to be 0 for the
    purposes of comparing).
  * oiiotool --resize (and --fit): properly handle the case of resizing
    to the same size as the original image.
  * oiiotool -d CHAN=TYPE can set the output for just one channel.
* ImageBufAlgo improvements:
  * Internal overhaul of IBA::resize to greatly speed it up.
  * Improve IBA::resize to handle the image edge better -- instead of
    clamping, just don't consider nonexistant pixels.
  * More careful selection of filter when resizing (IBA::resize, oiiotool
    --resize and --fit, and maketx).
  * Fix IBA::paste() error when the foreground image runs off the end of
    the background image.
* Bug fix when computing SHA-1 hash of 0-sized images.
* Image format support improvements:
  * Bug fix where some format readers (PNM, SGI, and IFF) would leave the
    file handle opened if the ImageInput was destroyed without calling
    close() first.  Now we guarantee that destroying the II always causes
    the file to close().
  * DPX: output allocation bug fix; properly set pixel aspect ratio for
    DPX write.
  * IFF: bug fix for endian swap for IFF file input.
  * JPEG2000: fix warnings, make sure event manager transfer object
    remains valid.
  * OpenEXR: when reading, was botching the ordering of per-channel data
    formats.
  * SGI write: bug fix for the case of 15 bpp RLE encoding, was
    double-swapping bytes.
  * Targa: more robust check for presence of alpha channels; bug fix where
    R and B channels were reversed for certain kinds of palette images.
  * TIFF: Store the orientation flag properly when outputting a TIFF file.
* maketx improvements:
  * maketx --chnames allows you to rename the channels when you create a
    texture.
  * maketx bug fixes: incorrect weighting when resizing MIP levels for
    latlong environment map images that could make visible artifacts
    on some intermediate MIP levels.
* encode_exif() didn't copy the right number of bytes.
* Python bindings: ImageSpec extra_attribs now properly responds to
  iterator calls.
* Fix bug in sRGB -> linear conversion.
* iv: make pixelview display coordinates & color even when outside the
  data window.

Build/test system improvements:
* Many fixes to improve builds and eliminate warnings on Windows and MinGW.
* Fix missing InterlockedExchangeAdd64 for Windows XP.
* New make/cmake boags: OIIO_BUILD_TOOLS=0 will exclude building of the
  command line tools (just build libraries), OIIO_BUILD_TESTS=0 will
  exclude building of unit test binaries.
* Improved matching of testsuite reference images on different platforms.
* Lots of fixes to compiler warnings on newer gcc and clang releases.
* Unit tests for Timer class.
* libOpenImageio/imagespeed_test benchmarks various methods of reading
  and writing files and iterating image pixels (to help us know what to
  optimize).
* If OpenSSL is available at build time, OIIO will use its SHA-1
  implementation instead of our own (theirs is faster). We still fall
  back on ours if OpenSSL is not available or when OIIO is built with
  USE_OPENSSL=0.
* Allow default the shared library suffix to be overridden with the
  CMake variable OVERRIDE_SHARED_LIBRARY_SUFFIX.
* Eliminated all uses of the custom DEBUG symbol, and instead use the
  more standard idiom "#ifndef NDEBUG".
* Compatibility fixes for Python3.
* MSVC 2008: Prevent a redefinition error when using boost::shared_ptr.
* Fixes for compatibility with libtiff 4.0.
* Fixes for MSVC debug mode having out-of-bound exceptions.
* Fixes for libjpeg 9.x.
* Compile to treat warnings as errors (you can disable this with
  STOP_ON_WARNING=0).
* New filter: "sharp-gaussian".
* Fix various Windows build errors.
* Improvements to the build when finding IlmBase/OpenEXR.
* Various fixes to compile on ARM architecture.
* Fixes to compile on ESA/390 mainframe (!).
* testtex --threadtimes, --trials, --iters, --nodup, --wedge.  These
  are helpful in using testtext to benchmark the texture system.
* Improvements to make more tests work properly on Windows.

Developer goodies:
* Improved ASSERT and DASSERT macros to not generate warning for certain
  debug compiles; key their debug behavior by the absence of the standard
  NDEBUG idiom rather than presence of a custom DEBUG symbol; rename the
  message variants ASSERT_MSG and DASSERT_MSG.
* Change the default for Sysutil::memory_used to report resident memory
  rather than virtual process size.
* Multithread/parallel version of utility function convert_image().
* imagebufalgo.h improvements and expansion of the various DISPATCH_*
  macros.
* New Filesystem utilities: parent_path(), get_directory_entries().
* New Strutil utilities: extract_from_list_string
* spinlock tweaks make it faster than TBB's spin locks!
* By default, we no longer build or use TBB (it's considered deprecated,
  but in 1.2 can still be turned on with USE_TBB=1).
* In fmath.h, added definitions for safe_inversesqrt, safelog, safe_log2,
  safe_log10, safe_logb.
* In typedesc.h, added TypeDesc::tostring() function.
* unordered_map_concurrent.h contains a template for a thread-safe
  unordered_map that is very efficient even for large number of threads
  simultaneously accessing it.
* Documentation: Finally, a chapter in the PDF docs that fully describes
  the ImageBuf class.


Release 1.1.13 (24 Jun 2013)
----------------------------
* Texture: make sure wrap mode "black" wins over "fill" value when they
  conflict.

Release 1.1.12 (20 Jun 2013)
----------------------------
* Fix oiiotool '#' wildcard, was broken on Windows.
* Fix an overflow problem that plagued 'maketx' when running on input
  larger than 32k x 32k (among other possible failures).

Release 1.1.11 (29 May 2013)
----------------------------
* IFF input: bug in endian swap of 16 bit IFF files.
* oiiotool: fix a minor bug where tiled files were output inappropriately.
  (Had been patched in master some time ago.)
* fmath.h additions: safe_inversesqrt, safe_log, safe_log2, safe_log10,
  safe_logb.  These are versions that clamp their inputs so that they
  can't throw exceptions or return Inf or NaN.
* Fix to not incorrectly print ImageCache stats for certain broken files.

Release 1.1.10 (13 Apr 2013)
----------------------------
* IBA::fillholes() and oiiotool --fillholes can smoothly fill in alpha
  holes with nearby colors. Great for extrapolating the empty areas of
  texture atlas images so that filtered texture lookups pull in a plausible
  color at part edges.
* IBA::clamp and oiiotool --clamp clamp pixel values to a scalar or
  per-channel min and/or max, or clamp alpha to [0,1].
* IBA::rangecompress()/rangeexpand(), and oiiotool --rangecompress /
  --rangeexpand compress the excess >1 values of HDR images to a log
  scale (leaving the <= 1 part linear), and re-expand to the usual
  linear scale.  This is very helpful to reduce ringing artifacts that
  can happen when an HDR image is resized with a good filter with negative
  lobes (such as lanczos3), by doing a range compression, then the resize,
  then range expansion. It's not mathematically correct and loses energy,
  but it often makes a much more pleasing result.
* maketx --hicomp does highlight compression -- automatically doing a
  range compress before each high-quality resize step, and then a
  range expansion and clamp-to-zero (squash negative pixels) after
  each resize.
* DPX - when writing DPX files, properly set the pixel aspect ratio.

Release 1.1.9 (2 Apr 2013)
--------------------------
* IBA::resize and oiiotool --resize/--fit: Bug fixes to resize filter
  size selection fix artifacts wherein extreme zooms could end up with
  black stripes in places where the filters fell entirely between samples.
* oiiotool --fit: fix subtle bugs with aspect ratio preservation for
  images with differing data and display windows; and allow "filter=..."
  to override the default filter used for fit.
* Resize improvement: fix potential artifacts at the image edges resulting
  from odd clamping behavior.
* Even more frame range wildcard flexibility with oiiotool --frames and
  --framepadding options.
* oiiotool --resize and --fit (and the underlying IBA::resize()) have been
  sped up significantly and are now also multithreaded.

Release 1.1.8 (15 Mar 2013)
---------------------------
* oiiotool --chappend (and ImageBufAlgo::channel_append() underneath) allow
  you to take two files and concatenate their color channels.
* oiiotool --chnames allows you to rename some or all of a file's color
  channels.
* oiiotool can loop over entire frame ranges by specifying wildcard
  filenames such as "foo.#.tif" or "bar.1-10#.exr".
* Cmake: OVERRIDE_SHARED_LIBRARY_SUFFIX allows the shared library suffix
  to be overridden (e.g., if you need to force .so names on OSX rather
  than the usual default of .dylib).
2013-10-12 22:13:44 +00:00
..
aalib Resolves: 2013-04-06 20:27:16 +00:00
AfterShotPro Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +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 Replace forward definition with real include as a complete type is 2013-08-27 15:52:06 +00:00
artist Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
asymptote Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
autopano-sift-C Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
autotrace Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
aview Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
babl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +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 Update to 2.68a 2013-10-12 22:11:00 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
blinkentools Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
cairo Changes 1.12.16: 2013-08-31 22:19:32 +00:00
cairo-gobject Revbump after cairo update 2013-09-02 19:50:38 +00:00
cairomm Revbump after cairo update 2013-09-02 19:50:38 +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 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
camediaplay Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
camlimages Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
cdlabelgen Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
Cenon Massive revbump after updating graphics/ilmbase, graphics/openexr, textproc/icu. 2013-05-09 07:39:04 +00:00
cheese Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
cinepaint Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
circos Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
claraocr Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
clutter Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
clutter-box2d Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
clutter-gtk Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
clutter-mx Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
cnxtview Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
cogl Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
Coin Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
comix Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
compface Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
cpia2view Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
cqcam Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
CRWInfo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
darktable Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
dcraw Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
deforaos-camera Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
denemo Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
dia Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
dia-python Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
digikam Switch from mysql51 to mysql55 (current pkgsrc default). 2013-09-10 11:23:20 +00:00
digikam-doc-kde3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
digikam-kde3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
djview4 Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +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 recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
dxsamples Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
edje Fix python-enabled build. 2013-07-30 09:20:02 +00:00
enblend-enfuse Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
eog Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
eog-plugins Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
eog-plugins-map Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
eog3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
epeg Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
evas Fix giflib fallout. 2013-08-30 22:35:53 +00:00
evas-buffer Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
evas-edb Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
evas-eet Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
evas-gif Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
evas-jpeg Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
evas-pmaps Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
evas-png Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
evas-software-x11 Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
evas-svg Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
evas-tiff Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
evas-xpm Updating enlightenment libraries to 1.7.7, add missing enlightenment 0.17.3 2013-06-16 18:56:04 +00:00
ewipe Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
exif Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
exifprobe Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
exiftags Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
exiv2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
exiv2-organize recursive bump from boost-lib shlib update. 2013-02-15 11:53:59 +00:00
extrema Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
f-spot Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 2.9.3 2013-07-24 11:01:59 +00:00
flphoto Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
fly recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
fnlib Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
fotoxx Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
frameworks Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
freeglut LICENSE=x11 2013-05-05 21:07:53 +00:00
freetype
freetype-lib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
freetype-utils Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
freetype2 FreeType 2.4.12 has been released. A major new feature is a new parsing and hinting engine for CFF fonts, contributed by Adobe in collaboration with Google. It was my job the last few months to fully adapt the code to FreeType, and we are very pleased with the results. You might also read the blog entries from Adobe and Google. 2013-08-04 10:38:01 +00:00
fujiplay Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
g2 recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
gd recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
gdchart recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
gdk-pixbuf Recursive bump for png-1.6. 2013-02-16 11:17:56 +00:00
gdk-pixbuf2 backout erroneous patch to suppres g-ir-scanner warnings 2013-08-27 05:22:12 +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 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gegl Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
geomview Resolves: 2013-04-06 20:27:16 +00:00
get_ds7 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
gfract Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gif2png Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
gif320 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
giflib Changes 5.0.5: 2013-08-31 18:41:33 +00:00
giflib-util Changes 5.0.5: 2013-08-31 18:41:33 +00:00
gifsicle Changes 1.71: 2013-09-14 09:13:26 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
gimp Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gimp-color-manager Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gimp-docs-de Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-en Add docbook-xsl build dependency. 2013-08-15 16:26:07 +00:00
gimp-docs-es Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-fr Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-it Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-ja Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-ko Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-nl Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-nn Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-pl Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-ru Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-sv Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-docs-zh_CN Remove unused distinfo files. 2013-07-25 08:36:37 +00:00
gimp-exif-browser Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gimp-fix-ca Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
gimp-rawphoto Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gimp-refocus-it Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gimp-resynthesizer Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gimp-ufraw Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
giram Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gle If you change the buildlink3.mk's included in the Makefile you need to 2013-04-24 04:32:34 +00:00
glew Changes 1.10.0: 2013-08-04 18:00:52 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
glm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +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
gmngview Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
GMT recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +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 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 Update gnome-icon-theme-symbolic to 3.8.3 2013-09-07 17:37:02 +00:00
gnuplot Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gocr Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
goocanvas Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
goocanvas2 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
goocanvasmm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gource Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
gqview Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gqview-devel Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
grap Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
GraphicsMagick Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
graphviz Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
graphviz-dot-mode Revbump all elisp packages after emacs changes. 2013-02-17 19:17:55 +00:00
gri Fix autoconf invocation. 2013-09-17 21:10:55 +00:00
gst-plugins0.10-cairo Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +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 Import gst-plugins1-cairo-1.0.8 as graphics/gst-plugins1-cairo. 2013-08-03 04:45:42 +00:00
gst-plugins1-jpeg Import gst-plugins1-jpeg-1.0.3 as graphics/gst-plugins1-jpeg. 2012-11-29 08:40:23 +00:00
gst-plugins1-png reset PKGREV for base pkg update 2013-03-15 18:36:47 +00:00
gthumb Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gthumb3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gtkam Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gtkglext Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gtkimageview Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
gtksee Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
guile-cairo Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
GUIlib Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
gwenview Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
gwenview-i18n-kde3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
gwenview-kde3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +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 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
hp2xx Resolves: 2013-04-06 20:27:16 +00:00
hugin Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
icon-naming-utils Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
iGMT Revbump for all packages that have USE_TOOLS+=gs 2013-04-24 10:06:47 +00:00
ilmbase Version 2.0.1 2013-07-31 18:25:28 +00:00
ImageMagick Update ImageMagick to 6.8.6-9. 2013-08-27 08:13:57 +00:00
ImageViewer Massive revbump after updating graphics/ilmbase, graphics/openexr, textproc/icu. 2013-05-09 07:39:04 +00:00
imlib Make sure to include PrintGifError here too. Bump revision. 2013-08-17 15:42:28 +00:00
imlib-gtk Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
imlib2 don't propagate dependency on image format libs, hopefully avoids 2013-07-17 13:00:05 +00:00
impress Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
inkscape Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
ivtools Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
jasper Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +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 Fix building libjbig85; don't overwrite CC and CFLAGS. 2013-08-04 09:22:25 +00:00
jhead Update to 2.97: 2013-02-07 10:28:39 +00:00
jpeg Make jpeglib.h work in files that don't include stdio.h first. 2013-10-11 14:54:05 +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.3.0: 2013-04-01 18:48:44 +00:00
jpegpixi Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
jpegquality Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
kamera Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kbarcode recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
kcolorchooser Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kde-base-artwork Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kdegraphics-mobipocket Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kdegraphics-strigi-analyzer Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kdegraphics-thumbnailers Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kdegraphics3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
kgamma Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kipi-plugins Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
kipi-plugins-calendar-kde3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
kipi-plugins-kde3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
kolourpaint Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
koverartist Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
kphotoalbum Explicitly depend on lcms. 2013-10-11 14:53:00 +00:00
kphotobook recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
kphotools recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
kruler Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
ksaneplugin Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
ksnapshot Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
lasem Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
lcms fix possible buffer overflows in cmd line tools found by Pedro Ribeiro 2013-08-07 16:46:23 +00:00
lcms2 Update to 2.5: 2013-07-06 23:20:56 +00:00
lensfun Fix building on Darwin 2013-08-04 19:12:00 +00:00
lib3ds Fix build with automake-1.13. 2013-01-23 17:26:27 +00:00
libart Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
libcaca Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
libexif Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
libexif-gtk Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libgdiplus Update MASTER_SITES. 2013-09-19 11:55:15 +00:00
libgexiv2 Really link with ${CXX} and don't append -lstdc++ by hand. 2013-05-04 12:46:42 +00:00
libggi Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
libggigcp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
libggimisc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
libggiwmh Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
libgii Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
libgiigic Use --mode=link argument for libtool, it gets confused during configure. 2013-09-10 14:20:47 +00:00
libgnomecanvas Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libgnomecanvasmm Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libjpeg-turbo Make jpeglib.h work in files that don't include stdio.h first. 2013-10-11 14:54:05 +00:00
libkdcraw Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
libkdcraw-kde3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
libkexif recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
libkexiv2 Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
libkexiv2-kde3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
libkface Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
libkipi Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
libkipi-kde3 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
libksane Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +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 Recursive bump for png-1.6. 2013-02-16 11:17:56 +00:00
libpuzzle recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
libscigraphica Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
libungif Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +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 Changes 0.3.1: 2013-09-01 09:53:50 +00:00
libwmf Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +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 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
magicpoint recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +00:00
mandelbulber Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
Mesa MesaLib needs glproto>=1.4.11 per 2013-07-06 21:56:13 +00:00
MesaDemos
MesaLib Treat FreeBSD and NetBSD uniformly. This fixes building the package on FreeBSD. 2013-09-23 02:07:00 +00:00
metacam Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
mgl Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
mng Update to 2.0.2. 2013-10-09 17:38:26 +00:00
mpeg2codec Remove xextproto/buildlink3.mk in most cases where it occurs with 2012-10-23 10:24:02 +00:00
mpgtx Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
mscgen recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
mypaint Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
ncview recursive bump from hdf5 shlib major bump. 2013-09-01 12:14:06 +00:00
netpbm Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +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 pango-1.36.0 2013-10-10 14:41:44 +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 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
opendis Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
openexr Version 2.0.1 2013-07-31 18:26:07 +00:00
openimageio Update to 1.2.2 2013-10-12 22:13:44 +00:00
openjpeg Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
openjpeg15 Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
OpenRM Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
optipng Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
osg Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
oxygen-icons Update to KDE SC 4.10.3 2013-05-21 12:49:28 +00:00
p5-Barcode-Code128 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-cairo Revbump after cairo update 2013-09-02 19:50:38 +00:00
p5-Chart Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Chart-ThreeD Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-clutter Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
p5-GD recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
p5-GD-Barcode Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-GD-Graph-sparklines Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-GD-Graph3d Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-GD-SecurityImage Update to 1.72: 2013-09-05 18:36:04 +00:00
p5-GD-SVG Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-GDGraph Changes 1.48: 2013-09-02 21:27:23 +00:00
p5-GDGraph-boxplot Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-GDTextUtil Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-GIFgraph Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Gnome2-Canvas Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
p5-GraphicsMagick Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
p5-GraphViz Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-GraphViz2 Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Image-BMP Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Image-ExifTool Version 9.27 (production release) 2013-08-04 18:28:51 +00:00
p5-Image-Imlib2 Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
p5-Image-Info Update to 1.36: 2013-09-05 19:46:36 +00:00
p5-Image-Size Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-PerlMagick Reset PKGREVISION after base package update. 2013-07-06 23:27:01 +00:00
p5-RRDTool-OO Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-SVG Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-SWF-File Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
p5-Template-GD Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +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 Reset maintainer to "pkgsrc-users@NetBSD.org". 2013-03-02 10:44:33 +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 recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +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 Reset PKGREVISION by updating of both php53 and php54. 2013-06-07 13:55:45 +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 recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
ploticus-examples Update to 2.00 2013-06-30 15:17:18 +00:00
plotmtv Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
plotutils Recursive bump for png-1.6. 2013-02-16 11:17:56 +00:00
png Update to 1.6.6: 2013-09-30 18:17:03 +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.67: 2013-09-01 07:34:35 +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 all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
pstoedit recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
py-aafigure Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
py-actdiag Update py-actdiag to 0.4.3 2013-09-11 05:45:09 +00:00
py-biggles Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
py-blockdiag Update py-blockdiag to 1.2.4. 2013-09-11 02:56:10 +00:00
py-cairo Revbump after cairo update 2013-09-02 19:50:38 +00:00
py-gd recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
py-gdchart recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
py-gnuplot Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
py-goocanvas Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
py-gtkglext Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
py-imaging Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
py-imagingtk Needs tk. 2013-06-13 14:26:14 +00:00
py-matplotlib update to 1.2.1 2013-07-24 11:13:11 +00:00
py-matplotlib-gtk2 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
py-matplotlib-tk sync w/ base pkg 2013-07-24 11:13:56 +00:00
py-nwdiag Update py-nwdiag to 0.9.4. 2013-09-11 05:54:45 +00:00
py-OpenGL Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
py-piddle Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
py-pycha patch for chavier in pycha 2013-08-15 20:57:14 +00:00
py-pydot allows to easily create both directed and non directed graphs from Python. 2013-07-22 12:16:18 +00:00
py-pyfits Use REPLACE_PYTHON. Set LICENSE. Bump PKGREVISION. 2012-10-16 08:00:52 +00:00
py-seqdiag require blockdiag>=1.2.4 2013-09-11 05:42:38 +00:00
py-sk1libs Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
py-uniconvertor Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
qcomicbook To quote an earlier commit message: 2013-08-22 09:21:57 +00:00
qimageblitz Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
qiv Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
qiviewer Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +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
rabbit allow ruby-2.0 2013-09-03 10:51:03 +00:00
radiance Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
rayshade Recursive bump for png-1.6. 2013-02-16 11:18:58 +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 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
ruby-chunky_png Update ruby-chunky_png to 1.2.8. 2013-09-15 13:33:05 +00:00
ruby-color update ruby-color to 1.4.2. 2013-09-15 13:34:36 +00:00
ruby-color-japanese
ruby-color-tools
ruby-gd recursive bump from graphics/gd shlib major bump. 2013-09-04 12:31:24 +00:00
ruby-gnome2-cairo-gobject Revbump after cairo update 2013-09-02 19:50:38 +00:00
ruby-gnome2-gdk3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
ruby-gnome2-rsvg Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
ruby-gnuplot Update ruby-gnuplot to 2.6.2. 2013-01-14 06:14:03 +00:00
ruby-imlib2 Tweak GEM_CLEANBUILD for ruby200. 2013-07-21 02:43:36 +00:00
ruby-mini-magick Update ruby-mini-magick to 3.6.0. 2013-09-15 13:47:23 +00:00
ruby-oily_png Update ruby-oily_png to 1.1.0. 2013-03-11 09:18:28 +00:00
ruby-opengl Fix build problem with ruby18-base, using modern rules from rubygems 2013-03-07 17:05:42 +00:00
ruby-rcairo Revbump after cairo update 2013-09-02 19:50:38 +00:00
ruby-RMagick Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
scidavis Bump PKGREVISION for libXft changes for NetBSD native X support on 2013-06-06 12:53:40 +00:00
scigraphica Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
scrot Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
SDL_image Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
shotwell Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
shotwell-gtk3 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
showimg recursive bump for libmng-2.0.2 shlib major bump and dependency change 2013-10-09 17:39:01 +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 Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
skencil Replace tcl with tk as dependency. The former is not enough. 2013-06-13 14:26:35 +00:00
spcaview Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
svgpart Recursive revbump from graphics/giflib update to 5.0.4. 2013-07-05 13:29:28 +00:00
tango-icon-theme Try to fix the fallout caused by the fix for PR pkg/47882. Part 3: 2013-06-04 22:15:37 +00:00
tesseract Add a number of includes hidden by libstdc++'s name space pollution. 2013-04-29 21:31:09 +00:00
tex-a2ping Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
tex-a2ping-doc
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
tex-eepic
tex-eepic-doc
tex-epstopdf Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
tex-epstopdf-doc
tex-metapost Fixes: 2013-04-06 03:45:05 +00:00
tex-metapost-doc
tex-mptopdf Update tex-mptopdf{,-doc} to 2012. 2012-10-14 21:59:40 +00:00
tex-mptopdf-doc Update tex-mptopdf{,-doc} to 2012. 2012-10-14 21:59:40 +00:00
tex-pdfcrop Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +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-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 Add upstream candidate patch for CVE-2013-4243. PKGREVISION -> 6 2013-09-21 18:47:05 +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 "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
tuxpaint Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
tuxpaint-config Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
tuxpaint-stamps Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
ucview Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
unicap Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
urt Recursive bump for png-1.6. 2013-02-16 11:18:58 +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.18 2013-07-24 11:03:59 +00:00
vid Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
viewfax Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
viewnior Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
vigra Massive revbump after updating graphics/ilmbase, graphics/openexr, textproc/icu. 2013-05-09 07:39:04 +00:00
vnc2swf "Each sed command should appear in an assignment of its own." 2013-04-06 21:07:31 +00:00
vp Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
vtk Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +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 Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
x11rec Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
xart Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
xbmbrowser Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-06 14:10:39 +00:00
xdot Import xdot-20121124 as graphics/xdot. 2013-01-05 22:12:33 +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 pango-1.36.0 2013-10-10 14:41:44 +00:00
xfig Recursive bump for png-1.6. 2013-02-16 11:18:58 +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 all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
xplot-devel Bump all packages for perl-5.18, that 2013-05-31 12:39:57 +00:00
xsane Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
xv Recursive bump for png-1.6. 2013-02-16 11:18:58 +00:00
xzgv Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
zphoto Recursive revbump from pango-1.36.0 2013-10-10 14:41:44 +00:00
Makefile Add gst-plugins1-cairo 2013-08-03 08:30:46 +00:00