Commit graph

7465 commits

Author SHA1 Message Date
minskim
4269d85f71 Import evas-eet-0.9.9.050 as graphics/evas-eet.
Evas is a clean display canvas API for several target display systems
that can draw anti-aliased text, smooth super and sub-sampled scaled
images, alpha-blend objects, and more.

This is the EET image loader of Evas.
2009-02-26 19:03:43 +00:00
minskim
ec7dd23eab Import evas-buffer-0.9.9.050 as graphics/evas-buffer.
Evas is a clean display canvas API for several target display systems
that can draw anti-aliased text, smooth super and sub-sampled scaled
images, alpha-blend objects, and more.

This is the buffer rendering backend of Evas.
2009-02-26 18:56:19 +00:00
minskim
d672134450 Set DISTINFO_FILE and PATCHDIR to share them with backend packages. 2009-02-26 18:46:52 +00:00
minskim
a97abb9eb1 Add evas. 2009-02-26 18:14:14 +00:00
minskim
c24823beda Import a minimal version of evas-0.9.9.050.
This package is based on wip/evas, originally packaged by airhead AT
users.sf.net and maintained by YazzY (yazzy AT yazzy.org).

Evas is a clean display canvas API for several target display systems
that can draw anti-aliased text, smooth super and sub-sampled scaled
images, alpha-blend objects, and more.
2009-02-26 18:12:55 +00:00
minskim
de10a8a529 Let gri depend on dvipsk because teTeX-bin no longer provides dvips. 2009-02-25 17:48:56 +00:00
joerg
94a61c4afc Fix build with newer GTK. DESTDIR support. 2009-02-25 01:17:01 +00:00
cube
7d5de853b8 Remove nvtv-gtk2. There's no need to support both versions of the toolkit,
and if someone really insists on it, they can add an option to
graphics/nvtv.
2009-02-24 00:08:09 +00:00
cube
3983f2b72e - Use gtk2 (nvtv-gtk2 will go away right after this)
- Drop maintainership
- Add USE_DESTDIR support

Bump PKGREVISION because of gtk1->gtk2 move.
2009-02-24 00:06:54 +00:00
cube
2c6fc77fb8 - Update HOMEPAGE and MASTER_SITE to reflect reality
- Drop maintainership
- Add USE_DESTDIR (or however you call it) support
2009-02-23 23:13:11 +00:00
tnn
c0f3c02af3 regen patch-ab (silence warning) 2009-02-23 18:24:25 +00:00
wiz
6d8f0a3f38 Update to 4.0.3:
Comix 4.0.3

    - Hungarian translation updated by Ernő Drabik.

    - French translation updated by Benoît H.

    - Added a feature to automatically rotate images according to their
    EXIF tags.

    - Fixed a bug that caused drag-n-drop actions from KDE applications to
    not work properly.

    - Fixed some bugs that caused problems with non-UTF-8 filename encodings.

    - Fixed a bug that caused the manual zoom mode to not work as expected
    when set as the default mode.

    - Comix now accepts directories as command-line arguments.

    - Added command-line arguments to start Comix in fullscreen mode and to
    display the library on startup.

    - Comix preferences and data now reside in the $XDG_CONFIG_HOME and
    $XDG_DATA_HOME directories instead of in ~/.comix/.

    - Some minor interface enhancements.
2009-02-23 09:08:35 +00:00
wiz
6d280998b3 Update to 0.8.90:
2009-09-20  Rodney Dawes  <dobey@gnome.org>

	* configure.ac:
	Up version to 0.8.90 for release

2009-02-20  Rodney Dawes  <dobey@gnome.org>

	* legacy-icon-mapping.xml:
	Add MS Office Open XML MIME type links

	Fixes https://bugs.launchpad.net/ubuntu/+bug/222441

2009-02-20  Rodney Dawes  <dobey@gnome.org>

	* legacy-icon-mapping.xml:
	Move some of the help links to help-contents instead of help-browser

	Fixes http://bugs.freedesktop.org/show_bug.cgi?id=13048

2009-02-20  Rodney Dawes  <dobey@gnome.org>

	* legacy-icon-mapping.xml:
	Remove the stock_mail-priority-high symlink

	Fixes https://bugs.launchpad.net/ubuntu/+bug/319991
2009-02-22 15:48:11 +00:00
wiz
e88d3b5f19 Update to 1.8.0:
1.8.0:

* No notable changes since 1.7.2

