This release brings the exciting new features developed by the Google Summer of Code 2006 participants, as well as tons of other improvements across the board. Here are the highlights: * Gaussian blur is the first SVG filter supported by Inkscape. You can blur any object to any extent - yet it remains vector and fully editable. This gives a huge boost to Inkscape as a creative art tool. * Display speed and interactivity: not only does Inkscape render faster, but it can now respond to user input before it finished redrawing the screen, which greatly improves the interactivity of the program. * History dialog makes it easy to to review your editing session and jump to any step of it, undoing and redoing multiple actions with one click. * Several important tool features are added, notably the new selection mode in Node tool and the adjustable rounded caps in Calligraphic pen. * Bitmap tracing works better for multi-color traces, sports a redesigned dialog and several new options. * Many new extension effects are added, including Color effects and Pattern along path. * The Outline mode has got many fixes and improvements, including a keyboard shortcut. * Several new commands in Help menu open various Inkscape-related pages in your default browser, making Inkscape reference information more accessible as you work. * Dozens of smaller features are added throughout the program, and hundreds of bugs are fixed.
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.30 2007/02/05 20:20:03 adam Exp $
|
|
|
|
DISTNAME= inkscape-0.45
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=inkscape/}
|
|
|
|
MAINTAINER= reed@reedmedia.net
|
|
HOMEPAGE= http://www.inkscape.org/
|
|
COMMENT= Scalable Vector Graphics (SVG) editor
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.if !exists (/usr/bin/iconv)
|
|
BUILD_DEPENDS+= libiconv-[0-9]*:../../converters/libiconv
|
|
.endif
|
|
|
|
GCC_REQD+= 3.0
|
|
USE_DIRS+= xdg-1.1
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake intltool msgfmt pkg-config
|
|
GNU_CONFIGURE= yes
|
|
|
|
BUILDLINK_API_DEPENDS.boehm-gc+= boehm-gc>=6.4
|
|
|
|
UNLIMIT_RESOURCES= datasize
|
|
|
|
.include "../../devel/boehm-gc/buildlink3.mk"
|
|
.include "../../devel/pango/buildlink3.mk"
|
|
.include "../../devel/popt/buildlink3.mk"
|
|
.include "../../graphics/lcms/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/libxml2/buildlink3.mk"
|
|
.include "../../textproc/libxslt/buildlink3.mk"
|
|
.include "../../x11/gtkmm/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|