Commit graph

8359 commits

Author SHA1 Message Date
dholland
04c1877a53 Update to 3.9.3, fixing CVE-2010-1411. Other changes are minor bug fixes;
gory details at http://www.remotesensing.org/libtiff/v3.9.3.html.
2010-06-15 05:57:45 +00:00
drochner
5d2c833e95 ride on the png revbump and update to 0.1.2
changes: some fixes and optimizations (API change)
2010-06-14 18:48:32 +00:00
obache
f7f2e841fb Update ruby-opengl to 0.60.1.
While here,
 * set LICENST=mit
 * remove patch-a{a,b} from distinfo, it should be removed with update to 0.60.

0.60.1 (February 16, 2009)
This is maintenance release.

 Changes in this release:
 Bugfixes
 Proper support for ruby 1.9/1.9.1+
 Updated OpenGL enumerators in preparation for OpenGL 3.0
2010-06-14 02:25:01 +00:00
wiz
e8d8834f6a Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
2010-06-13 22:43:46 +00:00
wiz
e07a1fd986 Update to 1.4.2. Shared library name changes from libpn12.* to libpng14.*,
so bump ABI depends.

Remove libpng.* from package, instead use buildlink to help some packages
that are looking for the library themselves instead of using pkg-config
or libpng-config.

Changes:

version 1.4.2:
  Restored the macro definition of png_check_sig().
  Conditionally compile an "else" statement in png_decompress_chunk().
  Documented the fact that png_set_dither() was disabled since libpng-1.4.0.
  Reenabled png_set_dither() but renamed it to png_set_quantize() to reflect
    more accurately what it actually does.  At the same time, renamed
    the PNG_DITHER_[RED,GREEN_BLUE]_BITS macros to
    PNG_QUANTIZE_[RED,GREEN,BLUE]_BITS.
  Added some "(long)" typecasts to printf calls in png_handle_cHRM().
  Relaxed the overly-restrictive permissions of some files.
  Added the "vstudio" project to replace "visualc6" and "visualc71" which
    will be removed from libpng-1.5.0.
  Demonstrate in example.c that lang_key should be initialized.
  Set PNG_NO_READ_BGR, PNG_NO_IO_STATE, and PNG_NO_TIME_RFC1123 in
    contrib/pngminim/decoder/pngusr.h to make a smaller decoder application.
  Include png_reset_zstream() in png.c only when PNG_READ_SUPPORTED is defined.
  Removed dummy_inflate.c and uncompr.c from contrib/pngminim/encoder
  Corrected PNG_UNKNOWN_CHUNKS_SUPPORTED to PNG_HANDLE_AS_UNKNOWN_SUPPORTED
    in gregbook/readpng2.c
  Corrected protection of png_get_user_transform_ptr. The API declaration in
    png.h is removed if both READ and WRITE USER_TRANSFORM are turned off
    but was left defined in pngtrans.c
  Moved declarations of umsg[] inside the proper #ifdef blocks in pngrutil.c

