From 44f8fb95e68750132faa3fd3668ef53d3c0d39ae Mon Sep 17 00:00:00 2001 From: bland Date: Sat, 17 Jul 2004 12:34:56 +0000 Subject: Add inkscape 0.39 here since it may be built only on 5.x system atm. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2481 df743ca5-7f9a-e211-a948-0013205c9059 --- graphics/inkscape/Makefile | 44 ++++ graphics/inkscape/distinfo | 2 + graphics/inkscape/files/patch-configure | 23 ++ .../inkscape/files/patch-src::extension::db.cpp | 17 ++ .../inkscape/files/patch-src::libnr::nr-matrix.cpp | 10 + .../inkscape/files/patch-src::livarot::Path.cpp | 10 + .../files/patch-src::livarot::PathOutline.cpp | 10 + graphics/inkscape/files/patch-src::remove-last.h | 19 ++ graphics/inkscape/pkg-descr | 9 + graphics/inkscape/pkg-plist | 274 +++++++++++++++++++++ 10 files changed, 418 insertions(+) create mode 100644 graphics/inkscape/Makefile create mode 100644 graphics/inkscape/distinfo create mode 100644 graphics/inkscape/files/patch-configure create mode 100644 graphics/inkscape/files/patch-src::extension::db.cpp create mode 100644 graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp create mode 100644 graphics/inkscape/files/patch-src::livarot::Path.cpp create mode 100644 graphics/inkscape/files/patch-src::livarot::PathOutline.cpp create mode 100644 graphics/inkscape/files/patch-src::remove-last.h create mode 100644 graphics/inkscape/pkg-descr create mode 100644 graphics/inkscape/pkg-plist (limited to 'graphics') diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile new file mode 100644 index 000000000..ac1f2a139 --- /dev/null +++ b/graphics/inkscape/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: inkscape +# Date created: 17 Nov 2003 +# Whom: Alexander Nedotsukov +# +# $FreeBSD$ +# + +PORTNAME= inkscape +PORTVERSION= 0.39 +CATEGORIES= graphics gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= gnome@FreeBSD.org +COMMENT= A program seeks to become a full featured open source SVG editor + +LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ + sigc-1.2.5:${PORTSDIR}/devel/libsigc++12 \ + gtkspell.0:${PORTSDIR}/textproc/gtkspell2 +RUN_DEPENDS= ${SITE_PERL}/XML/XQL.pm:${PORTSDIR}/textproc/p5-XML-XQL + +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_GNOME= gnomeprefix gnomehack lthack intlhack libglade2 libartlgpl2 libgnomeprintui +USE_REINPLACE= yes +USE_LIBTOOL_VER=13 +CONFIGURE_ARGS= --with-popt \ + --with-gnome-print +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 -I${X11BASE}/include -I${LOCALBASE}" \ + LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -L${LOCALBASE}" + +MAN1= inkscape.1 inkview.1 + +.include + +.if ${OSVERSION} < 500000 +IGNORE= "Can not be built with stock C++ compiller" +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|||g' \ + ${WRKSRC}/src/helper/action.cpp + +.include diff --git a/graphics/inkscape/distinfo b/graphics/inkscape/distinfo new file mode 100644 index 000000000..a9531209c --- /dev/null +++ b/graphics/inkscape/distinfo @@ -0,0 +1,2 @@ +MD5 (inkscape-0.39.tar.gz) = c9ea2b62cb505681e65e3cc16007fd09 +SIZE (inkscape-0.39.tar.gz) = 4332469 diff --git a/graphics/inkscape/files/patch-configure b/graphics/inkscape/files/patch-configure new file mode 100644 index 000000000..35d18d8c5 --- /dev/null +++ b/graphics/inkscape/files/patch-configure @@ -0,0 +1,23 @@ +--- configure.orig Sat Apr 10 03:28:51 2004 ++++ configure Sat Apr 10 04:47:54 2004 +@@ -16589,17 +16589,12 @@ + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + +-/* Override any gcc2 internal prototype to avoid an error. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-/* We use char because int might match the return type of a gcc2 +- builtin and then its argument prototype would still apply. */ +-char dgettext (); ++#include ++ + int + main () + { +-dgettext (); ++dgettext ("",""); + ; + return 0; + } diff --git a/graphics/inkscape/files/patch-src::extension::db.cpp b/graphics/inkscape/files/patch-src::extension::db.cpp new file mode 100644 index 000000000..47f6c986f --- /dev/null +++ b/graphics/inkscape/files/patch-src::extension::db.cpp @@ -0,0 +1,17 @@ +--- src/extension/db.cpp.orig Sat Jul 17 11:50:33 2004 ++++ src/extension/db.cpp Sat Jul 17 11:52:55 2004 +@@ -80,7 +80,13 @@ + + if (key == NULL) return NULL; + +- mod = (*moduledict.find(key)).second; ++ std::map ::const_iterator i = ++ moduledict.find(key); ++ ++ if (i == moduledict.end()) ++ return NULL; ++ ++ mod = i->second; + + if ( !mod || mod->deactivated() ) + return NULL; diff --git a/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp b/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp new file mode 100644 index 000000000..e8da0f994 --- /dev/null +++ b/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp @@ -0,0 +1,10 @@ +--- src/libnr/nr-matrix.cpp.org Sun Feb 15 09:45:06 2004 ++++ src/libnr/nr-matrix.cpp Sun Feb 15 09:44:32 2004 +@@ -9,6 +9,7 @@ + * This code is in public domain + */ + ++#include + #include "nr-matrix.h" + + NRMatrix * diff --git a/graphics/inkscape/files/patch-src::livarot::Path.cpp b/graphics/inkscape/files/patch-src::livarot::Path.cpp new file mode 100644 index 000000000..587ec22c4 --- /dev/null +++ b/graphics/inkscape/files/patch-src::livarot::Path.cpp @@ -0,0 +1,10 @@ +--- src/livarot/Path.cpp.orig Sat Apr 10 03:53:47 2004 ++++ src/livarot/Path.cpp Sat Apr 10 03:53:52 2004 +@@ -7,6 +7,7 @@ + */ + + #include ++#include + #include "Path.h" + #include + #include diff --git a/graphics/inkscape/files/patch-src::livarot::PathOutline.cpp b/graphics/inkscape/files/patch-src::livarot::PathOutline.cpp new file mode 100644 index 000000000..bf21ea2a4 --- /dev/null +++ b/graphics/inkscape/files/patch-src::livarot::PathOutline.cpp @@ -0,0 +1,10 @@ +--- src/livarot/PathOutline.cpp.orig Sat Apr 10 04:09:41 2004 ++++ src/livarot/PathOutline.cpp Sat Apr 10 04:34:35 2004 +@@ -9,6 +9,7 @@ + #include "Path.h" + //#include "MyMath.h" + #include ++#include + #include + + /* diff --git a/graphics/inkscape/files/patch-src::remove-last.h b/graphics/inkscape/files/patch-src::remove-last.h new file mode 100644 index 000000000..059f14ac7 --- /dev/null +++ b/graphics/inkscape/files/patch-src::remove-last.h @@ -0,0 +1,19 @@ +--- src/remove-last.h.orig Mon Apr 12 09:56:06 2004 ++++ src/remove-last.h Mon Apr 12 09:56:47 2004 +@@ -2,6 +2,7 @@ + #define __REMOVE_LAST_H__ + + #include ++#include + #include + + template +@@ -9,7 +10,7 @@ + { + using std::vector; + +- typename vector::reverse_iterator i(find(seq.rbegin(), seq.rend(), elem)); ++ typename vector::reverse_iterator i(std::find(seq.rbegin(), seq.rend(), elem)); + g_assert( i != seq.rend() ); + typename vector::iterator ii(&*i); + seq.erase(ii); diff --git a/graphics/inkscape/pkg-descr b/graphics/inkscape/pkg-descr new file mode 100644 index 000000000..fbd138147 --- /dev/null +++ b/graphics/inkscape/pkg-descr @@ -0,0 +1,9 @@ +Inkscape seeks to become a full featured open source SVG editor. +Derived from the highly popular Sodipodi codebase, Inkscape strives +to build full XML, SVG, and CSS2 compliance. + +Features include alpha blending, node editing, svg-to-png export, +and more. Project aims for capabilities similar to Illustrator, +CorelDraw, Visio, etc. + +WWW: http://www.inkscape.org diff --git a/graphics/inkscape/pkg-plist b/graphics/inkscape/pkg-plist new file mode 100644 index 000000000..d4b7dc1ab --- /dev/null +++ b/graphics/inkscape/pkg-plist @@ -0,0 +1,274 @@ +bin/inkscape +bin/inkview +share/gnome/applications/inkscape.desktop +share/gnome/inkscape/clipart/README +share/gnome/inkscape/clipart/README-ribbon.txt +share/gnome/inkscape/clipart/inkscape.logo.svg +share/gnome/inkscape/clipart/orav.svg +share/gnome/inkscape/clipart/ribbon.svg +share/gnome/inkscape/clipart/tux.png +share/gnome/inkscape/clipart/tux.svg +share/gnome/inkscape/examples/README +share/gnome/inkscape/examples/gradient.svg +share/gnome/inkscape/examples/i18n.svg +share/gnome/inkscape/examples/markers.svg +share/gnome/inkscape/examples/stars.svgz +share/gnome/inkscape/examples/tiger.svgz +share/gnome/inkscape/extensions/SpSVG.pm +share/gnome/inkscape/extensions/ai_input.inkmod +share/gnome/inkscape/extensions/ai_output.inkmod +share/gnome/inkscape/extensions/dia.inkmod +share/gnome/inkscape/extensions/dia2svg.sh +share/gnome/inkscape/extensions/dropshadow.inkmod +share/gnome/inkscape/extensions/eps_input.inkmod +share/gnome/inkscape/extensions/epsi_output.inkmod +share/gnome/inkscape/extensions/ill2svg.pl +share/gnome/inkscape/extensions/ps2epsi.sh +share/gnome/inkscape/extensions/ps_input.inkmod +share/gnome/inkscape/extensions/roundhole +share/gnome/inkscape/extensions/roundhole.inkmod +share/gnome/inkscape/extensions/roundhole.xpm +share/gnome/inkscape/extensions/sk2svg.sh +share/gnome/inkscape/extensions/sk_input.inkmod +share/gnome/inkscape/extensions/svg_dropshadow +share/gnome/inkscape/extensions/svgz_input.inkmod +share/gnome/inkscape/extensions/svgz_output.inkmod +share/gnome/inkscape/extensions/txt2svg.inkmod +share/gnome/inkscape/extensions/txt2svg.pl +share/gnome/inkscape/extensions/wmf_input.inkmod +share/gnome/inkscape/fonts/README +share/gnome/inkscape/gradients/README +share/gnome/inkscape/icons/add.xpm +share/gnome/inkscape/icons/add_xml_element_node.xpm +share/gnome/inkscape/icons/add_xml_text_node.xpm +share/gnome/inkscape/icons/al_bottom_in.xpm +share/gnome/inkscape/icons/al_bottom_out.xpm +share/gnome/inkscape/icons/al_center_hor.xpm +share/gnome/inkscape/icons/al_center_ver.xpm +share/gnome/inkscape/icons/al_left_in.xpm +share/gnome/inkscape/icons/al_left_out.xpm +share/gnome/inkscape/icons/al_right_in.xpm +share/gnome/inkscape/icons/al_right_out.xpm +share/gnome/inkscape/icons/al_top_in.xpm +share/gnome/inkscape/icons/al_top_out.xpm +share/gnome/inkscape/icons/align_bc.xpm +share/gnome/inkscape/icons/align_bl.xpm +share/gnome/inkscape/icons/align_br.xpm +share/gnome/inkscape/icons/align_cc.xpm +share/gnome/inkscape/icons/align_cl.xpm +share/gnome/inkscape/icons/align_cr.xpm +share/gnome/inkscape/icons/align_tc.xpm +share/gnome/inkscape/icons/align_tl.xpm +share/gnome/inkscape/icons/align_tr.xpm +share/gnome/inkscape/icons/angle_180.xpm +share/gnome/inkscape/icons/angle_270.xpm +share/gnome/inkscape/icons/angle_90.xpm +share/gnome/inkscape/icons/angle_any.xpm +share/gnome/inkscape/icons/arrows_hor.xpm +share/gnome/inkscape/icons/arrows_ver.xpm +share/gnome/inkscape/icons/cap_butt.xpm +share/gnome/inkscape/icons/cap_round.xpm +share/gnome/inkscape/icons/cap_square.xpm +share/gnome/inkscape/icons/clear.xpm +share/gnome/inkscape/icons/create_new.xpm +share/gnome/inkscape/icons/curve.xpm +share/gnome/inkscape/icons/cusp.xpm +share/gnome/inkscape/icons/del.xpm +share/gnome/inkscape/icons/delete_xml_attribute.xpm +share/gnome/inkscape/icons/delete_xml_node.xpm +share/gnome/inkscape/icons/dimension_hor.xpm +share/gnome/inkscape/icons/dimension_ver.xpm +share/gnome/inkscape/icons/div.xpm +share/gnome/inkscape/icons/draw_arc.xpm +share/gnome/inkscape/icons/draw_dynahand.xpm +share/gnome/inkscape/icons/draw_freehand.xpm +share/gnome/inkscape/icons/draw_node.xpm +share/gnome/inkscape/icons/draw_pen.xpm +share/gnome/inkscape/icons/draw_rect.xpm +share/gnome/inkscape/icons/draw_select.xpm +share/gnome/inkscape/icons/draw_spiral.xpm +share/gnome/inkscape/icons/draw_star.xpm +share/gnome/inkscape/icons/draw_text.xpm +share/gnome/inkscape/icons/draw_zoom.xpm +share/gnome/inkscape/icons/dt_active.xpm +share/gnome/inkscape/icons/dt_inactive.xpm +share/gnome/inkscape/icons/duplicate.xpm +share/gnome/inkscape/icons/duplicate_xml_node.xpm +share/gnome/inkscape/icons/edge_down.xpm +share/gnome/inkscape/icons/edge_up.xpm +share/gnome/inkscape/icons/edit_copy.xpm +share/gnome/inkscape/icons/edit_cut.xpm +share/gnome/inkscape/icons/edit_delete.xpm +share/gnome/inkscape/icons/edit_duplicate.xpm +share/gnome/inkscape/icons/edit_paste.xpm +share/gnome/inkscape/icons/edit_redo.xpm +share/gnome/inkscape/icons/edit_undo.xpm +share/gnome/inkscape/icons/ellipse.xpm +share/gnome/inkscape/icons/file_export.xpm +share/gnome/inkscape/icons/file_import.xpm +share/gnome/inkscape/icons/file_new.xpm +share/gnome/inkscape/icons/file_open.xpm +share/gnome/inkscape/icons/file_print.xpm +share/gnome/inkscape/icons/file_print_preview.xpm +share/gnome/inkscape/icons/file_save.xpm +share/gnome/inkscape/icons/file_save_as.xpm +share/gnome/inkscape/icons/fill.xpm +share/gnome/inkscape/icons/fill_fractal.xpm +share/gnome/inkscape/icons/fill_gradient.xpm +share/gnome/inkscape/icons/fill_none.xpm +share/gnome/inkscape/icons/fill_pattern.xpm +share/gnome/inkscape/icons/fill_radial.xpm +share/gnome/inkscape/icons/fill_solid.xpm +share/gnome/inkscape/icons/flip_hor.xpm +share/gnome/inkscape/icons/flip_ver.xpm +share/gnome/inkscape/icons/font.xpm +share/gnome/inkscape/icons/forward.xpm +share/gnome/inkscape/icons/freehand.xpm +share/gnome/inkscape/icons/guide_dialog.png +share/gnome/inkscape/icons/icons.svg +share/gnome/inkscape/icons/join.xpm +share/gnome/inkscape/icons/join_bevel.xpm +share/gnome/inkscape/icons/join_miter.xpm +share/gnome/inkscape/icons/join_round.xpm +share/gnome/inkscape/icons/line.xpm +share/gnome/inkscape/icons/line_dashed.xpm +share/gnome/inkscape/icons/line_doubled.xpm +share/gnome/inkscape/icons/line_full.xpm +share/gnome/inkscape/icons/lock_aspect_no.xpm +share/gnome/inkscape/icons/lock_aspect_yes.xpm +share/gnome/inkscape/icons/marker_arrow_end.xpm +share/gnome/inkscape/icons/marker_arrow_start.xpm +share/gnome/inkscape/icons/marker_none_end.xpm +share/gnome/inkscape/icons/marker_none_start.xpm +share/gnome/inkscape/icons/marker_triangle_end.xpm +share/gnome/inkscape/icons/marker_triangle_start.xpm +share/gnome/inkscape/icons/move.xpm +share/gnome/inkscape/icons/object_align.xpm +share/gnome/inkscape/icons/object_fill.xpm +share/gnome/inkscape/icons/object_flip_hor.xpm +share/gnome/inkscape/icons/object_flip_ver.xpm +share/gnome/inkscape/icons/object_font.xpm +share/gnome/inkscape/icons/object_layout.xpm +share/gnome/inkscape/icons/object_reset.xpm +share/gnome/inkscape/icons/object_rotate.xpm +share/gnome/inkscape/icons/object_stroke.xpm +share/gnome/inkscape/icons/object_tocurve.xpm +share/gnome/inkscape/icons/object_trans.xpm +share/gnome/inkscape/icons/origin.xpm +share/gnome/inkscape/icons/properties_fill.xpm +share/gnome/inkscape/icons/properties_layout.xpm +share/gnome/inkscape/icons/properties_stroke.xpm +share/gnome/inkscape/icons/quit_nope.xpm +share/gnome/inkscape/icons/quit_yep.xpm +share/gnome/inkscape/icons/rect.xpm +share/gnome/inkscape/icons/reread.xpm +share/gnome/inkscape/icons/rotate.xpm +share/gnome/inkscape/icons/rotate_left.xpm +share/gnome/inkscape/icons/rotate_right.xpm +share/gnome/inkscape/icons/scale.xpm +share/gnome/inkscape/icons/scale_hor.xpm +share/gnome/inkscape/icons/scale_ver.xpm +share/gnome/inkscape/icons/select.xpm +share/gnome/inkscape/icons/selection_bot.xpm +share/gnome/inkscape/icons/selection_break.xpm +share/gnome/inkscape/icons/selection_combine.xpm +share/gnome/inkscape/icons/selection_down.xpm +share/gnome/inkscape/icons/selection_group.xpm +share/gnome/inkscape/icons/selection_top.xpm +share/gnome/inkscape/icons/selection_ungroup.xpm +share/gnome/inkscape/icons/selection_up.xpm +share/gnome/inkscape/icons/seperate_tool.xpm +share/gnome/inkscape/icons/set.xpm +share/gnome/inkscape/icons/skew.xpm +share/gnome/inkscape/icons/skew_hor.xpm +share/gnome/inkscape/icons/skew_ver.xpm +share/gnome/inkscape/icons/smooth.xpm +share/gnome/inkscape/icons/stroke.xpm +share/gnome/inkscape/icons/sym.xpm +share/gnome/inkscape/icons/text.xpm +share/gnome/inkscape/icons/toback.xpm +share/gnome/inkscape/icons/tofront.xpm +share/gnome/inkscape/icons/toolbox_draw.xpm +share/gnome/inkscape/icons/toolbox_edit.xpm +share/gnome/inkscape/icons/toolbox_file.xpm +share/gnome/inkscape/icons/toolbox_node.xpm +share/gnome/inkscape/icons/toolbox_object.xpm +share/gnome/inkscape/icons/toolbox_select.xpm +share/gnome/inkscape/icons/toolbox_zoom.xpm +share/gnome/inkscape/icons/unknown.xpm +share/gnome/inkscape/icons/writing_mode_lr.xpm +share/gnome/inkscape/icons/writing_mode_tb.xpm +share/gnome/inkscape/icons/zoom.xpm +share/gnome/inkscape/icons/zoom_1_to_1.xpm +share/gnome/inkscape/icons/zoom_1_to_2.xpm +share/gnome/inkscape/icons/zoom_2_to_1.xpm +share/gnome/inkscape/icons/zoom_draw.xpm +share/gnome/inkscape/icons/zoom_in.xpm +share/gnome/inkscape/icons/zoom_out.xpm +share/gnome/inkscape/icons/zoom_page.xpm +share/gnome/inkscape/icons/zoom_select.xpm +share/gnome/inkscape/keyboards/README +share/gnome/inkscape/markers/markers.svg +share/gnome/inkscape/palettes/README +share/gnome/inkscape/patterns/README +share/gnome/inkscape/screens/about.svg +share/gnome/inkscape/screens/keys.sl.svg +share/gnome/inkscape/screens/keys.svg +share/gnome/inkscape/templates/README +share/gnome/inkscape/tutorials/elementsofdesign.sl.svg +share/gnome/inkscape/tutorials/elementsofdesign.svg +share/gnome/inkscape/tutorials/tipsandtricks.sl.svg +share/gnome/inkscape/tutorials/tipsandtricks.svg +share/gnome/inkscape/tutorials/tutorial-advanced.fr.svg +share/gnome/inkscape/tutorials/tutorial-advanced.sl.svg +share/gnome/inkscape/tutorials/tutorial-advanced.svg +share/gnome/inkscape/tutorials/tutorial-basic.fr.svg +share/gnome/inkscape/tutorials/tutorial-basic.ru.svg +share/gnome/inkscape/tutorials/tutorial-basic.sl.svg +share/gnome/inkscape/tutorials/tutorial-basic.svg +share/gnome/pixmaps/inkscape.png +share/locale/am/LC_MESSAGES/inkscape.mo +share/locale/az/LC_MESSAGES/inkscape.mo +share/locale/be/LC_MESSAGES/inkscape.mo +share/locale/ca/LC_MESSAGES/inkscape.mo +share/locale/cs/LC_MESSAGES/inkscape.mo +share/locale/da/LC_MESSAGES/inkscape.mo +share/locale/de/LC_MESSAGES/inkscape.mo +share/locale/el/LC_MESSAGES/inkscape.mo +share/locale/es/LC_MESSAGES/inkscape.mo +share/locale/es_MX/LC_MESSAGES/inkscape.mo +share/locale/et/LC_MESSAGES/inkscape.mo +share/locale/fr/LC_MESSAGES/inkscape.mo +share/locale/ga/LC_MESSAGES/inkscape.mo +share/locale/gl/LC_MESSAGES/inkscape.mo +share/locale/hu/LC_MESSAGES/inkscape.mo +share/locale/it/LC_MESSAGES/inkscape.mo +share/locale/ja/LC_MESSAGES/inkscape.mo +share/locale/nl/LC_MESSAGES/inkscape.mo +share/locale/no/LC_MESSAGES/inkscape.mo +share/locale/pl/LC_MESSAGES/inkscape.mo +share/locale/pt/LC_MESSAGES/inkscape.mo +share/locale/pt_BR/LC_MESSAGES/inkscape.mo +share/locale/ru/LC_MESSAGES/inkscape.mo +share/locale/sk/LC_MESSAGES/inkscape.mo +share/locale/sl/LC_MESSAGES/inkscape.mo +share/locale/sr/LC_MESSAGES/inkscape.mo +share/locale/sr@Latn/LC_MESSAGES/inkscape.mo +share/locale/sv/LC_MESSAGES/inkscape.mo +share/locale/tr/LC_MESSAGES/inkscape.mo +share/locale/uk/LC_MESSAGES/inkscape.mo +share/locale/zh_CN/LC_MESSAGES/inkscape.mo +@dirrm share/gnome/inkscape/tutorials +@dirrm share/gnome/inkscape/templates +@dirrm share/gnome/inkscape/screens +@dirrm share/gnome/inkscape/patterns +@dirrm share/gnome/inkscape/palettes +@dirrm share/gnome/inkscape/markers +@dirrm share/gnome/inkscape/keyboards +@dirrm share/gnome/inkscape/icons +@dirrm share/gnome/inkscape/gradients +@dirrm share/gnome/inkscape/fonts +@dirrm share/gnome/inkscape/extensions +@dirrm share/gnome/inkscape/examples +@dirrm share/gnome/inkscape/clipart +@dirrm share/gnome/inkscape -- cgit v1.2.3