diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/Makefile | 1 | ||||
-rw-r--r-- | graphics/sodipodi/Makefile | 37 | ||||
-rw-r--r-- | graphics/sodipodi/distinfo | 2 | ||||
-rw-r--r-- | graphics/sodipodi/files/patch-src::xml::repr-io.c | 14 | ||||
-rw-r--r-- | graphics/sodipodi/files/patch-src_helper_png-write.c | 29 | ||||
-rw-r--r-- | graphics/sodipodi/files/patch-src_libnrtype_nr-type-fc2.c | 14 | ||||
-rw-r--r-- | graphics/sodipodi/files/patch-src_main.c | 21 | ||||
-rw-r--r-- | graphics/sodipodi/pkg-descr | 13 | ||||
-rw-r--r-- | graphics/sodipodi/pkg-plist | 225 |
9 files changed, 0 insertions, 356 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index cc479b2ad423..04fc4e7eac2d 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -977,7 +977,6 @@ SUBDIR += skencil SUBDIR += sketch SUBDIR += sng - SUBDIR += sodipodi SUBDIR += springgraph SUBDIR += squish SUBDIR += sswf diff --git a/graphics/sodipodi/Makefile b/graphics/sodipodi/Makefile deleted file mode 100644 index 8376adb91b6a..000000000000 --- a/graphics/sodipodi/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# Created by: Yukihiro Nakai <nakai@FreeBSD.org> -# $FreeBSD$ -# $MCom: ports/graphics/sodipodi/Makefile,v 1.3 2007/05/30 03:21:43 mezz Exp $ - -PORTNAME= sodipodi -PORTVERSION= 0.34 -PORTREVISION= 16 -CATEGORIES= graphics gnome -MASTER_SITES= SF - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A small vector based drawing program with GNOME libraries - -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ - png15:${PORTSDIR}/graphics/png - -USE_GNOME= gnomeprefix gnomehack libglade2 libartlgpl2 desktopfileutils -USES= gettext gmake pkgconfig -USE_AUTOTOOLS= libtool -CONFIGURE_ARGS= --without-gnome-print \ - --with-popt -CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 -LDFLAGS+= -L${LOCALBASE}/lib - -MAN1= sodipodi.1 - -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|g' \ - ${WRKSRC}/src/helper/action.c \ - ${WRKSRC}/src/helper/bezier-utils.c \ - ${WRKSRC}/src/libarikkei/arikkei-dict.c \ - ${WRKSRC}/src/libarikkei/arikkei-token.c \ - ${WRKSRC}/src/libarikkei/arikkei-strlib.c \ - ${WRKSRC}/src/libnr/nr-pathops.c - -.include <bsd.port.mk> diff --git a/graphics/sodipodi/distinfo b/graphics/sodipodi/distinfo deleted file mode 100644 index 55311e630e05..000000000000 --- a/graphics/sodipodi/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (sodipodi-0.34.tar.gz) = c553d925aa7482a7ab70f36567d887de09c54b9749c0447c53be1b6513b3ff3d -SIZE (sodipodi-0.34.tar.gz) = 2327501 diff --git a/graphics/sodipodi/files/patch-src::xml::repr-io.c b/graphics/sodipodi/files/patch-src::xml::repr-io.c deleted file mode 100644 index 5cd02b582180..000000000000 --- a/graphics/sodipodi/files/patch-src::xml::repr-io.c +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- src/xml/repr-io.c 2001/11/22 15:20:50 1.1 -+++ src/xml/repr-io.c 2001/11/22 15:21:18 -@@ -1,6 +1,8 @@ - #define SP_REPR_IO_C - -+#ifdef HAVE_MALLOC_H - #include <malloc.h> -+#endif - #include <string.h> - #include <stdio.h> - #include "repr.h" diff --git a/graphics/sodipodi/files/patch-src_helper_png-write.c b/graphics/sodipodi/files/patch-src_helper_png-write.c deleted file mode 100644 index 35452d0e8a13..000000000000 --- a/graphics/sodipodi/files/patch-src_helper_png-write.c +++ /dev/null @@ -1,29 +0,0 @@ ---- src/helper/png-write.c.orig 2004-02-09 20:01:16.000000000 +0100 -+++ src/helper/png-write.c 2012-05-09 12:54:09.000000000 +0200 -@@ -111,7 +111,7 @@ - /* Set error handling. REQUIRED if you aren't supplying your own - * error hadnling functions in the png_create_write_struct() call. - */ -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - /* If we get here, we had a problem reading the file */ - fclose(fp); - png_destroy_write_struct(&png_ptr, &info_ptr); -@@ -282,7 +282,7 @@ - /* Set error handling. REQUIRED if you aren't supplying your own - * error hadnling functions in the png_create_write_struct() call. - */ -- if (setjmp (png_ptr->jmpbuf)) { -+ if (setjmp (png_jmpbuf(png_ptr))) { - /* If we get here, we had a problem reading the file */ - fclose (fp); - unlink (filename); -@@ -370,7 +370,7 @@ - - h = MIN (height - r, 64); - n = get_rows ((const unsigned char **) row_pointers, r, h, data); -- if (!n) longjmp (png_ptr->jmpbuf, 1); -+ if (!n) longjmp (png_jmpbuf(png_ptr), 1); - png_write_rows (png_ptr, row_pointers, n); - r += n; - } diff --git a/graphics/sodipodi/files/patch-src_libnrtype_nr-type-fc2.c b/graphics/sodipodi/files/patch-src_libnrtype_nr-type-fc2.c deleted file mode 100644 index 627d18e2a2ab..000000000000 --- a/graphics/sodipodi/files/patch-src_libnrtype_nr-type-fc2.c +++ /dev/null @@ -1,14 +0,0 @@ ---- src/libnrtype/nr-type-ft2.c.orig 2013-12-16 01:48:18.000000000 +0100 -+++ src/libnrtype/nr-type-ft2.c 2013-12-16 01:49:11.000000000 +0100 -@@ -13,8 +13,9 @@ - #include <stdio.h> - #include <libnr/nr-macros.h> - #include <libnr/nr-matrix.h> --#include <freetype/ftoutln.h> --#include <freetype/ftbbox.h> -+#include <ft2build.h> -+#include FT_OUTLINE_H -+#include FT_BBOX_H - #include "nr-type-ft2.h" - - #define noNRTFFT2_DEBUG diff --git a/graphics/sodipodi/files/patch-src_main.c b/graphics/sodipodi/files/patch-src_main.c deleted file mode 100644 index d14f4d4f64ad..000000000000 --- a/graphics/sodipodi/files/patch-src_main.c +++ /dev/null @@ -1,21 +0,0 @@ ---- src/main.c.orig Sun Feb 8 08:42:01 2004 -+++ src/main.c Thu Nov 25 15:25:34 2004 -@@ -27,7 +27,8 @@ - #endif - - #ifdef __FreeBSD__ --#include <floatingpoint.h> -+#include <sys/types.h> -+#include <ieeefp.h> - #endif - #include <string.h> - #include <signal.h> -@@ -216,7 +217,7 @@ - result = sp_main_console (argc, argv); - } - --#ifdef __FreeBSD__ -+#if defined(__FreeBSD__) && defined(__i386__) - fpresetsticky(FP_X_DZ|FP_X_INV); - fpsetmask(FP_X_DZ|FP_X_INV); - #endif diff --git a/graphics/sodipodi/pkg-descr b/graphics/sodipodi/pkg-descr deleted file mode 100644 index 0da663b1bdbc..000000000000 --- a/graphics/sodipodi/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -Sodipodi is a vector-based drawing program, like CorelDraw or Adobe -Illustrator from the proprietary software world, and Sketch or Kontour from -the free software world. It is free software, distributed under the terms of -the Gnu General Public License, Version 2. - -Sodipodi uses W3C SVG as its native file format. It is therefore a very useful -tool for web designers. - -It has a relatively modern display engine, giving you finely antialiased -display, alpha transparencies, vector fonts and so on. Sodipodi is written in -C, using the Gtk+ toolkit and some Gnome libraries. - -WWW: http://www.sodipodi.com/ diff --git a/graphics/sodipodi/pkg-plist b/graphics/sodipodi/pkg-plist deleted file mode 100644 index 596221f1d744..000000000000 --- a/graphics/sodipodi/pkg-plist +++ /dev/null @@ -1,225 +0,0 @@ -bin/sodipodi -lib/sodipodi/extensions/ill2svg.pl -lib/sodipodi/modules/libxmleditor.a -lib/sodipodi/modules/libxmleditor.la -lib/sodipodi/modules/libxmleditor.so -share/applications/sodipodi.desktop -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -share/pixmaps/sodipodi.png -share/sodipodi/about.svg -share/sodipodi/add.xpm -share/sodipodi/add_xml_element_node.xpm -share/sodipodi/add_xml_text_node.xpm -share/sodipodi/al_bottom_in.xpm -share/sodipodi/al_bottom_out.xpm -share/sodipodi/al_center_hor.xpm -share/sodipodi/al_center_ver.xpm -share/sodipodi/al_left_in.xpm -share/sodipodi/al_left_out.xpm -share/sodipodi/al_right_in.xpm -share/sodipodi/al_right_out.xpm -share/sodipodi/al_top_in.xpm -share/sodipodi/al_top_out.xpm -share/sodipodi/align_bc.xpm -share/sodipodi/align_bl.xpm -share/sodipodi/align_br.xpm -share/sodipodi/align_cc.xpm -share/sodipodi/align_cl.xpm -share/sodipodi/align_cr.xpm -share/sodipodi/align_tc.xpm -share/sodipodi/align_tl.xpm -share/sodipodi/align_tr.xpm -share/sodipodi/angle_180.xpm -share/sodipodi/angle_270.xpm -share/sodipodi/angle_90.xpm -share/sodipodi/angle_any.xpm -share/sodipodi/arrows_hor.xpm -share/sodipodi/arrows_ver.xpm -share/sodipodi/cap_butt.xpm -share/sodipodi/cap_round.xpm -share/sodipodi/cap_square.xpm -share/sodipodi/clear.xpm -share/sodipodi/create_new.xpm -share/sodipodi/curve.xpm -share/sodipodi/cusp.xpm -share/sodipodi/del.xpm -share/sodipodi/delete_xml_attribute.xpm -share/sodipodi/delete_xml_node.xpm -share/sodipodi/dimension_hor.xpm -share/sodipodi/dimension_ver.xpm -share/sodipodi/div.xpm -share/sodipodi/draw_arc.xpm -share/sodipodi/draw_dynahand.xpm -share/sodipodi/draw_freehand.xpm -share/sodipodi/draw_node.xpm -share/sodipodi/draw_pen.xpm -share/sodipodi/draw_rect.xpm -share/sodipodi/draw_select.xpm -share/sodipodi/draw_spiral.xpm -share/sodipodi/draw_star.xpm -share/sodipodi/draw_text.xpm -share/sodipodi/draw_zoom.xpm -share/sodipodi/dt_active.xpm -share/sodipodi/dt_inactive.xpm -share/sodipodi/duplicate.xpm -share/sodipodi/duplicate_xml_node.xpm -share/sodipodi/edge_down.xpm -share/sodipodi/edge_up.xpm -share/sodipodi/edit_copy.xpm -share/sodipodi/edit_cut.xpm -share/sodipodi/edit_delete.xpm -share/sodipodi/edit_duplicate.xpm -share/sodipodi/edit_paste.xpm -share/sodipodi/edit_redo.xpm -share/sodipodi/edit_undo.xpm -share/sodipodi/ellipse.xpm -share/sodipodi/file_export.xpm -share/sodipodi/file_import.xpm -share/sodipodi/file_new.xpm -share/sodipodi/file_open.xpm -share/sodipodi/file_print.xpm -share/sodipodi/file_print_direct.xpm -share/sodipodi/file_print_preview.xpm -share/sodipodi/file_save.xpm -share/sodipodi/file_save_as.xpm -share/sodipodi/fill.xpm -share/sodipodi/fill_fractal.xpm -share/sodipodi/fill_gradient.xpm -share/sodipodi/fill_none.xpm -share/sodipodi/fill_pattern.xpm -share/sodipodi/fill_radial.xpm -share/sodipodi/fill_solid.xpm -share/sodipodi/flip_hor.xpm -share/sodipodi/flip_ver.xpm -share/sodipodi/font.xpm -share/sodipodi/forward.xpm -share/sodipodi/freehand.xpm -share/sodipodi/guide_dialog.png -share/sodipodi/icons.svg -share/sodipodi/join.xpm -share/sodipodi/join_bevel.xpm -share/sodipodi/join_miter.xpm -share/sodipodi/join_round.xpm -share/sodipodi/line.xpm -share/sodipodi/line_dashed.xpm -share/sodipodi/line_doubled.xpm -share/sodipodi/line_full.xpm -share/sodipodi/lock_aspect_no.xpm -share/sodipodi/lock_aspect_yes.xpm -share/sodipodi/move.xpm -share/sodipodi/node.xpm -share/sodipodi/node_break.xpm -share/sodipodi/node_curve.xpm -share/sodipodi/node_cusp.xpm -share/sodipodi/node_delete.xpm -share/sodipodi/node_insert.xpm -share/sodipodi/node_join.xpm -share/sodipodi/node_line.xpm -share/sodipodi/node_smooth.xpm -share/sodipodi/node_symetric.xpm -share/sodipodi/object_align.xpm -share/sodipodi/object_fill.xpm -share/sodipodi/object_flip_hor.xpm -share/sodipodi/object_flip_ver.xpm -share/sodipodi/object_font.xpm -share/sodipodi/object_layout.xpm -share/sodipodi/object_reset.xpm -share/sodipodi/object_rotate.xpm -share/sodipodi/object_stroke.xpm -share/sodipodi/object_tocurve.xpm -share/sodipodi/object_trans.xpm -share/sodipodi/origin.xpm -share/sodipodi/properties_fill.xpm -share/sodipodi/properties_layout.xpm -share/sodipodi/properties_stroke.xpm -share/sodipodi/quit_nope.xpm -share/sodipodi/quit_yep.xpm -share/sodipodi/rect.xpm -share/sodipodi/reread.xpm -share/sodipodi/rotate.xpm -share/sodipodi/rotate_left.xpm -share/sodipodi/rotate_right.xpm -share/sodipodi/scale.xpm -share/sodipodi/scale_hor.xpm -share/sodipodi/scale_ver.xpm -share/sodipodi/select.xpm -share/sodipodi/selection_bot.xpm -share/sodipodi/selection_break.xpm -share/sodipodi/selection_combine.xpm -share/sodipodi/selection_down.xpm -share/sodipodi/selection_group.xpm -share/sodipodi/selection_intersection.xpm -share/sodipodi/selection_subtraction.xpm -share/sodipodi/selection_top.xpm -share/sodipodi/selection_ungroup.xpm -share/sodipodi/selection_union.xpm -share/sodipodi/selection_up.xpm -share/sodipodi/seperate_tool.xpm -share/sodipodi/set.xpm -share/sodipodi/skew.xpm -share/sodipodi/skew_hor.xpm -share/sodipodi/skew_ver.xpm -share/sodipodi/smooth.xpm -share/sodipodi/stroke.xpm -share/sodipodi/sym.xpm -share/sodipodi/text.xpm -share/sodipodi/toback.xpm -share/sodipodi/tofront.xpm -share/sodipodi/toolbox_draw.xpm -share/sodipodi/toolbox_edit.xpm -share/sodipodi/toolbox_file.xpm -share/sodipodi/toolbox_node.xpm -share/sodipodi/toolbox_object.xpm -share/sodipodi/toolbox_select.xpm -share/sodipodi/toolbox_zoom.xpm -share/sodipodi/unknown.xpm -share/sodipodi/writing_mode_lr.xpm -share/sodipodi/writing_mode_tb.xpm -share/sodipodi/zoom.xpm -share/sodipodi/zoom_1_to_1.xpm -share/sodipodi/zoom_1_to_2.xpm -share/sodipodi/zoom_2_to_1.xpm -share/sodipodi/zoom_draw.xpm -share/sodipodi/zoom_in.xpm -share/sodipodi/zoom_out.xpm -share/sodipodi/zoom_page.xpm -share/sodipodi/zoom_select.xpm -share/locale/am/LC_MESSAGES/sodipodi.mo -share/locale/az/LC_MESSAGES/sodipodi.mo -share/locale/be/LC_MESSAGES/sodipodi.mo -share/locale/ca/LC_MESSAGES/sodipodi.mo -share/locale/cs/LC_MESSAGES/sodipodi.mo -share/locale/da/LC_MESSAGES/sodipodi.mo -share/locale/de/LC_MESSAGES/sodipodi.mo -share/locale/el/LC_MESSAGES/sodipodi.mo -share/locale/es/LC_MESSAGES/sodipodi.mo -share/locale/et/LC_MESSAGES/sodipodi.mo -share/locale/fi/LC_MESSAGES/sodipodi.mo -share/locale/fr/LC_MESSAGES/sodipodi.mo -share/locale/ga/LC_MESSAGES/sodipodi.mo -share/locale/gl/LC_MESSAGES/sodipodi.mo -share/locale/hr/LC_MESSAGES/sodipodi.mo -share/locale/hu/LC_MESSAGES/sodipodi.mo -share/locale/it/LC_MESSAGES/sodipodi.mo -share/locale/ja/LC_MESSAGES/sodipodi.mo -share/locale/ko/LC_MESSAGES/sodipodi.mo -share/locale/mk/LC_MESSAGES/sodipodi.mo -share/locale/nl/LC_MESSAGES/sodipodi.mo -share/locale/no/LC_MESSAGES/sodipodi.mo -share/locale/pl/LC_MESSAGES/sodipodi.mo -share/locale/pt/LC_MESSAGES/sodipodi.mo -share/locale/pt_BR/LC_MESSAGES/sodipodi.mo -share/locale/ru/LC_MESSAGES/sodipodi.mo -share/locale/sk/LC_MESSAGES/sodipodi.mo -share/locale/sl/LC_MESSAGES/sodipodi.mo -share/locale/sr/LC_MESSAGES/sodipodi.mo -share/locale/sr@Latn/LC_MESSAGES/sodipodi.mo -share/locale/sv/LC_MESSAGES/sodipodi.mo -share/locale/tr/LC_MESSAGES/sodipodi.mo -share/locale/uk/LC_MESSAGES/sodipodi.mo -share/locale/zh_CN/LC_MESSAGES/sodipodi.mo -@dirrm share/sodipodi -@dirrm lib/sodipodi/modules -@dirrm lib/sodipodi/extensions -@dirrm lib/sodipodi -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true |