version 1.4.1 [February 25, 2010]

  Updated CMakeLists.txt for consistent indentation and to avoid an
    unclosed if-statement warning (Philip Lowman).
  Revised Makefile.am and Makefile.in to remove references to Y2KINFO,
    KNOWNBUG, and libpng.la (Robert Schwebel).
  Revised the makefiles to install the same files and symbolic
    except for libpng.la and libpng14.la.
  Make png_set|get_compression_buffer_size() available even when
    PNG_WRITE_SUPPORTED is not enabled.
  Revised Makefile.am and Makefile.in to simplify their maintenance.
  Revised the makefiles to install a link to libpng14.so.14.1
  Removed png_set_premultiply_alpha() from scripts/*.def
  Revised png_decompress_chunk() to improve speed and memory usage when
    decoding large chunks, using a two-pass method suggested by John Bowler.
  Added png_set|get_chunk_malloc_max() functions.
  Relocated "int k" declaration in pngtest.c to minimize its scope.
  Folded some long lines in the source files.
  Added defineable PNG_USER_CHUNK_CACHE_MAX and PNG_USER_CHUNK_MALLOC_MAX
  Eliminated use of png_ptr->irowbytes and reused the slot in png_ptr as
    png_ptr->png_user_chunk_malloc_max.
  Return allocated "old_buffer" in png_push_save_buffer() before calling
    png_error(), to avoid a potential memory leak.
  Removed the cbuilder5 project, which has not been updated to 1.4.0.
  Complete rewrite of two-pass png_decompress_chunk() by John Bowler.
  Removed obsolete unused MMX-querying support from contrib/gregbook
  Removed the AIX redefinition of jmpbuf in png.h
  Define _ALL_SOURCE in configure.ac, makefile.aix, and CMakeLists.txt
    when using AIX compiler.
  Removed unused gzio.c from contrib/pngminim gather and makefile scripts


Changes to Libpng from version 1.2.42 to 1.4.0 (January 4, 2010)

Libpng-1.4.0 was released by the PNG Development Group on January
3, 2010.  Important new features include support for the iTXt chunk
and a function for limiting the amount of memory that a possibly
malicious compressed chunk can consume.  Some long-deprecated functions
and features have been removed.  A new private header file that is
not visible to applications has been created, to improve our ability
to maintain binary compatibility among future libpng versions.

Specifically,

1. Private libpng prototypes and macro definitions were moved from
png.h and pngconf.h into a new pngpriv.h header file that is not
visible to applications.

2. Some obsolete/deprecated macros and functions have been removed.

   a. We eliminated the obsolete, unused pnggccrd.c and pngvcrd.c files
      and related makefiles.

   b. We removed the typecasted NULL definitions such as

          #define png_voidp_NULL    (png_voidp)NULL

      If you used these in your application, just use NULL instead.

   c. We eliminated the PNG_1_0_X and PNG_1_2_X macros.

   d. We eliminated the PNG_LEGACY_SUPPORTED macro.

   e. We removed many WIN32_WCE #ifdefs.

   f. We removed the functions png_read_init(info_ptr),
      png_write_init(info_ptr), png_info_init(info_ptr),
      png_read_destroy(), and png_write_destroy().
      They have been deprecated since libpng-0.95.

   g. We removed the png_permit_empty_plte() function. It has been
      deprecated since libpng-1.0.9.  Use png_permit_mng_features() instead.

   h. We removed the obsolete stub functions png_get_mmx_flagmask(),
      png_set_mmx_thresholds(), png_get_asm_flags(),
      png_get_mmx_bitdepth_threshold(), png_get_mmx_rowbytes_threshold(),
      png_set_asm_flags(), and png_mmx_supported()

   i. We removed the obsolete png_check_sig(), png_memcpy_check(), and
      png_memset_check() functions.  Instead use !png_sig_cmp(),
      png_memcpy(), and png_memset(), respectively, i.e.,

      replace
        png_check_sig(buf, 8)
      with
        png_sig_cmp(buf, 0, 8) == 0

      replace
        png_memcpy_check(png_ptr, dest, src, length)
      with
        png_memcpy(dest, src, length)

      and replace
        png_memset_check(png_ptr, dest, value, length)
      with
        png_memset(dest, value, length)

   j. We removed support for global arrays to improve thread safety.

   k. We removed support for numbered error messages by default, since we
      never got around to actually numbering the error messages. The function
      png_set_strip_error_numbers() was removed from the library by default.

   l. The png_zalloc() and png_zfree() functions are no longer exported.
      The png_zalloc() function no longer zeroes out the memory that it
      allocates.

   m. The function png_set_gray_1_2_4_to_8() was removed. It has been
      deprecated since libpng-1.0.18 and 1.2.9, when it was replaced with
      png_set_expand_gray_1_2_4_to_8() because the former function also
      expanded palette images.

3. Several function prototypes were changed.

   a. We changed the prototype for png_malloc() from
      png_malloc(png_structp png_ptr, png_uint_32 size) to
      png_malloc(png_structp png_ptr, png_alloc_size_t size)

   b. We changed the prototypes of png_get_compression_buffer_size() and
      png_set_compression_buffer_size() to work with png_size_t instead of
      png_uint_32.

4. We added some new features:

   a. We enabled iTXt chunk support by default.  This changes the png_text
      structure by adding the itxt_length, lang, and lang_key members.

   b. We added the functions png_set_benign_errors(), png_benign_error(),
      and png_chunk_benign_error().  With these, you can choose to treat
      certain normally fatal errors as nonfatal.

   c. Support for setting the maximum amount of memory that the application
      will allocate for reading chunks was added, as a security measure.
      The functions png_set_chunk_cache_max() and png_get_chunk_cache_max()
      were added to the library.

   d. We added the png_calloc() function and used it in place of
      of "png_malloc(); png_memset();" except in the case in png_read_png()
      where the array consists of pointers; in this case a "for" loop is used
      after the png_malloc() to set the pointers to NULL, to give robust.
      behavior in case the application runs out of memory part-way through
      the process.

   e. We implemented support for I/O states by adding png_ptr member io_state
      and functions png_get_io_chunk_name() and png_get_io_state() in pngget.c

   f. We added PNG_TRANSFORM_GRAY_TO_RGB to the available high-level
      input transforms.

5. Other changes

   a. We changed the names of the png_struct and info_struct members "trans"
      and "trans_values" to "trans_alpha" and "trans_color", respectively.

   b. Checking for and reporting of errors in the IHDR chunk is more thorough.

   c. We removed the trailing '.' from the warning and error messages.

   d. Direct access to png_ptr->jmpbuf has been deprecated since libpng
      version 1.0.6, and libpng now generates a warning about it.

      To avoid such warnings, change
        setjmp(png_ptr->jmpbuf)

      to
        setjmp(png_jmpbuf(png_ptr))
2010-06-13 22:42:10 +00:00
wiz
c4d28804b9 Fix build with latest XShm from xsrc. Hopefully still works with other
Xs. (If not, fix emulators/vice as well, same type of fix.)
2010-06-12 14:05:40 +00:00
drochner
13b42fb41e update to 2.30.1
This switches to the gnome-2.30 release branch
2010-06-11 13:22:51 +00:00
adam
474903a4a3 Changes 0.20:
* Exiv2 utility
  - %a broken in rename
  - It should be possible to insert newlines in text strings.
  - Exif.Photo.UserComment unicode comment doesn't work
  - Added -g option to 'grep' info for individual tags.

* Exiv2 library
  - Pentax 645D makernote update
  - Update of Pentax makernote
  - Nikon Capture NX won't save a NEF file manipulated with exiv2 from SVN
  - Padding of XMP data results in invalid XMP JPEG segment larger
    than 65535 bytes
  - Add XMP support for src/metacopy
  - src/psdimage.cpp: operands of ? are integers of different signs
  - Wrong conversion of IPTC SpecialInstructions in copyIptcToXmp()
  - LLVM clang: error: default initialization of an object of const type
    'class Exiv2::IptcData const' requires a user-provided default constructor.
  - Exif.Image.SubIFDs should support more than 4 sub-IFDs
  - Nikon Makernote tags regression in exiv 0.19
  - ShutterSpeedValue should be a signed rational
  - Allow XMP sidecar files which start with a UTF-8 BOM
  - Image file gets deleted when writing to it
  - Writing to read-only TIFF-like file fails
  - "TIFF-safe" setExifData variant
  - Optimize binary array elements
  - Write support for Olympus RAW ORF files
  - Incorrect Unicode encoding of Exif UserComment tag
  - LensType not reported for Pentax K-x
  - Add support for makernote of Sony ARW files
  - Unable to write GPS data in ORF files with digikam
2010-06-11 10:42:38 +00:00
wiz
31c47ebef1 Make pkglint more happy. 2010-06-10 20:51:05 +00:00
wiz
e9f8a3b108 Include desktopdb.mk for .desktop files. 2010-06-10 20:08:50 +00:00
wiz
22877cbbbc Include bsd.fast.prefs.mk before using ${PKG_INFO}. 2010-06-08 15:13:01 +00:00
wiz
c579d78d1c Fix dependency pattern. 2010-06-08 13:52:57 +00:00
obache
c852e57edc * enable jbig support, add dependency to jbigkit.
* ghostscript-font-std part had been moved from ghostscript-fonts to
  urw-fonts.  add dependency on urw-fonts and adjust gs-font-dir.

Bump PKGREVISION (and ABI bump).
2010-06-05 13:30:33 +00:00
wiz
9b8a77dc06 Fix included path to ghostscript fonts by giving explicit path.
From obache@
2010-06-05 12:36:08 +00:00
wiz
deed346e0f Avoid calling deprecated GTK2 macros. Bump PKGREVISION.
Set LICENSE.
2010-06-05 12:08:46 +00:00
wiz
9565f360d1 Fix PLIST for doxygen-1.6.3 and DEPEND on that version.
Bump PKGREVISION.
2010-06-05 11:47:57 +00:00
wiz
f876d7432c + gnome-icon-theme-symbolic 2010-06-05 10:26:11 +00:00
wiz
b1de64d1ef Initial import of gnome-icon-theme-symbolic-2.30.0:
This package contains the symbolic icons for the GNOME icon sets.
2010-06-05 10:25:43 +00:00
wiz
4a1b1ef047 + gnome-icon-theme-extras 2010-06-05 10:22:59 +00:00
wiz
1ae8894164 Initial import of gnome-icon-theme-extras-2.30.1:
This package contains the extra icons for the GNOME icon sets.
2010-06-05 10:22:17 +00:00
wiz
980c687af9 Remove some unneeded tools. Stop installing files into a
directory GNOME stopped using. Override two more start-here icons
with the NetBSD logo.
Bump PKGREVISION.
2010-06-05 10:16:37 +00:00
wiz
b27d1780d1 Update to 2.30.3, set LICENSE.
2.30.3
  - add high resolution volume icons. bug #618021
2.30.2.1
  - revert filename change for mail-mark-not(-)junk. bug #616954
  - remove old ruby render script
  - build system fixes
2.30.2
  - tweaks to edit-delete
  - publicshare folder to use same metaphor as emblem-shared
  - new icon avatar-default to replace stock_person
  - remove media-zip and jaz.
  - lighten up displays and computers (bug #616325)
2.30.1
  - re-add mail icons
  - sharper print preview icons
  - remove shadows form some 16x16s
  - re-add text-x-preview (no clipping rectangle though) bug #615194
  - nautilus app icon fixes
  - new edit-delete metaphor (x). http://www.bomahy.nl/hylke/blog/remove-the-remove-icon/
2.30.0
  - Bengali translation
  - remove arrows from format-justify-*
2.29.3
  - --enable-icon-mapping works (thanks Luca)
  - edit-find and edit-find-replace finetuned
  - redundant system-search tweaked rather than dropped for now

2.29.2
  - bugfix: misplaced process-working

2.29.1
  - added .pc file back bug #606245
  - missing emoticons
  - accessories-dictionary at 24x24px
  - highres web-browser
  - changes-prevent and changes-allow to replace stock-lock icons. bug #611480
  - progress-working from 2.28

2.29.0
  - initial release of the highres-laden icon theme
2010-06-05 10:05:38 +00:00
minskim
d1b5e7df10 Add tex-asyfig{,-doc}. 2010-06-02 20:11:25 +00:00
minskim
4a53001113 Import tex-asyfig-doc-0.1c as graphics/tex-asyfig-doc.
This is documentation for tex-asyfig.
2010-06-02 20:09:09 +00:00
minskim
b0fd3e1c9b Import tex-asyfig-0.1c as graphics/tex-asyfig.
The package provides a means of reading Asymptote figures from separate
files, rather than within the document, as is standard in the asymptote
package, which is provided as part of the Asymptote bundle. The
asymptote way can prove cumbersome in a large document; the present
package allows the user to process one picture at a time, in simple test
documents, and then to migrate (with no fuss) to their use in the target
document.
2010-06-02 20:08:58 +00:00
markd
0c9976ffdf Update to KDE SC 4.4.4
* Several bugs in filename sorting in the Dolphin file manager have been
  fixed
* Issues with encoded filenames in ZIP archives have been fixed
* A number of bugs in games, such as KMines, KNetwalk and LSkat and
  KSpaceDuel have been fixed
The changelog lists more
2010-06-02 10:14:14 +00:00
obache
37e28d70fb Update clutter-gtk to 0.10.4.
Clutter-GTK 0.10.4      18/03/2010
==================================

  * Depend on gtk+ >= 2.19.5

  * Depend on clutter >= 1.2.0

  * Fix introspection annotations for GtkClutterEmbed,
    GtkClutterScrollable and GtkClutterZoomable

  * Do no use deprecated gtk+ API

  * Documentation fixes
2010-06-02 06:44:22 +00:00
dholland
10ec72795b Fix build on Solaris; patch from the KDE-Solaris project via Joern
Clausen in PR 37720.
2010-05-31 23:20:46 +00:00
drochner
60b7b5408b don't install the icon pixmap, this is also done in the frontend
(and makes more sense there)
bump PKGREVISION
2010-05-29 13:54:32 +00:00
taca
0c83dedfd7 Update pear-Image_Color package to 1.0.4.
Add LICENSE.

Changelog:

* Relicensing under LGPL 2.1.
2010-05-26 16:16:09 +00:00
minskim
e468cd0a12 Let tex-a2ping{,-doc} use DISTFILES from TeX Live 2009.
No functional change.
2010-05-26 05:25:06 +00:00
obache
34a80d4660 In cogl_get_proc_address(), falls back to gmmodule, same as clutter-1.x.
It will fix ruby-clutter.

Bump PKGREVISION.
2010-05-25 07:25:44 +00:00
wiz
10823c2c40 Fix destdir installation. 2010-05-25 06:44:14 +00:00
obache
2665447a05 * take maintainership
* set LICENSE=ruby-license
* back to use extconf from gems.
  C ext ruby module from gems install header files into unwanted location.
  It confuse build of package using those modules.
  Moreover, gems module will not be loaded by rb_require from C module.
  It introduce unwanted behaviour to packages using directly/indirectly
  using the module.

Bump PKGREVISION.
2010-05-25 04:39:46 +00:00
adam
5369f51f59 Changes 1.5.4:
* New features:
  - Support for OpenGL 3.3
  - Support for OpenGL 4.0
* New extensions:
  - GL_AMD_conservative_depth
  - GL_ARB_blend_func_extended
  - GL_ARB_draw_indirect
  - GL_ARB_explicit_attrib_location
  - GL_ARB_gpu_shader5
  - GL_ARB_gpu_shader_fp64
  - GL_ARB_occlusion_query2
  - GL_ARB_sampler_objects
  - GL_ARB_shader_bit_encoding
  - GL_ARB_shader_subroutine
  - GL_ARB_shading_language_include
  - GL_ARB_tessellation_shader
  - GL_ARB_texture_buffer_object_rgb32
  - GL_ARB_texture_compression_bptc
  - GL_ARB_texture_rgb10_a2ui
  - GL_ARB_texture_swizzle
  - GL_ARB_timer_query
  - GL_ARB_transform_feedback2
  - GL_ARB_transform_feedback3
  - GL_ARB_vertex_type_2_10_10_10_rev
  - GL_EXT_shader_image_load_store
  - GL_EXT_vertex_attrib_64bit
  - GL_NV_gpu_program5
  - GL_NV_gpu_program_fp64
  - GL_NV_gpu_shader5
  - GL_NV_tessellation_program5
  - GL_NV_vertex_attrib_integer_64bit
  - GLX_ARB_vertex_buffer_object
* Bug fixes:
  - Parameter constness fix for glPointParameteriv and glPointParameterfv
2010-05-23 09:52:49 +00:00
drochner
0d65d693bf update to 3.0.1
changes:
-some extensions
-dropped py-numarray support
-bugfixes
2010-05-20 11:15:17 +00:00
drochner
cc69af1065 fix installation without DESTDIR 2010-05-20 11:09:51 +00:00
drochner
1ee407aecf update to 8b
changes:
-Repair problem in new memory source manager with corrupt JPEG data
-Repair problem in Makefile.am test target
add "test" target
2010-05-18 19:59:21 +00:00
tez
d2ce226ef2 CVE-2010-0829 fix from https://bugzilla.redhat.com/show_bug.cgi?id=573999 2010-05-17 20:21:38 +00:00
drochner
630e4e382a update to 0.6.2
changes: fixes, cleanup, translation updates
2010-05-17 17:46:44 +00:00
drochner
ecab9ab068 update to 2.10.12
changes: bugfixes
2010-05-17 16:56:27 +00:00
drochner
1131a81823 update to 0.99.2.1
changes:
-new frameworks: mplot3d, axes grid, axis spine placement
-bugfixes
2010-05-17 16:22:59 +00:00
obache
1c9a427708 Note for LICENSE. 2010-05-17 07:53:29 +00:00
obache
1717a5cc0c LICENSE=gnu-gpl-v2 2010-05-17 03:08:21 +00:00
zafer
abc738041d the checksums coming from ftp.gnome.org and its mirror differ from the file coming from clutter-project.org. Temporarily disable MASTER_SITES_GNOME. 2010-05-16 17:06:49 +00:00
obache
d48a2970c5 LICENSE=ruby-license 2010-05-16 12:19:11 +00:00
adam
c6522520ef Added graphics/panomatic version 0.9.4 2010-05-16 10:25:59 +00:00
adam
4c195975c9 Pan-o-matic is a tool that automates the creation of control points in Hugin
written by Anael Orlinski.
2010-05-16 10:22:37 +00:00
obache
a75ab39a80 LICENSE=gnu-lgpl-v2.1 2010-05-15 23:52:40 +00:00
obache
f40fd25493 share/doc/html is deprecated, use share/doc/${PKGBASE} instead.
Bump PKGREVISION.
2010-05-15 13:17:28 +00:00
obache
09a4e9b081 LICENSE=gnu-gpl-v2 2010-05-15 13:12:19 +00:00
obache
6cd4d58945 LICENSE=gnu-lgpl-v2.1 2010-05-15 12:52:08 +00:00
obache
0bad5e8017 Note commented out LICENSE (Ruby's). 2010-05-15 12:34:35 +00:00
adam
d923848680 Revision bump after updating boost-libs to 1.43.0 2010-05-15 07:17:16 +00:00
adam
2437d2ef12 Changes 4.0nb2:
* Revision bump for boost-1.43.0
* Enable OpenMP on Mac OS X
2010-05-15 05:47:58 +00:00
obache
544bf669d2 Update clutter to 1.2.8.
Clutter 1.2.8 (10/05/2010)
===============================================================================

  * List of changes since Clutter 1.2.6

    > Ignore unexpected GLX_BufferSwapComplete coming from Mesa (bug #2102)

    > Use the correct function for the GL_OES_framebuffer_object extension

    > Fix the chaining up of the GLX backend when dealing with redirected
      event handling (e.g. by Mutter) (bug #2101)

    > Do not attempt to use GL to convert formats under GLES (bug #2059)

    > Improve the robustness of the checks dealing with the maximum
      amount of layers in a CoglMaterial (bug #2064)

    > Fix cogl_read_pixels() on GLES (bug #2057)

    > Do not try to union sub paths (bug #2088)

    > Fix the clip stack (bug #2079)

    > Fix clutter_event_get_coords() for ENTER and LEAVE events.

    > Documentation fixes in the Cogl path API

    > Fix typos in the introspection annotations
2010-05-12 00:57:34 +00:00
minskim
fdca24f821 Darwin also has NetBSD's readline. 2010-05-10 06:22:03 +00:00
wiz
f416cfbc1e Update to 1.2.0:
NEW FEATURES:

AlbumGUI          : All Album tree views are ported to pure Qt4 model/view implementation.

ImageEditor       : Brightness/Contrast/gamma tool is multithreaded and use a zoomable preview widget.
ImageEditor       : Color Balance tool is multithreaded and use a zoomable preview widget.
ImageEditor       : Hue/Saturation/Lightness tool is multithreaded and use a zoomable preview widget.
ImageEditor       : Auto Color Correction tool is multithreaded and use a zoomable preview widget.
ImageEditor       : Channel Mixer tool is multithreaded and use a zoomable preview widget.
ImageEditor       : Black and White tool is multithreaded and use a zoomable preview widget.
ImageEditor       : White Balance tool is multithreaded and use a zoomable preview widget.
ImageEditor       : Adjust Curves tool is multithreaded and use a zoomable preview widget.
ImageEditor       : Adjust Levels tool is multithreaded and use a zoomable preview widget.
ImageEditor       : Complete rewrite of the FilmGrain tool.
                    FilmGrain tool use now YCrCb color space to add noise. Graininess size can be adjusted
                    with an option to set-up photographic distribution of noise.
                    Different amounts of noise can be added to highlights, shadows and midtones.

BatchQueueManager : New tool to fix Brightness/Contrast/gamma.
BatchQueueManager : New tool to adjust Color Balance.
BatchQueueManager : New tool to fix Hue/Saturation/Lightness.
BatchQueueManager : New tool to convert images color space.
BatchQueueManager : New tool to mix color channel.
BatchQueueManager : New tool to convert to Black and White.
BatchQueueManager : New tool to adjust White Balance.
BatchQueueManager : New tool to adjust Curves.
BatchQueueManager : New tool to blur images.
BatchQueueManager : New tool to add Film Grain to images.
BatchQueueManager : New tool to apply Local Contrast (LDR tone mapping).
BatchQueueManager : New tool to add/remove vignetting.
BatchQueueManager : New tool to invert image colors.
BatchQueueManager : New tool to convert color bits depth.
BatchQueueManager : New tool to add border around images.
BatchQueueManager : Rotate tool support Free Rotation adjustments.
BatchQueueManager : It's now possible to Stop and restart a processed queue.

BUGFIXES FROM KDE BUGZILLA (alias B.K.O | http://bugs.kde.org):

001 ==> 223936 : Moving photos between albums is slow.
002 ==> 224698 : digiKam fails to rotate pefs via orientation tag.
003 ==> 224021 : Zoom shortcuts inconsistent between editor and preview.
004 ==> 225160 : digiKam built with QT4 ver 4.5.3 does not display pictures in album view.
005 ==> 225397 : Tip refers to "Print Wizard", it is now "Print Assistant".
006 ==> 225555 : Crash when deleting tag.
007 ==> 207244 : Image disappears when enlarging.
008 ==> 221155 : Add collection fails on similarly named directories (seems that check is not strict enough).
009 ==> 225731 : digiKam no preview icon for movie.
010 ==> 222698 : digiKam 1.0.0 crashes when editing tags by drag-and-drop.
011 ==> 225328 : Creating new album during import fails.
012 ==> 216633 : Additional aspect ratios in crop tool.
013 ==> 151406 : Filters in 'Enhance' dropdown menu lack mouse-over preview mode.
014 ==> 225698 : When I export my Album to a Html Gallery then Digikam crashed at the End.
015 ==> 225787 : Scroll wheel doesn't work while moving images.
016 ==> 226081 : Trying to delete tags crashes digiKam.
017 ==> 226118 : IPTC metadata tag delimiter is no longer stored (since 0.10).
018 ==> 226235 : digiKam fails after upgrade - no albums - rh tag & captions bar frozen.
019 ==> 225272 : digiKam destroy some exif data.
020 ==> 226584 : digiKam crashes in the starting phase.
021 ==> 226537 : hovering doesn't show sub-tags.
022 ==> 225827 : Gpswidget inactive on default selected photo.
023 ==> 226381 : Copy/Paste of images in Albums view selects wrong image.
024 ==> 224999 : Thumbnails blury after upgrade to 1.0.0 from 0.10.
025 ==> 226789 : Metadata settings only EXIF.
026 ==> 185266 : digiKam shows unknown icon when moving images to other directory.
027 ==> 226872 : Tag tree not expanded with "Tags already assigned" button.
028 ==> 226858 : digiKam 1.2 My Tags window always blank.
029 ==> 226568 : digiKam 1.1 crashes when renaming tag.
030 ==> 226515 : My tags on Caption/Tags becomes empty after removing a single tag.
031 ==> 227244 : Images on local disk not shown in middle pane.
032 ==> 226853 : No images shown after upgrading from previous version.
033 ==> 226932 : Batch Color Space Conversion Tool.
034 ==> 207338 : Batch queue manager does not cancel processing.
035 ==> 215657 : Raw import tool does not use general digiKam settings.
036 ==> 226846 : Issues with color management and color profiles.
037 ==> 227498 : digiKam no longer shows any fotos. opengl image viewer works. showFoto works.
038 ==> 226537 : hovering doesn't show sub-tags.
039 ==> 227550 : Tags already assigned looks messy.
040 ==> 226962 : Applying tags to images requires extra work.
041 ==> 226238 : Histogram never get completed in image editor after any change in the image.
042 ==> 227545 : Toggle Auto/Parents does not work as expected.
043 ==> 219772 : Opening the application causes crash.
044 ==> 226382 : Curves Adjust dialog broken: No Histogram and no effect when changing the line.
045 ==> 227555 : Preview image in digiKam is not displayed after saveas in editor.
046 ==> 225728 : Adding vignette should not increase brightness in the center.
047 ==> 227992 : Search field should not lost focus if nothing was found.
048 ==> 228326 : Crash trying to create a new tag.
049 ==> 227905 : ISO Album dates for 2009 2010 sort wrong.
050 ==> 225443 : Fileview preview panning shortcut back to old.
051 ==> 224094 : Modifying file (caption, keywords, EXIF) takes a very long time and 100 % CPU.
052 ==> 228378 : Tag filtering is bugged.
053 ==> 227668 : Not enough space to show alle tags.
054 ==> 227640 : No Pictures visible in Collections.
055 ==> 227075 : digikam3 database is not imported.
056 ==> 225927 : Add white-balance to the batch base tools.
057 ==> 225718 : Crash when having two tags with the same name in one folder.
058 ==> 221918 : Wrong thumbnails after save as.
059 ==> 226586 : digiKam 1.2 crashes after My Tags window goes blank.
060 ==> 226885 : Not displayed thumbnails failed load kio_digikamalbums.
061 ==> 226363 : Root album is not expansed after upgrade to model view port.
062 ==> 224080 : Selected image thumbnails should be automatically added to the list of images for processing in Batch Queue Manager.
063 ==> 225722 : Selection in editor should not darken image.
064 ==> 228802 : Copy paste doesn't work.
065 ==> 227064 : digiKam 1.1.0: crash on image download.
066 ==> 228807 : Dancing thumbs in album view.
067 ==> 214303 : Position of preview type buttons is inconsistent across different tools.
068 ==> 163286 : Accurate histogram preview required.
069 ==> 229287 : Crash in digiKam when renaming with directory.
070 ==> 148540 : Improvements of adding noise tool.
071 ==> 229340 : digiKam Crashes When Saving PNG Files.
072 ==> 229664 : Curves Widget not working anymore in BWSepia Plugin.
073 ==> 229574 : Moving tags doesn't update the "tag counter" next to the tag name.
074 ==> 229690 : No picture on thumb bar icon.
075 ==> 229793 : Drop image file in digiKam.
076 ==> 228483 : digiKam 1.1.0 with system libjpeg-8 breaks image rotation.
077 ==> 187431 : Gui too big for eeepc.
078 ==> 230008 : digiKam Nikon fetching pictures.
079 ==> 229470 : digiKam fails to start with QCursor: Cannot create bitmap cursor; invalid bitmap(s).
080 ==> 221992 : "local contrast" settings make no difference.
081 ==> 230003 : Zoombar slider adjustments below 100% are hard to archieve [patch].
082 ==> 228810 : Need to roll over again on a thumb to correct the rating.
083 ==> 210259 : Scan crashed on multi-layer TIFFs.
084 ==> 229344 : digiKam starting up - loading kipi-plugins.
085 ==> 229578 : Metadata is not correctly updated when just assigning tags.
086 ==> 230323 : ShowFoto and digiKam opening Olympus E-P2 ORF file will crash.
087 ==> 229108 : digiKam doesn't display all images after and upgrade.
088 ==> 201591 : Restart queue in Batch queue manager.
089 ==> 223003 : Cancelling duplicate search doesn't remove waiting cursor.
090 ==> 230358 : Selected album does not match containing items.
091 ==> 231048 : Monochrome tool shows plain grey preview.
092 ==> 222774 : Many (but not all) tags have been lost after multiple albums facility added.
093 ==> 226504 : When moving assigned tag in the keywords hierachy it becomes unassigned.
094 ==> 220415 : Clicking the + in the Album tree expands and just collapses subdirs again.
095 ==> 207881 : Album order differs in import dialog.
096 ==> 231361 : digiKam crash when trying to open NIKON NEF format photos from camera.
097 ==> 230573 : digiKam crash with import from DSL Nikon D90.
098 ==> 196470 : Update files with metadata from DB.
099 ==> 224052 : Pressing Delete repeatedly is not cached.
2010-05-09 21:11:52 +00:00
markd
5f15c1e399 Update to KDE SC 4.4.3
Numerous fixes in Konsole, KDE's terminal emulator, among them two possible
crashers in session management
Flash plugin support in KHTML has been enhanced to work with newest Youtube
skins
Case-sensitivity in renaming fixes in KIO, KDE's network-transparent I/O
library
Hiding the mouse cursor in some special cases in presentation mode and two
possible crashers have been fixed
2010-05-08 22:13:56 +00:00
drochner
456cabd7ef update to 1.0.4
changes:
-ffmpeg compatibility fixes
-use system expat library
-bugfixes
2010-05-07 17:58:30 +00:00
ahoka
87d7892e4c Drop maintainership on these packages, I am no longer interested. 2010-05-07 08:34:22 +00:00
reed
a5080a0dc8 The BUILDLINK API dependency should be for xf86driproto not
driproto. I noticed this when it built with old xf86driproto
that had conflicting file. So add a CONFLICTS too.
2010-05-05 18:33:30 +00:00
drochner
b7597049fb explicitely disable openal if the option is not chosen, otherwise
it will be picked up anyway if present
(seems that some autoconf->cmake conversions are missing)
2010-05-05 18:21:52 +00:00
drochner
f0188b7c02 update to 6.6.1.5
many new features and fixes - too much to list here
2010-05-04 11:14:23 +00:00
wiz
183b7f909c Update to 2.6:
Version 2.6 released, 9/2009.  [Includes libplot 4.4, interface age=2.]

ode:	 File ode/specfun.c now heavily rewritten to remove all non-GNU
	 copyrights.  For details, see the file ./COMPAT.
libplot: Several bugfixes to the SVG and PS drivers.  (Thanks to Diomidis
	 Spinellis, James Anderson, and others, for pointing out that
	 several apps that import SVG or PS were choking on libplot's
	 output.  Some still choke on its SVG output, but that's no longer
	 libplot's fault; see ./COMPAT.)
libplot: The SVG driver now no longer assumes that the application that
	 imports or displays SVG can do _any_ justification of text strings
	 (not even horizontal justification, e.g., position a string in a
	 right-justified way, with its right edge at a given point).  Many
	 SVG viewers still get this wrong.
libplot: Fig plotters now slightly increase the width of drawn lines,
	 in .fig output, to agree with the interpretation of `line width'
	 in recent releases of xfig.  (Thanks to Wolfgang Glunz and
	 Bart De Schutter for pointing out the need for this.)  This
	 affects executables built with libplot, such as `graph -Tfig'.
graph,plot,tek2plot,plotfont,pic2plot,hersheydemo: The output of the
         `--help' option now cautions that if a `-T' or `--output-format'
         command-line option is not included, the output will by default
         be in the `metafile' format, which is probably not what the user
         expects or wants (by default, it is in binary).
hersheydemo: New executable, generating a single demo page that serves
	 as an advertisement for the Hershey vector fonts.  (It replaces
         the file doc/h-demo.c.)  Invoke it by doing, e.g.,
	 `hersheydemo -Tsvg > demo.svg' , or `hersheydemo -Tps | lpr' .
         It supports the usual libplot options such as --bg-color,
	 --pen-color, and --page-size.  Also --bitmap-size, if a bitmap
	 output format is requested; but note that the Hershey fonts, not
	 being anti-aliased, do not look their best in low-resolution
	 (i.e., small-size) bitmap output.

Version 2.5.1 released, 7/2008.  [Includes libplot 4.3, interface age=2.]

package: license for the package (and for libplot) upgraded to GNU GPL v3.
libplot: SVG output format slightly tweaked, to ensure compatability with
	 SVG 1.1 syntax, as tested for by validator.w3.org.
	 Note: a few SVG editing tools, such as inkscape, currently fail
	 to agree with libplot's SVG semantics, in positioning text.
	 That appears to be their fault (they do not comply with the
	 handling of reflected text, as specified in the SVG 1.1 standard).
libplot: Fixed a bug in bounding box computatations when triangular
	 line-joins are used.
executables: Changed nearly all warning and error messages to complete
         sentences, to smooth the upcoming transition to gettext.

Version 2.5 released, 12/2005.  [Includes libplot 4.2, interface age=2.]

package: bug reporting address has changed to bug-plotutils@gnu.org.
libplot: support for rotated and sheared (i.e., "anamorphically
	 transformed") X Window System fonts has been completely rewritten.
	 Core X fonts are still used, but it is no longer assumed that the
	 X display has the ability to rasterize rotated and sheared glyphs.
	 (Recent releases of XFree86 are broken in this regard.)  Instead,
	 unrotated glyphs are retrieved from the server, and rotated or
	 transformed within libplot.  See new module libplot/x_afftext.c.
graph: plotting of rotated y-axis labels by the `-Y' option, when `-T X' is
         specified (so that output is to an X Window System display) should
         now work, even when recent broken releases of XFree86 are used.
         This is due to the above change to libplot.
libplot: URW versions of the standard 35 Adobe fonts (Helvetica,
	 Times-Roman etc.) are now checked for under their own names on any
	 X Window System display, as well as under the Adobe names.  This
	 fixes a problem with recent SuSE GNU/Linux distributions, of
	 `graph -T X' being unable to use even the default Helvetica font.
libplot: SVG output is now conformant SVG 1.1, and should not be rejected
	 by the Firefox browser.
libplot: vertical positioning of text strings by the SVG driver is
	 improved; libplot now does vertical positioning itself, since
	 many SVG renderers, e.g. Firefox 1.5, can't do it properly.
libplot: the ROTATION parameter, which is the angle in degrees at which the
	 viewport in the output (device) frame should be rotated, can now
	 take values other than 0, 90, 180, and 270.
graph,plot,tek2plot,plotfont,pic2plot: the --rotation option no longer
         requires that the specified angle be 0, 90, 180, or 270 degrees.
         Some quite postmodern effects can now be obtained.
libplot: modifiers such as "xsize=6in", "yoffset=8cm" appended to the
	 PAGESIZE parameter by the user, to do fine positioning of the
	 viewport on the output page, are no longer sometimes ignored.
graph,plot,tek2plot,plotfont,pic2plot: modifiers such as "xsize=6in",
         "yoffset=8cm" appended to the argument of the --page-size option,
         by the user, to do fine positioning of the viewport on the output
         page, are no longer sometimes ignored.
libplotter,pic2plot: problems with compilation by recent C++ compilers now
	 fixed: unsigned char* is cast to char* as needed, deprecated C++
	 headers have had their names modernized, etc.  Support for `bool'
	 in the C++ compiler is now assumed (this could be trivially backed
	 out of, if needed).
installation: entire package can now be compiled by a C++ compiler if
	 desired; request this by doing e.g. `CC=g++ ./configure'.
installation: support for pre-ANSI C compilers, such the SunOS 4.1.3 one,
	 now largely dropped.  Non-working `const' is still checked for,
	 but compiler support for prototypes and void is now assumed.
	 Removal of preprocessor macros that supported pre-ANSI C, from
	 many source files, considerably improved maintainability.
installation: updated GNU autotools now used (autoconf-2.59, libtool-1.5.6,
	 and the older automake-1.4-p6 for safety's sake).  Also, recent
	 flex/bison have been used to prepare the scanner and parser supplied
	 with the ode source (flex-2.5.31 and bison-1.875d).
graph: new short `-Q' option, which is equivalent to the long option
	 `--toggle-rotate-y-axis-label'.
graph,plot,tek2plot,plotfont,pic2plot: `--display-type' long option, the
	 name of which confused some users, has been changed to
	 `--output-format'.  The old option is still supported but is now
	 deprecated.  The short option `-T' continues to work.
libplot: problems with PS output triggering an error in some versions of
	 ghostscript (and hence ghostview, gv), due to changes in the way
	 ghostscript handles FontBBox, now fixed.  Thanks, Brian Gough (and
	 also Alex Cherepanov, who found the fix to idraw's PS prologue).
libplot: most external symbols not meant to be publicly accessible now have
	 names beginning with the prefix "_pl_", to reduce the possibility
	 of namespace collisions.  This will be completed in a later release.
executables: output of "--help" has been altered to agree with current GNU
	 coding standards.
package: copyright and license notices added to nearly all source files.
2010-05-02 13:28:43 +00:00
wiz
9f4966a093 Update to 2.26.3:
Version 2.26.3

- Bug fixed:
  143300 wrong bounding box when importing SVG
  403274 text in thumbnail too large
  404976 Unicode decomposed chars are not rendered well
  524690 text alignment incorrect with text-anchor:end
  545158 Segfault or bad rendering when displaying a SVG file
  563933 corrupted rendering of a card in 'Paris' aisleriot card theme
  564527 rsvg_handle_get_dimensions_sub weird behaviour
  564544 shape-rendering crispEdges property is antialiasing line elements
  566433 Could not  read  a valid svg file (inkspace read it)
  579286 This SVG-File crashes nautilus/rsvg-view
  581491 rsvg rendering is broken when encounters a 0px styled <text>
  589612 EOG error when loading a large SVG
  592207 Object cannot be rendered with more than 1 CSS {} rule
  597873 glib-mkenums cannot be invoked when GLib is uninstalled.
  597988 incorrect pkgconfig file let's others fail to detect librsvg
  598151 Incorrect rendering of svg file
  608575 Hang on particular SVG input
  612951 SVG not rendered if header contains width or height in percentage
  614123 librsvg builds tests even if tests are not run
  614555 should remove unused rsvg_filter_adobe_blend function
  614566 Needless G_OBJECT macro should be removed.
  614606 !important is not respected
  614643 does not handle comma separated CSS selector without libcroco
  614703 Need tests for get_dimensions.
  614704 css style doesn't override presentation attributes
  614730 Rendering not disabled for 0 sized objects
  614866 tests for CSS handling
  615490 rsvg-view should scale image size by default if the image has huge canvas.
  615699 rsvg-view should show zoom ratio.
  615701 class directive in svg element is not used at all
  615715 .class#id type selector is not supported.
  616187 rsvg-view crashes when open a svg image
  616835 Fix linking with pedantic linkers
  617163 !important directive support without libcroco.
2010-05-02 11:50:16 +00:00
wiz
2f26b4d349 Update to 0.2.5:
This release not only publishes all database additions that were
contributed in the last half of year, but also introduces several
new improvements in the library itself.

    * As always, many new lenses/camera were added to the database
    * Support for cross-platform compilation using cross-mingw32
    (build instructions in README).
    * Some bugs were fixed in the library, related to memory
    allocation. Now lensfun should be valgrind-clean.
    * Fixed a nasty bug in lfDatabase::FindLenses() that would
    always use fuzzy search (even if you would ask for a 100%
    match). Your applications may chease to "find" lenses if they
    relied on this bug. Just add the LF_SEARCH_LOOSE flag as the
    last parameter to return the old behaviour.
    * Fixed another bug in search logic that sometimes would mark
    unappropiate results with very high scores (esp. when little
    search keywords are given). Now search should work much better.
    * New TCA correction algorithm: LF_TCA_MODEL_POLY3 ("poly3" in
    database). This is almost the algorithm used by Hugin except
    the highest-order power (r^4). This should allow users to use
    tca_correct to compute TCA parameters.
    * Fixed the LF_TCA_MODEL_LINEAR - it used 1/k where it was
    expected to use k. This is the 'v' parameter of Hugin TCA model,
    and previously users had to invert v to get k; now they can
    just use v.
    * New lens calibration tutorial, using Hugin.
    * Some SSE & SSE2 support from Klaus Post with runtime CPU
    features detection.
2010-05-02 11:39:31 +00:00
wiz
5966920d13 Fix HOMEPAGE and MASTER_SITES. 2010-05-01 20:52:36 +00:00
wiz
e7bea63921 + jpegquality. 2010-05-01 20:48:12 +00:00
wiz
667c813839 Initial import of jpegquality-20070802:
Print out the quantization tables in a JPEG file (that indicate
how the image was compressed).
2010-05-01 20:47:53 +00:00
kefren
57885eb183 Update to 2.6.4, part of mono 2.6.4 2010-04-29 08:44:58 +00:00
kefren
16ec5710b5 Fix libX11 runtime reference 2010-04-22 07:39:54 +00:00
obache
5898695030 Update clutter to 1.2.6.
Clutter 1.2.6 (19/04/2010)
===============================================================================

   * List of changes since Clutter 1.2.4

    > Check if the TexturePixmap actor have an allocation before
      asking for its allocation box, to avoid a costly re-layout.

    > Handle spurious GLX_BufferSwapComplete events more gracefully
      than an assertion failure.

    > Fix a memory leak in the atlas.

    > Use the right constant when calling GetClassLongPtr() in the
      win32 event handling code; this fixes a compilation issue on
      win64.

    > Check the size of the Pango layouts in the cache to avoid
      blowing cache slots.

    > Remove the need for using a function introduced by GLib 2.18,
      to keep our current requirements.

    > Documentation fixes in Clutter and COGL

Many thanks to:

  Fridrich Strba
  Neil Roberts
  Owen W. Taylor
  Rob Bradford
  Robert Bragg
2010-04-21 05:57:54 +00:00
wiz
bed3d6871a Fix HOMEPAGE, from diro@nixsyspaus.org. 2010-04-20 22:27:56 +00:00
adam
b51b4e9959 Changes 1.7.10:
* Added missing "(...)" in png_get_uint_32().
* Only compile png_get_uint_32(), etc., when PNG_LIBPNG_VER < 1.2.9
* Revised help info for "-zitxt".

Changes 1.7.9:
* Defined TOO_FAR == 32767 in pngcrush.h (instead of in deflate.c)
* Revised the "nolib" Makefiles to remove reference to gzio.c and pnggccrd.c

Changes 1.7.8:
* Removed gzio.c

Changes 1.7.7:
* Updated bundled libpng to version 1.4.0.
* Check the "-plte_len n" option for out-of-range value of n.
* Changed local variable "write" to "z_write" in inffast.c (zlib-1.2.3.4)
    to avoid shadowed declaration warning.

Changes 1.7.6:
* Change some "if defined(X)" to "ifdef X" according to libpng coding style.
* Added some defines to suppress pedantic warnings from libpng-1.2.41beta15
    and later.  A warning about deprecated access to png_ptr->zstream is
    otherwise unavoidable.  When building the embedded libpng, a warning
    about png_default_error() returning is also otherwise unavoidable.
* Write premultiplied alpha if output extension is .ppng and
    PNG_READ_PREMULTIPLIED_ALPHA_SUPPORTED is set (needs libpng-1.5.0).
* Check the "-m method" option for out-of-range method value.

Changes 1.7.4:
* Use unmodified pngconf.h from libpng-1.2.41beta05 or later.
2010-04-18 08:35:44 +00:00
zafer
6107acf702 remove one dead mirror. add south-african and japanese mirrors. 2010-04-17 17:09:01 +00:00
tnn
c2e785c207 revision bump for libdrm update. 2010-04-16 13:50:51 +00:00
wiz
61909e6b2e + gimp-resynthesizer. 2010-04-14 00:02:14 +00:00
wiz
ff17a935a1 Initial import of gimp-resynthesizer-0.16:
Resynthesizer is a Gimp plug-in for texture synthesis. Given a
sample of a texture, it can create more of that texture. This has
a surprising number of uses:

    * Creating more of a texture
      (including creation of tileable textures)

    * Removing objects from images
      (great for touching up photos)

    * Creating themed images
2010-04-14 00:01:31 +00:00
drochner
21d259f023 update to 2.26.2
changes: minor cleanup and build improvements
2010-04-13 16:47:24 +00:00
drochner
d7beeeda48 update to 2.3.21
changes: minor build fix (not affecting pkgsrc)
2010-04-13 16:45:37 +00:00
obache
ebe19f9d51 Update pstoedit to 3.50.
While here, remove restriction, it's "please", not "have to".
 see: http://packages.debian.org/changelogs/pool/main/p/pstoedit/pstoedit_3.45-8/pstoedit.copyright

New or changed in 3.50:

    * added an option (-gs) to specify the full path to GhostScript (under
      Windows - either the .exe or the DLL). This can be used by portable
      applications to direct pstoedit to use a specific GhostScript version.
    * Stanislav Brabec contributed several improvements to the PCB driver. See
      http://www.penguin.cz/~utx/pstoedit-pcb/ on how these can be useful.
    * Scott Pakin submitted several improvements to the mpost driver and the
      font substitution mechanism.
    * new driver for .vtk files e.g. for ParaView - http://www.paraview.org/
      - but this is still a very basic version. Thanks to Mitesh Patel for
      initiating and testing.
    * new driver for cairo (http://cairographics.org/ ) contributed by Dan
      McMahill. This driver generates C-code which can be compiled and linked
      against the cairo libraries. See the contrib/cairo directory for an
      example.
    * several improvements on the DXF driver as suggested and sponsored by
      Markus Meyer.
    * because pstoedit may write its output to stdout, all output written by
      GhostScript to stdout is now redirected to stderr in order to avoid mixed
      output.
    * added a -q option to suppress the initial startup message of pstoedit.
      This can by useful when being called via a pipe, e.g. from inkscape.
      However, note that this does not suppress all output written to stderr -
      see also note above.
    * John Bowman fixed a number of problems related to clipping and image
      support for the Asymptote backend.
    * fixed a compilation problem with g++ V4.x.
    * new driver for gcode (.ngc files) (tested with emc see
      http://linuxcnc.org). Contributed by Lawrence Glaister.
    * some adaptations for newer versions of libming
    * fixed a line width problem for xfig format.
    * corrected the broken pstoedit.m4 - thanks to Ian Abbott
    * some minor code beautifying.
2010-04-13 06:53:19 +00:00
adam
c1fa86069b Changes 0.6.4:
* Added the option -nx.
* Clarified the behavior of -nz and the relation between -nz and -o0.
* Added a filesystem check (resolving normalized paths, symlinks, etc.)
  to better detect when the output overwrites the input.
* Enabled automatic wildcard expansion (i.e. globbing) on Win64.
* Fixed a Unicode build issue on Windows.
2010-04-11 10:08:51 +00:00
adam
176ff71c96 Changes 2010.0.0:
* Hugin main window can also be viewed full-screen.
* Autocrop
* Deghosting
* The default size of the image cache has increased in line with modern
  computers.
* The About dialog has been extended to show a full list of Hugin contributors.
* Other fixes for minor bugs and annoyances.
2010-04-10 16:29:09 +00:00
markd
430b4a6394 Update PLIST to reflect additional components installed when build against
KDE SC 4.4.2. Depend on 4.4.2 and bump PKGREVISION.
2010-04-10 03:10:15 +00:00
markd
2b6e43d1e7 Fix to build with KDE SC 4.4.2 2010-04-10 03:06:50 +00:00
markd
24c82a1fd6 Update KDE to 4.4.2
For 4.4.0 major new technologies have been introduced, including social
networking and online collaboration features, a new netbook-oriented
interface and infrastructural innovations such as the KAuth authentication
framework. According to KDE's bug-tracking system, 7293 bugs have been
fixed and 1433 new feature requests were implemented.

KDE SC 4.4.1 has a number of improvements:
 A performance problem in KMail when sending emails has been fixed
 Various fixes in Plasma widgets and other addons, such as the analog clock
  and the picture frame
 A number of fixes in Konsole, KDE's powerful terminal application

KDE SC 4.4.2 has a number of improvements:
 Possible crashes in Plasma, Dolphin and Okular have been fixed
 The Microblog applet now shows the correct time in the timeline
 The audioplayer KRunner plugin has been fixed to not freeze the KRunner UI
  anymore
2010-04-10 02:45:02 +00:00
gdt
f8a33b8025 Update to 8.15.
Mar. 18, 2010 - Version 8.15 (production release)

  - Allow times with timezones in GPX track logs
  - [many other changes]
2010-04-09 23:44:28 +00:00
drochner
3ef119e1b5 update to 8a
changes:
-Writing tables-only datastreams via jpeg_write_tables works again.
-Support 32-bit BMPs (RGB image with Alpha channel) for read in cjpeg.
-Improve accuracy in floating point IDCT calculation.
2010-04-09 20:00:02 +00:00
wiz
95c315da14 Add pt locale file to PLIST.
This file was not created correctly because of problems in the msgfmt
wrapper, which are now fixed.

Bump PKGREVISION.
2010-04-09 15:45:09 +00:00
kefren
e7c5c820b7 Update to 2.6.2, bugfix version on 2.6 branch
No other Changelog available
2010-04-09 15:41:02 +00:00
obache
c43870d3c1 Update libotf to 0.9.11.
* Changes in libotf 0.9.11

** New functions OTF_drive_gsub_with_log and OTF_drive_gpos_with_log
works like OTF_drive_gsub and OTF_drive_gpos but also records which
features are applied to which glyphs.

** New function OTF_put_data and OTF_get_data can be used to store and
retrieve arbitrary cliend data to/from the structure OTF.
2010-04-09 01:46:49 +00:00
obache
4dd72da588 Update py-cltter to 1.0.2.
Overview of changes between 1.0.0 and 1.0.2
===========================================

* Fix an import error of the PyCairo C API [Bastian]
* Use the GClosure variants for the Alpha API [Emmanuele]
* Update the examples [Bastian, Emmanuele]
* Allow iterating over the actors references by clutter.Behaviour instances
  using the Python iteration syntax [Emmanuele]
* Override __str__ and __repr__ slots for clutter.Path [Emmanuele]
* Add back clutter.Actor.get_allocation_geometry() which was erroneously
  removed from the bindings [Emmanuele]
* Update the build so that PyClutter works with Clutter 1.2 [Bastian]
* Add support for the X11 and GLX specific API, under the clutter.x11 and
  clutter.glx sub-modules, respectively [Bastian]
* Add more (optional) parameters to the clutter.Animation constructor [Bastian]
* Add __str__ and __repr__ slots for many boxed types [Bastian]
* Add richcompare slot for clutter.Color, clutter.Path and
  clutter.ActorBox [Bastian]
* Allow iterating over a clutter.Path [Bastian]
* Allow implementing a clutter.ChildMeta in pure Python [Bastian]
* Bind clutter.Units [Bastian]
* Allow implementing clutter.Scriptable in pure Python [Bastian]
* Use a custom codegen script to fix bug #1827 and allow overriding the
  Python name of a C method [Bastian]
* Add docstrings for all methods [Bastian]
2010-04-09 01:43:23 +00:00
obache
8ea5c7977d Update clutter to 1.2.4.
Clutter 1.2.4 (22/03/2010)
===============================================================================

  • List of changes since Clutter 1.2.2

    » Revert patch for bug 2017 which broke subclassing ClutterListModel

    » Add more error reporting in case the GLX context creation failed

    » Fix cogl_texture_get_data() returning garbage

    » Fix the computation of the stage bounding rectangle when submitting
      clipped redraw requests

    » Switch texture units before setting the Cogl texture filters

    » Make sure that GLX_SGI_swap_control is set up correctly

Many thanks to:

  Owen W. Taylor
  Adel Gadllah

Clutter 1.2.2 (15/03/2010)
===============================================================================

  • List of changes since Clutter 1.2.0

    » Fix introspection annotations for ClutterBox

    » Compilation fixes for the EGL native backend

    » Fix ClutterX11TexturePixmap ::queue-damage-redraw default handler
      registration to avoid a run-time warning

    » Handle TEXTURE_RECTANGLE_ARB in the 2D sliced textures, and add
      a test case for that extension to avoid regressions

    » Improve the strictness of the JSON parser in the internal copy
      of JSON-GLib to which we fall back in the absence of the system
      one

    » Fix a crasher on NVidia drivers when enabling the ARGB visuals
      by default on GLX.

Many thanks to:

  José Dapena Paz
  Neil Roberts
  Owen W. Taylor
  Øyvind Kolås
2010-04-09 01:42:18 +00:00
obache
d5f6f1acbf Bump PKGREVISION from ming shlib bumped. 2010-04-09 01:38:32 +00:00
markd
b68e301ec1 Update to ivtools 1.2.8
leaf node.  Adds DESTDIR support.  Drop maintainership.

Nov. 21st, 2009  ivtools-1.2.8

- significant work on keeping up with gcc and libstdc++.  A wrapper
  for stdio.h was inadvertently getting pulled in by /usr/include
  files, causing a lot of trouble.  Now builds with gcc-4.4 on Ubuntu
  9.10.

August 25th, 2009  ivtools-1.2.7

- series of memory leak checking commands
- added reference counting to OverlayView's (ComponentView's) referred from
  AttributeValue's (#define RESOURCE_COMPVIEW)
- fixed attrname func.
- fixed stddev func.
- added BooleanType to NumFunc promotion method.
- fixed graphdraw copy/paste of graph fragments
- new SocketObj for use comterp
- fix behavior of symbol manipulating funcs, by using internal bquote.
- port to Ubuntu Heron
- applied (most of) patch to build on Fedora 10 contributed by John Heidemann
- balance of changes to support ipl-1.0.4

July 9th, 2008  ivtools-1.2.6

- Debian contributed patch for iostreams backward compatibility
- bug fix for dispatcher.c contributed by Damon Permezel
- add mute command to comterp
- balance of changes to support ipl-1.0.2

March 4th, 2008  ivtools-1.2.5

- overall evolution to support use by ipl-1.0.1 (see
  http://sf.net/projects/ipl for further details)
2010-04-05 22:52:23 +00:00
obache
a128dcbb88 The patch file in jumbo-patches is extracted in ${WRKDIR}, use it for patch,
to avoid wildcards for tar portability issue reported in PR#43079.
2010-03-30 09:51:30 +00:00
obache
0d43e0f207 Update goocanvasmm to 0.15.1.
0.15.1:
 * Use the latest mm-common build system, to produce API documentation that is
   ready for library.gnome.org.
2010-03-29 06:00:12 +00:00
drochner
6ed365fdd1 use SIGPWR only #if defined, fixes build on DragonFly, from Rumko
per PR pkg/43068
2010-03-28 12:36:35 +00:00
tnn
beca9188a3 another sparc64-only build fix; define memory barrier macro in sis_context.h 2010-03-27 12:55:00 +00:00
tnn
f5c141deec fix a wrong #include in patch-aa which caused sparc64 build to fail. 2010-03-27 12:26:19 +00:00
asau
00708ce7e3 Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
joerg
fdc49694d4 Not MAKE_JOBS_SAFE. 2010-03-17 14:17:02 +00:00
obache
0e7085e235 + py-clutter-gtk 2010-03-11 06:13:54 +00:00
obache
2d8ffb5135 Import py-clutter-gtk-0.10.0 as graphics/py-clutter-gtk.
This archive provides Python bindings for the clutter-gtk integration library.
2010-03-11 06:12:59 +00:00
obache
9af4b0081c Add buildlink3.mk 2010-03-11 06:11:51 +00:00
obache
5313c1ea6a * fixes build with clutter-1.2 (patch-ab).
* fixes dependency (some bindings had been dropped when updated to 1.0.0).
Bump PKGREVISION.
2010-03-11 05:41:24 +00:00
obache
291d91d4ad Fixes dependency (some bindins had been dropped when updated to 1.0.0).
Bump PKGREVISION.
2010-03-11 04:24:57 +00:00
obache
5d429ff4d6 Fixes paths for MASTER_SITE_GNOME. 2010-03-10 12:35:22 +00:00
joerg
6368ffc3ab Not MAKE_JOBS_SAFE. 2010-03-09 18:24:53 +00:00
wiz
43989acb49 Update to 1.2.43:
version 1.2.42beta01 [December 4, 2009]
  Removed "#define PNG_NO_ERROR_NUMBERS" that was inadvertently added
    to pngconf.h in version 1.2.41.
  Revised scripts/makefile.netbsd, makefile.openbsd, and makefile.sco
    to put png.h and pngconf.h in $prefix/include, like the other scripts,
    instead of in $prefix/include/libpng.  Also revised makefile.sco
    to put them in $prefix/include/libpng12 instead of in
    $prefix/include/libpng/libpng12.
  Removed leftover "-DPNG_CONFIGURE_LIBPNG" from scripts/makefile.darwin

version 1.2.42beta02 [December 11, 2009]
  Removed leftover "-DPNG_CONFIGURE_LIBPNG" from contrib/pngminim/*/makefile
  Relocated png_do_chop() to its original position in pngrtran.c. The
    change in version 1.2.41beta08 caused transparency to be handled wrong
    in some 16-bit datastreams (Yusaku Sugai).

