diff options
author | adam <adam@pkgsrc.org> | 2005-07-28 13:52:10 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2005-07-28 13:52:10 +0000 |
commit | 395fef8519039830c52890fe49c30dd6b196eae1 (patch) | |
tree | b5ecf2ce3f988ae3bf96d26cc691ab0f1c59e5cd /graphics/inkscape/Makefile | |
parent | 3052d94a8188a6f05421dcb82681cbdddc95fa1f (diff) | |
download | pkgsrc-395fef8519039830c52890fe49c30dd6b196eae1.tar.gz |
Changes 0.42:
* Flowed text: text objects that automatically reflow in any shape (not
only rectangle).
* Text selection: finally you can shift+arrow or drag over part of a
text and apply any style to the selected span.
* Gradient tool: a completely redesigned and much easier to use gradient
interface, with gradient handles displayed right on canvas.
* Effects are now usable from within Inkscape on all platforms; this
version ships with a collection of effects including path
interpolation, randomization, and various fractal algorithms.
* Color swatches: a standard facility in most graphic software, now in
Inkscape too.
* Colored clones: clones can now be painted differently from their
original.
* Tile tracing: the Tile Clones dialog can trace the existing image with
the tiling, producing a multitude of exciting effects.
* Grid arrange, baseline align, unclumping: new powerful ways to arrange
objects.
* Better PS/EPS export: gradient support, better text handling, a
command line option for batch export.
* Command line SVG analysis: use Inkscape from the command line to query
coordinates and dimensions of objects in an SVG file.
* Better SVG/CSS compliance: notably, internal CSS stylesheets are now
supported (read-only).
* OS X support: In addition to Linux and Windows, Inkscape 0.42 is
available as a fully self-contained dmg package for Mac OS X.
Diffstat (limited to 'graphics/inkscape/Makefile')
-rw-r--r-- | graphics/inkscape/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile index b958f25e9ce..c4488326536 100644 --- a/graphics/inkscape/Makefile +++ b/graphics/inkscape/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2005/07/22 23:11:06 adam Exp $ +# $NetBSD: Makefile,v 1.11 2005/07/28 13:52:10 adam Exp $ -DISTNAME= inkscape-0.41 -PKGREVISION= 1 +DISTNAME= inkscape-0.42 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=inkscape/} EXTRACT_SUFX= .tar.bz2 @@ -10,7 +9,7 @@ MAINTAINER= reed@reedmedia.net HOMEPAGE= http://www.inkscape.org/ COMMENT= Scalable Vector Graphics (SVG) editor -.if ! exists (/usr/bin/iconv) +.if !exists (/usr/bin/iconv) BUILD_DEPENDS+= libiconv-[0-9]*:../../converters/libiconv .endif @@ -23,16 +22,17 @@ USE_TOOLS+= gmake GNU_CONFIGURE= yes BUILDLINK_DEPENDS.boehm-gc+= boehm-gc>=6.4 + .include "../../devel/boehm-gc/buildlink3.mk" .include "../../devel/pango/buildlink3.mk" .include "../../devel/pkg-config/buildlink3.mk" .include "../../devel/popt/buildlink3.mk" .include "../../graphics/libart2/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" +.include "../../sysutils/gnome-vfs2/buildlink3.mk" .include "../../textproc/gtkspell/buildlink3.mk" .include "../../textproc/intltool/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" .include "../../textproc/libxslt/buildlink3.mk" .include "../../x11/gtkmm/buildlink3.mk" - .include "../../mk/bsd.pkg.mk" |