1.7.2 (UNSTABLE):

* API Changes (all API changes are in unstable API introduced in 1.7.x)
  * UserFontFace is not implemented with virtual functions rather than by
    registering callbacks
  * Cairo::scaled_matrix() -> Cairo::scaling_matrix() to match other matrix
    convenience functions
* Bugfixes
  * Incorrect refcounting on ScaledFont
  * build fixes for Mac OSX
* Contributors for this release:
     1	Armin Burgmeier
     1	Dave Evans
    22	Jonathon Jongsma


1.7.0 (UNSTABLE):

 * API Changes
   * ScaledFont: Change fontface constructor parameter to be a RefPtr
     * This is an API break, but the old interface was essentially unusably
       broken
   * Cairo::Matrix now inherits from cairo_matrix_t
     * Previously, we had used Cairo::Matrix throughout our API, but
       Cairo::Matrix was just a typedef for cairo_matrix_t
     * This could be considered an API change, but the new Cairo::Matrix still
       is-a cairo_matrix_t even if it's not exactly a cairo_matrix_t.  This
       change does not break ABI either, as there are no data members or virtual
       functions.  So I believe this is a safe change, but feedback is appreciated.
     * Provides a much more C++-friendly API for handling matrices
     * Also added a set of standalone 'generator' functions for generating
       starting matrices:
       * Cairo::identity_matrix(), rotation_matrix(), translation_matrix(),
         scaled_matrix().  This allows for convenient use such as:
           cr->set_matrix(Cairo::identity_matrix());
         rather than something like what was required before:
           Cairo::Matrix identity_matrix;
           cairo_matrix_init_identity(&identity_matrix);
           cr->set_matrix(identity_matrix);
   * Pattern: get/set_matrix() functions were using a cairo_matrix_t parameter in
     the API.  This is the only place where we used this type and so it was
     inconsistent with every other matrix-related API in cairomm.  Previously
     this wasn't really an issue since cairo_matrix_t and Cairo::Matrix were
     typedefed to the same type.  However, with the the change to Cairo::Matrix
     mentioned above, this because a much bigger issue.
     * This is an ABI-compatible change, but it is a minor API change that could
       result in some warnings or compile problems in some situations`
 * New API (some of these are new in cairo 1.8, some are older API that were
   not wrapped in cairomm previously)
   * Add Context::get/set_scaled_font()
   * add Context::show_text_glyphs()
   * add Context::get_font_options()
   * Add Surface::has_show_text_glyphs()
   * Add Surface::get_content() + test
   * Added Surface::get_fallback_resolution()
   * Add ScaledFont::text_to_glyphs()
   * Add PsSurface::get_eps()
   * Add missing Win32Surface API: create_with_ddb(), create_with_dib(), and get_image()
   * Add Win32PrintingSurface
   * Vastly improved font support
     * ToyFontFace
     * UserFontFace
     * Add Freetype font support (FtFontFace, etc)
     * Add win32 font support (Win32FontFace, etc)
     * Add quartz font support (QuartzFontFace, etc)
     * Add ScaledFont::get_scale_matrix()
 * Fix API inconsistencies by adding overloads and deprecating old versions
   * Deprecated FontFace::extents() in favor of FontFace::get_extents()
   * Deprecated FontFace::text_extents() in favor of FontFace::get_text_extents()
   * Deprecated FontFace::glyph_extents() in favor of FontFace::get_glyph_extents()
   * Add sigc::slot versions of all of the functions that take a
     cairo_write_func_t or cairo_read_func_t
     * This adds a new dependency on libsigc++, but offers a much more flexible
       and C++-like solution
     * Old API using cairo_write_func_t / cairo_read_func_t still exist, but are
       deprecated in favor of the new API
   * Add a default value for the font_options parameter of the ScaledFont constructor
 * Added new macros for determining library version:
   * CAIROMM_MAJOR_VERSION, CAIROMM_MINOR_VERSION, and CAIROMM_MICRO_VERSION
 * Add a bunch of extra .pc files for additional functionality
   * like cairo, create convenience .pc files for using some of the optional
     features.  For example, cairomm-ft-1.0, cairomm-pdf-1.0, cairomm-xlib-1.0, etc.
 * Numerous windows build improvements
 * Added a *lot* of automated tests
2009-02-21 16:23:02 +00:00
wiz
18decf1db4 PKGREVISION bump for libsndfile ABI depends bump. 2009-02-21 13:22:43 +00:00
dholland
514093cf8c Fix broken PLIST when svg option is switched off. 2009-02-21 08:23:04 +00:00
wiz
457fe0a120 Update to 0.9.5 -- matches for digikam-0.9.5. 2009-02-20 19:49:35 +00:00
wiz
ef99f358ce Update to 0.9.5beta3, provided by drochner:
digiKam 0.9.5-beta3 - Release date: 2009-01-27

NEW FEATURES:

Image Editor   : New composition guide based on Diagonal Rules.

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

001 ==> 176477 : Files disappear while importing.
002 ==> 179134 : Compile-error with libkdcraw > 0.1.5.
003 ==> 162535 : Startup is extremely slow when famd is running.
004 ==> 179413 : Support restoring blown out highlights.
005 ==> 157313 : Option to reposition lighttable slide-list.
006 ==> 180671 : Scanner import does not work.
007 ==> 175387 : digikam-doc 0.9.4 sf.net tarball is outdated.
008 ==> 181712 : Ubuntu 8.10 - digiKam finds not the correct images.
2009-02-20 11:46:18 +00:00
drochner
7ad230f24c Fix an undefined symbol problem which rendered this pkg unusable
after the last update.
(due to use of a locking primitive which is only available on 486+
while gcc defaults to -march=i386)
This might also fix PR pkg/40630 by Kamel Derouiche.
bump PKGREVISION
2009-02-20 10:52:56 +00:00
adam
11e6edc324 Changes 1.6.14:
* Built with libpng 1.2.35
2009-02-20 06:01:29 +00:00
drochner
46908b77a7 update to 1.2.35
change: fix pointer initialization (SA33970)
2009-02-19 13:13:53 +00:00
ahoka
0b0e47ea68 +dvipng 2009-02-18 21:20:36 +00:00
ahoka
61e467dbf7 Import dvipng-1.11 as graphics/dvipng.
This program makes PNG and/or GIF graphics from DVI files. It produces
high-quality images while its internals are tuned for speed. It supports PK,
VF, PostScript and TrueType fonts, color, PostScript inclusion, bitmap
inclusion, and has CJK support
2009-02-18 21:19:15 +00:00
adam
0b022da198 Changes 2.6.5:
* Bugs fixed:
  Scaling image to 25% turn background from white to grey
  GIMP's GtkScaleButton conflicts with GTK's
  GEGL tool - missing Operation Settings for all sub-tools
  don't rely on GtkAction implementation details
  wrong RGB values for color names in libgimpcolor/gimprgb-parse.c
  wrong hex RGB value for the color names slategrey and slategray
  Brushes dragged to the image window look strange
  Rectangle Select Tool does not allow 1:1 fixed ratio
  Black pullout parameter of plug-in-newsprint has no effect
  First image opened in GIMP offset
  Align Tool doesn't work properly if it is the active tool at startup
2009-02-18 08:56:09 +00:00
joerg
1f9d754f97 Reset maintainer, mail bounced 2009-02-17 13:02:20 +00:00
snj
155e103805 Add user-destdir support. 2009-02-17 01:08:24 +00:00
joerg
464184154f Fix build with Python 2.5 due to missing source encoding. 2009-02-16 16:49:16 +00:00
drochner
821a3690a6 This does not need glib1. bump PKGREVISION 2009-02-16 16:25:38 +00:00
wiz
81acd8c23c Remove some more direct dependencies that are implied by kde3.
Suggested by markd@
2009-02-16 00:02:11 +00:00
wiz
f0a6c02a03 Make libXt dependency a runtime one, because of:
ERROR: /usr/pkg/lib/libXt.so.6: libXt-1.0.5nb1 is not a runtime dependency
Bump PKGREVISION.

Mark as user-destdir ready.
2009-02-15 23:16:35 +00:00
jmcneill
24d107bd50 + quesoglc 2009-02-15 16:04:32 +00:00
jmcneill
fb96339c4d Import quesoglc version 0.7.1.
QuesoGLC is a free (as in free speech) implementation of the OpenGL Character
Renderer (GLC). QuesoGLC is based on the FreeType library, provides Unicode
support and is designed to be easily ported to any platform that supports both
FreeType and the OpenGL API.
2009-02-15 16:03:46 +00:00
wiz
886e1c5e13 Fix build with latest libgpod, and depend on it. Bump PKGREVISION.
Patches from upstream, based on
http://lists.kde.org/?l=kde-commits&m=123341209907417&w=2
2009-02-15 14:41:40 +00:00
joerg
aaa2360211 Fix build with newer Gtk. 2009-02-14 18:33:06 +00:00
joerg
aff34a0e88 Needs libXpm, otherwise the icc_examine plugin will not be configured. 2009-02-13 14:17:03 +00:00
gdt
1965b85a77 Update to 7.67. Many changes omitted.
- IMPORTANT: Fixed bug introduced in version 7.01 which could cause corruption
    of TIFF-format images in very rare situations when adding tags to an image
    containing very large (> 10 MB) binary data blocks
  - Enhanced -listx option to give short output when used after -s
  - Included 2 new argument files in distribution: xmp2gps.args and gps2xmp.args
  - Prevent writing of TIFF images containing the obsolete (and unsupported)
    TIFF 6.0 JPEG extensions
2009-02-13 01:29:49 +00:00
joerg
9e32bd6a51 Move to proper Python Egg building. Bump revision. 2009-02-12 00:46:34 +00:00
joerg
f0bb01e6ae Fix build with newer Python versions. Add DESTDIR support. 2009-02-11 17:11:58 +00:00
joerg
be089192f3 Sort PYTHON_VERSIONS_ACCEPTED. 2009-02-11 14:23:31 +00:00
abs
62fa118560 update for new homepage and add PKG_DESTDIR_SUPPORT. Bump PKGREVISION 2009-02-10 11:59:16 +00:00
joerg
3c645bb7fc Switch to Python 2.5 as default. Bump revision of all packages that have
changed runtime dependencies now.
2009-02-09 22:56:21 +00:00
joerg
e2107c85f6 Remove Python 2.1 support. 2009-02-09 21:09:20 +00:00
obache
e02d90091c Update rabbit to 0.5.9.
== Changes 0.5.9 from 0.5.8: 2009-02-09

  * Improvements
    * HTML output: supported link to PDF.
    * added rabbit-command command line tool to control Rabbit.
    * supported reflected image effect (requested by kdmsnr)

      Example:
        http://www.clear-code.com/archives/SendaiRubyKaigi01/love-and-continue-it-104.html
        http://www.clear-code.com/archives/SendaiRubyKaigi01/love-and-continue-it-085.html

      How to write:
        # image
        # src = XXX.jpg
        # relative_height = 80
        # reflect_ratio = 0.5

  * Theme
    * New themes
      * pdf-tortoise-and-hare:
        uses tortoise and hare timer when PDF viewer
        mode. Allotted time is specified by
        RABBIT_ALLOTTED_TIME environment variable.

        Example:
          % RABBIT_ALLOTTED_TIME=4.5m rabbit --theme pdf-tortoise-and-hare XXX.pdf
      * lightning-clear-blue:
        uses large character slides in bluish clear-blue theme.
      * title-on-image-toolkit:
        superimposes title on image.

        Example:
          http://www.clear-code.com/archives/SendaiRubyKaigi01/love-and-continue-it-036.html

        How to use:
          In slide:
            = Users Group

              # image
              # src = shocker.jpg
              # relative_height = 90

          In theme:
            include_theme("title-on-image-toolkit")

            match(Slide) do |slides|
              slides.each do |slide|
                slide.title_on_image if slide.title_on_image?
              end
            end

  * Bug fixes
    * fixed wrong Wiki format detection.
2009-02-09 08:33:32 +00:00
joerg
98ce32ae0a Needs intltool. 2009-02-07 21:51:08 +00:00
joerg
82d70baea5 Needs pkg-config. 2009-02-07 16:58:04 +00:00
jmorse
caea2aa488 Bump cheese PKGREVISION 2009-02-06 17:46:02 +00:00
jmorse
c6a05f6666 Updated graphics/cheese to 2.24.3nb1, fixes detection of webcams through hal. 2009-02-06 17:01:49 +00:00
obache
ae5dec5284 Update RMagick to 2.9.1.
Changes:
RMagick 2.9.1
    o Fix a bug that prevents the use of transparent background colors when
      built with ImageMagick 6.4.9-0
2009-02-03 12:44:52 +00:00
obache
0e5089350b Reset BUILTIN_PKG after inclution of pthread.builtin.mk.
workaround of PR 40254.
2009-02-03 08:35:13 +00:00
adam
35859d9fdd PLIST fix; svg now is an option 2009-02-03 06:21:40 +00:00