version 1.2.42rc01 [December 17, 2009]
  No changes.

version 1.2.42rc02 [December 22, 2009]
  Renamed libpng-pc.in back to libpng.pc.in and revised CMakeLists.txt
    (revising changes made in 1.2.41beta17 and 1.2.41rc01)

version 1.2.42rc03 [December 25, 2009]
  Swapped PNG_UNKNOWN_CHUNKS_SUPPORTED and PNG_HANDLE_AS_UNKNOWN_SUPPORTED
    in pngset.c to be consistent with other changes in version 1.2.38.

version 1.2.42rc04 [January 1, 2010]
  Marked png_memcpy_check() and png_memset_check() PNG_DEPRECATED.
  Updated copyright year.

version 1.2.42rc05 [January 2, 2010]
  Avoid deprecated references to png_ptr-io_ptr and png_ptr->error_ptr
    in pngtest.c

version 1.2.42 and 1.0.52 [January 3, 2010]
  No changes.

version 1.2.43beta01 [January 27, 2010]
  Updated CMakeLists.txt for consistent indentation and to avoid an
    unclosed if-statement warning (Philip Lowman).
  Removed "#ifdef PNG_1_0_X / #endif" surrounding
    PNG_READ_16_TO_8_SUPPORTED and PNG_READ_GRAY_TO_RGB_SUPPORTED
    in pngconf.h.  These were added in libpng-1.2.41beta08 and libpng-1.0.51,
    which introduced a binary incompatibility with libpng-1.0.50.
  Backported new png_decompress_chunk() algorithm from libpng-1.4.1.

version 1.2.43beta02 [February 1, 2010]
  Backported two-pass png_decompress_chunk() algorithm from libpng-1.4.1.

version 1.2.43beta03 [February 6, 2010]
  Backported fast png_push_save_buffer() algorithm from libpng-1.4.1.
  Backported some cosmetic changes from libpng-1.4.1.

version 1.2.43beta04 [February 8, 2010]
  Reverted recent changes to png_push_save-buffer().
  Removed PNGAPI declaration of png_calloc() and png_write_sig() in
    1ibpng-1.2.X, introduced by mistake in libpng-1.2.41.
  Return allocated "old_buffer" in png_push_save_buffer() before png_error()
    to avoid a potential memory leak.

version 1.2.43beta05 [February 8, 2010]
  Ported rewritten png_decompress_chunk() by John Bowler from libpng-1.4.1.

version 1.0.53rc01 and 1.2.43rc01 [February 18, 2010]
  No changes.

version 1.0.53rc02 and 1.2.43rc02 [February 19, 2010]
  Define _ALL_SOURCE in configure.ac, makefile.aix, and CMakeLists.txt
    when using AIX compiler.

version 1.0.53 and 1.2.43 [February 25, 2010]
  Removed unused gzio.c from contrib/pngminim gather and makefile scripts
2010-03-09 08:41:15 +00:00
obache
1c77e4d6a8 Update GraphicsMagick to 1.3.12.
1.3.12 (March 8, 2010)
==========================

Security Fixes:

  * Updated libpng Windows sources to 1.2.43 in order to resolve
    CVE-2010-0205 as it pertains to the GraphicsMagick Windows build.

Bug fixes:

  * Filter mode (write to stdout) was completely broken.

  * Should now compile with libpng 1.4.

  * Windows PerlMagick build identified itself as the wrong version.

New Features:

  * None

Feature improvements:

  * None

Performance Improvements:

  * None

Behavior Changes:

  * DCX output format is only written on request.  Previously the PCX
    coder would automatically switch to DCX format if multiple frames
    would be written.
2010-03-09 01:19:48 +00:00
adam
b782be3c04 Changes 0.19:
* A library interface has been added.
* The option "--crop" has been replaced with the similar but different
  option "--cut", which can accept coordinates taken from the ORF file.
* Recognition of files with a single character and without white space at
  the edges has been fixed.
* Lintian warnings in Debian about man pages have been fixed.
2010-03-08 12:35:54 +00:00
tnn
f02a9d99f4 Mixing _XOPEN_SOURCE=500 and _XOPEN_SOURCE=600 in the same package
is asking for trouble. On solaris these options are mutually exclusive
because 600 needs C99 and 500 is not allowed to use C99.

I lowered the requirement to _XOPEN_SOURCE=500 and the build succeeded.

While here I'll note that PR pkg/42897 (netbpm link error on Solaris 10)
should now be fixed by libpng-1.2.41nb1.
2010-03-04 11:01:01 +00:00
tnn
14c89383ec scratch that, pkg-config does the right thing.
We only needed the fix for libpng-config.
2010-03-04 10:18:46 +00:00
tnn
6d07640dec regen patch 2010-03-04 10:15:44 +00:00
tnn
9f326fc48c "pkg-config --libs png" and "libpng-config --libs" should
request -lz linkage. Bump PKGREVISION.
2010-03-04 10:13:16 +00:00
obache
69800b19f7 Update clutter to 1.2.0.
Clutter 1.2.0 (02/03/2010)
===============================================================================

  • List of changes since Clutter 1.1.14

    » Improve the Animator API for consistency, and the implementation
      to match the intended behaviour, as documented

    » Add initial (and internal) support for queueing clipped region updates
      and let the GLX texture-from-pixmap actor take advantage of it

    » Support any pixel format in cogl_read_pixels()

    » Conditionally use G_VALUE_COLLECT_INIT() in functions using variadic
      arguments lists

    » Consistently use :min-width and :min-height inside the Stage to define
      the minimum size of the Stage window

    » Implement the Scriptable interface for ClutterModel sub-classes; this
      allows setting ClutterModel columns (both types and names) in
      ClutterScript definitions

    » Add support for unsigned integer indices in the VertexBuffer API

    » Documentation fixes for Clutter: the coverage is now 100%

    » Fixes for the EGL native backend

    » Require libtool >= 2.2.6

    » Improve tests coverage

Many thanks to:

  Neil Roberts
  Øyvind Kolås
  Robert Bragg
  Bastian Winkler
  Chris Lord
  Owen W. Taylor

Clutter 1.1.14 (24/02/2010)
===============================================================================

  • List of changes since Clutter 1.1.12

    » Fix interaction between user resizable Stages and fullscreen on X11

    » Define the semantics of ENTER and LEAVE events when actors are on the
      border of the Stage window

    » Take the InputDevice of an event into consideration when throttling
      MOTION events

    » Round the coordinates when clipping to a rectangle in window coordinates

    » Always trust the user-provided coordinates when creating a CoglTexture
      from a foreign GL texture

    » Split Clutter's debug annotations from the pick and paint mode
      behavioural modifiers

    » Improve the usage of the CLUTTER_ACTOR_NO_LAYOUT flag so that every
      actor using a ClutterFixedLayout manager will automatically benefit
      from it

    » Fix the packing order of ClutterBox so that the convention of
      first-in-first-painted is maintained

    » Documentation fixes

Many thanks to:

  Robert Bragg
  Chris Lord
  Neil Roberts

Clutter 1.1.12 (16/02/2010)
===============================================================================

  • List of changes since Clutter 1.1.10

    » Fix compilation on 64bit platforms

    » Fix some races of the Stage resizing on X11

    » Documentation fixes for Cogl: the coverage is now 100%

    » Fix rounding errors in the preferred height of the ClutterText
      actor

    » Remove redundant type checks in clutter_actor_get_paint_opacity()

    » Add support for the GLX_INTEL_swap_event extension; when using this
      extension on GLX the glXSwapBuffers() call becomes non-blocking and
      Clutter will use an event to control the master clock.

    » Improve consistency between ClutterBox and ClutterGroup.

    » On X11, do not set the _NET_WM_PID and WM_TITLE properties on a
      Stage X window if the window was not created by Clutter itself

    » Improve caching of GL constant values

    » Optimize creating sub-textures of sub-textures

    » Various fixes for the atlas and the journal

    » Disable the atlas if FBOs are not supported

Many thanks to:

  Robert Bragg
  Neil Roberts
  Damien Lespiau
  Bastian Winkler
  Chris Lord

Clutter 1.1.10 (09/02/2010)
===============================================================================

  • List of changes since Clutter 1.1.8

    » Fixed a regression in textures that caused all the textures to be
      drawn as white rectangles.

    » Fixed compilation with the Sun C compiler.

    » Use SSE2 instructions to premultiply RGBA images, if available.

    » Improve readability of ClutterActor::raise/::lower warnings.

Many thanks to:

  Neil Roberts
  Halton Huo

Clutter 1.1.8 (08/02/2010)
===============================================================================

  • List of changes since Clutter 1.1.6

    » Added ClutterAnimator, a class that allows defining complex
      implicit animations involving multiple actors and states; this
      class is mostly meant to be used through the ClutterScript
      definition format, but it provides a convenience C API for
      easily building animations.

    » New experimental COGL API to expose "hardware" buffers such as PBOs or
      drm surfaces. This API can be used, for instance, to make texture
      uploading faster.

    » Fixed the issues with resizable stages getting a 1x1 window with
      the X11 backends

    » Expose input devices for every event; by default, X11 and Windows
      backends expose the core devices only.

    » Add the ClutterStage:key-focus property, for key focus tracking.

    » Allow setting transformable value types in ClutterAnimation when
      calling clutter_animation_bind() and clutter_animation_update().

    » Delay the creation of the default Stage until clutter_stage_get_default()
      is actually called; this reduces the work of clutter_init().

    » Implement Ctrl+Delete and Ctrl+Backspace in ClutterText

    » Improve the extendability of CoglTexture with internal backends.

    » Add implicit texture atlasing; Cogl will try to put every texture
      inside the same texture atlas by default, to avoid state changes
      in the driver and (hopefully) improve performance.

    » Fix notification of the cursor and selection changes in ClutterText;
      this improves the usage of Clutter from A11Y toolkits.

    » Do not wait for a frame if the system clock goes backwards.

    » Fix the dirtying of the clip state; this unbreaks cogl_path_fill().

    » Documentation and build fixes.

Many thanks to:

  Neil Roberts
  Chris Lord
  Damien Lespiau
  Alejandro Piñeiro
  Jussi Kukkonen
  Kristian Høgsberg
  Robert Bragg
  Øyvind Kolås

Clutter 1.1.6 (18/01/2010)
===============================================================================

  • List of changes since Clutter 1.1.4

    » Some fixes for the Win32 backend (bug #1905).

    » Profiling support via the UProf library. Configure with
      --enable-profile to get a report after each Clutter application is
      run.

    » Improved conformance tests with coverage reports via gcov.

    » ClutterTexture no longer tries to read back texture data into
      g_malloc'd memory on unrealize (bug #1842).

    » The CGL_• defines from cogl-defines.h have been removed. These
      should not have been used by any applications, but if they were
      being used then please replace them either with the Cogl enums or
      with the appropriate GL_• enum if you are using GL directly.

    » Added a delete-event signal to the stage.

    » Fix for using cogl_rectangle with different texture coordinates
      for multiple layers (bug #1937).

    » Fix for using stencil and depth buffers in FBOs on Intel drivers
      in Mesa (bug #1873).

    » Support for subtitles in ClutterMedia.

    » ClutterGLX will now use an RGB visual by default. For
      applications (and toolkit integration libraries) that want to
      enable the ClutterStage:use-alpha property there is a new
      function: clutter_x11_set_use_argb_visual().

    » Fix ClutterText to allow using Pango markup and attributes in
      the same actor (bug #1940).

Many thanks to:

     Alejandro Piñeiro
     Damien Lespiau
     Emmanuele Bassi
     Gord Allot
     Halton Huo
     Robert Bragg
     Samuel Degrande

Clutter 1.1.4 (03/01/2010)
===============================================================================

  • List of changes since Clutter 1.1.2

    » Update the ClutterScript parser to be more resilient, and support
      constructor and ChildMeta properties. The parser also respects the
      order of the properties in the UI definitions when applying them,
      and will apply the properties of an Actor after building the scene
      graph.

    » Simplified the implementation of LayoutManager sub-classes, and added
      support for animating a layout manager.

    » Allow short-circuiting some layout operations by setting a specific
      flag on ClutterActor.

    » Improve caching of the preferred size of a ClutterActor.

    » Allow declaring "internal children" for a ClutterContainer
      implementation: the memory management of these actors will be deferred
      entirely to the Container.

    » Let the ClutterStage honour the :opacity property and the alpha component
      of the stage color. This requires support in the Clutter backend used.

    » Improve Windows and OSX backends.

    » Simplify the feature detection code for OpenGL; this also reduced the
      required OpenGL version to 1.2.

    » Improve the matrix stack handling code. The matrices can be debugged by
      using the COGL_DEBUG environment variable, assuming that Clutter was
      compiled with the right configure-time switch.

    » Improve COGL API for draw buffers, and for offscreen buffer support.

    » Add support for text direction to ClutterActor.

    » Documentation, introspection and build fixes.

Many thanks to:

  Robert Bragg
  Neil Roberts
  Damien Lespiau
  Joshua Lock
  Bastian Winkler
  Rob Bradford
  Samuel Degrande
  Christian Persch
  Colin Walters
  Johan Bilien
  Raymond Liu
  Tim Horton

Clutter 1.1.2 (23/10/2009)
===============================================================================

  • List of changes since Clutter 1.0

    » Add ClutterLayoutManager, an abstract proxy class for easily
      writing layout management policies; also add ClutterLayoutMeta,
      a class for storing layout properties.

    » Add ClutterBox, a generic container actor that relies on a
      ClutterLayoutManager instance to manage the layout of its
      children.

    » Add the following layout managers:

      - ClutterFixedLayout - a layout manager implementing the
        policy used by ClutterGroup

      - ClutterBinLayout - a layout manager for packing actors
        as layers inside the same area, with per-actor alignment

      - ClutterFlowLayout - a layout manager arranging actors as
        a reflowing grid

      - ClutterBoxLayout - a layout manager arranging actors as
        a single line

    » Remove the requirement for the backend-specific implementation
      of ClutterStage to be a ClutterActor: a Stage implementation must
      only implement the ClutterStageWindow interface. This cleans up
      the backend code.

    » COGL source tree clean up and rationalization; COGL now
      knows the platform, and not only the driver (GL or GLES) so
      we can migrate part of the low-level backend code from Clutter
      to COGL where it makes sense.

    » Remove code duplication across whole COGL.

    » The GLES 2.0 driver for COGL, and the EGLX backend for Clutter
      have been fixed and confirmed working.

    » Add "dump-pick-buffer" to CLUTTER_DEBUG: this debug options
      dumps the contents of each pick() buffer into a PNG file, for
      debugging purposes.

    » Allow interpolating intervals of ClutterUnits for animating
      unit-based properties.

    » Increase strictness and correctness of the ClutterUnits
      grammar parser.

    » Add GValue transformation functions for ClutterPath to and
      from a string.

    » Fix word movement in ClutterText; implement GObject getter for
      :use-markup; emit notification for :position; decouple the
      :text property from the :use-markup property.

    » Do not queue redraws or relayouts on actors currently being
      destroyed.

    » Support #rrggbb and #rgb notations for ClutterColor.

    » Multiple bug fixes.

    » Provide _NET_WM_PID on the X11 stage implementation.

    » Documentation and Introspection annotation fixes.

    » Add test units for the ClutterActor size requesition.

    » Build fixes.

    » Use AM_SILENT_RULES if Automake 1.11 is detected, and fall
      back to Shave on older Automake versions.

Many thanks to:

  Robert Bragg
  Damien Lespiau
  Neil Roberts
  Thomas Wood
  Owen W. Taylor
  Øyvind Kolås
  Götz Waschk
  Zhou Jiangwei
  Colin Walters
  Jonas Bonn
  Joshua Lock
  Jussi Kukkonen
  Samuel Degrande
  Vladimir Nadvornik
  Xu Li
2010-03-04 08:13:15 +00:00
sno
3ce6296aa5 Updating graphics/p5-RRDTool-OO from 0.25 to 0.30
pkgsrc changes:
- Upstream Makefile.PL says, minimum required rrdtool version is 1.2.x,
  so adjust required version of databases/rrdtool

Upstream changes:
0.30  (02/21/2010)
    (ms) [RT 53961] Worked around rrdtool-1.3.5 inaccuracy problem by
         skipping certain tests for rrdtool <= 1.4.

0.29  (02/20/2010)
    (ms) Added github repository link to Makefile.PL
    (ms) Fixed documentation for fetch_next().
    (ms) [RT 54544] Tom Regner added support for updatev().

0.28 (11/05/2009)
    (ms) Applied patch by Lyle Brooks, adding optional step, start, and
         end parameters to "draw".

0.27 (10/11/2009)
    (ms) Slaven Rezic reported huge memory consumption by the test suite,
         turned out to be fetch_start() call spanning several years.
         Fixed by defining the end time as well as the start time.

0.26 (09/27/2009)
    (ms) [RT 32601] Using prompt() instead of manually asking for input
         in Makefile.PL (by Fabien Wernli)
    (ms) [RT 32046] Calling setlocale() to fix error message check in
         foreign locales (by Fabien Wernli)
    (ms) Implemented graphv method. This works just like graph() but uses
         rrdtool's graphv internally, giving access to additional
         information using print_results() method (by Fabien Wernli)
    (ms) Improved RRDs version testing (by Fabien Wernli).
2010-03-03 18:42:37 +00:00
taca
4ab11ac186 Reset PKGREVISION. 2010-02-27 03:35:11 +00:00
wiz
aeaceb273d Reset maintainer for developers who gave back their commit bit. 2010-02-26 10:28:30 +00:00
drochner
6d12fbd2f7 yes this supports DESTDIR, unfortunately it is completely broken
atm due to gtk2+extra crashing in gtkitementry.c (its patch-ag
must be wrong)
2010-02-25 21:41:11 +00:00
sno
050c709638 Updating graphics/p5-Image-Size from 3.2.1 to 3.2.2
pkgsrc changes:
- Mark Test::Simple to be used from perl core, when possible

Upstream changes:
3.220	Sunday November  8, 2009, 05:45:00 PM -0800
	* lib/Image/Size.pm
	Small fix to the regex for detecting GIFs, per Slaven Rezic.
2010-02-25 17:29:41 +00:00
wiz
7969bea5da Add missing dependency, which broke HTML generation and thus PLIST. 2010-02-25 14:13:54 +00:00
obache
8881fbe126 * allow python-2.6
* add user-destdir support
2010-02-22 12:10:59 +00:00
obache
a11da9ccb8 Add destdir support and mark as not make jobs safe. 2010-02-22 11:39:10 +00:00
obache
725f6fef7a Update GraphicsMagick to 1.3.11.
1.3.11 (February 21, 2010)
==========================

Security Fixes:

  * Fixed array underflow on systems using signed char which could
    result in a program crash due to extended characters in filenames
    or in certain file formats.

Bug fixes:

  * Fixed array underflow on systems using signed char which could
    result in a program crash due to extended characters in filenames
    or in certain file formats.

New Features:

  * Added a -thumbnail command to 'convert' and 'mogrify'.  This is a
    faster way to scale down the image when speed is a primary
    concern.

  * Added a -extent command to 'convert' and 'mogrify' which
    composites the image on top of a backing canvas image of solid
    color.

  * Added support for -compose to the 'convert' and 'mogrify', which
    were documented to support it (but did not).

Feature improvements:

  * None

Performance Improvements:

  * Requests for 'Over' and 'Atop' composition are converted to a
    request for the (faster) 'Copy' composition when both images are
    opaque.

Behavior Changes:

  * None
2010-02-22 06:10:32 +00:00
wiz
7d0c8ddaf6 Update to 1.8.10:
Release 1.8.10 (2010-02-19 Carl Worth <cworth@cworth.org>)
==========================================================
The cairo community is pleased to announce the 1.8.10 release of the
cairo graphics library. This is the fifth update to cairo's stable 1.8
series. This release consists of about a dozen hand-picked fixes
compared to 1.8.8 (which was released about 8 months ago).

We recommend that everyone using cairo upgrade to 1.8.10.

-Carl

General Bug fixes
=================
* Fix path construction for the case of cairo_curve_to immediately
  after cairo_new_sub_path followed at some point by
  cairo_close_path. (Previously, the final point for the close_path
  was computed incorrectly.)

* Fix for cairo_push_group or cairo_pop_group with a non-empty current
  path. (Previously the path may have been erroneously translated when
  either of these functions was called.)

* Fix to correctly report an error if
  cairo_surface_set_fallback_resolution is called with a value of 0
  (in either axis). Previously, an assertion would occur later rather
  than an error being properly reported when the original, invalid
  value was passed.

	Bug 23067: Using clear drawing operator crashes printing
	http://bugs.freedesktop.org/show_bug.cgi?id=23067

* Fix to handle a cairo_arc of radius 0 as equivalent to a
  cairo_line_to to the center coordinate, (previously cairo would do
  nothing for a cairo_arc call with a radius of 0).

Backend-specific bug fixes
==========================
cairo-xlib
----------
* Fix to correctly copy from a Window source. Previously, cairo was
  failing to include the contents of any sub-windows when copying from
  a Window source.

	Bug 12996: Xlib source surface fast-paths do not use
	IncludeInferiors, while slow paths do

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

cairo-ft
--------
* Fix conversion of freetype index to UCS4 value, (which would
  previously miss the first character and cause the space glyph to map
  to 0x00A0 instead of 0x0020).

cairo-pdf
---------
* Fix Type 1 subsetting to avoid generating corrupt data.

	Launchpad Ubuntu/cups bug 419143: Printing from evince (and
	perhaps other GTK apps) to PostScript printers is broken

	https://bugs.launchpad.net/ubuntu/+source/cups/+bug/419143

* Fix Type 1 subsetting to correctly identify binary eexec data.

* Fix Type 1 subsetting to include fixed-content portion in the
  embedded font, (since some fonts may contain additional PostScript
  code after the cleartomark).

* Fix Type 1 subsetting to append "cleartomark" operator for binary
  fonts that don't include it.

Build fixes
===========
* Fix to compile on OpenBSD, (which has a libpng.pc file but none of
  libpng10.pc, libpng12.pc, or libpng13.pc which cairo was looking for
  previously).
2010-02-21 13:02:46 +00:00
gdt
2a8501ec19 Update to 1.0. Take maintainership.
Upstream did not provide a list of changes from 1.0beta2.
2010-02-20 20:50:34 +00:00
drochner
e07ba045f8 update to 10.35.73
changes: many bugfixes, especially:
 xpmtoppm: fix wild pointer with color index > 127.
 which fixes a stack-based buffer overflow (CVE-2009-4274)

pkgsrc change: use a fixed PLIST instead of generating on install,
 helps to detect problems
2010-02-19 18:25:44 +00:00
asau
bf65235bf4 Add "gd" and "pdf" options, default on. PR pkg/34757 2010-02-19 14:09:58 +00:00
drochner
99f40f2dfe update to 2.3.12
changes:
- For  `FT_Open_Face',  new  parameters  are  available  to ignore
  preferred family names: FT_PARAM_TAG_IGNORE_PREFERRED_FAMILY and
  FT_PARAM_TAG_IGNORE_PREFERRED_SUBFAMILY.
- Support  for  incremental  font  loading  (controlled  with  the
  FT_CONFIG_OPTION_INCREMENTAL macro) is now active by default.
- Better support for vertical metrics.
- Various minor bug fixes.
2010-02-18 21:28:45 +00:00
kefren
e2e253fabd Update to libgdiplus 2.6 - part of mono 2.6 update 2010-02-16 17:02:27 +00:00
drochner
8ee7bb0449 reset PKGREV for base pkg update 2010-02-16 13:17:28 +00:00
drochner
6acef5ecdf fix some C-long vs. C#-long mismatches (on 32-bit systems) in
libgphoto glue code, makes photo import directly from the camera
work better for me
2010-02-16 12:16:23 +00:00
joerg
b4af78e036 Not MAKE_JOBS_SAFE. 2010-02-15 17:21:20 +00:00
wiz
762f102ebd Explicitly mention KDE3/KDE4. 2010-02-15 14:45:17 +00:00
wiz
616d179ae2 Explicitly mention KDE3/KDE4 in comment and description. 2010-02-15 14:44:16 +00:00
wiz
10de289a23 Remove kipi-plugins-calender, moved to kipi-plugins-calender-kde3.
Update SUBDIR list in Makefile.
2010-02-15 14:41:08 +00:00
wiz
42b2b9f344 Update to 1.1.0, the KDE4 version.
Used e.g. by updated digikam.

Lots of changes since KDE3 version, check it out!
2010-02-15 14:40:38 +00:00
wiz
736786b8db Reimport kipi-plugins-calendar as kipi-plugins-calendar-kde3. 2010-02-15 14:38:20 +00:00
wiz
41cb7e1666 Reimport kipi-plugins as kipi-plugins-kde3. 2010-02-15 14:37:57 +00:00
wiz
64033132de Drop maintainership. 2010-02-15 14:33:38 +00:00
wiz
335b6a27f1 Update for digikam changes. 2010-02-15 14:24:20 +00:00
wiz
1eb466e1d0 Remove, there is no KDE4 package yet. 2010-02-15 14:23:57 +00:00
wiz
72d8eb8ab8 Shorten a bit. 2010-02-15 14:23:36 +00:00
wiz
49efc5f7b9 dd options.mk file for digikam-1.1.0. 2010-02-15 14:19:45 +00:00
wiz
3f89963e49 Update to 1.1.0, the KDE4 version of digikam.
Lots of changes! Try it out.
2010-02-15 14:19:30 +00:00
wiz
f5b82f35b6 Reimport digikam-doc as digikam-doc-kde3. 2010-02-15 14:18:08 +00:00
wiz
f4ede68463 Re-import KDE3 version of digikam from graphics/digikam to
graphics/digikam-kde3.
2010-02-15 14:16:57 +00:00