summaryrefslogtreecommitdiffstats
path: root/graphics/inkscape
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-03-14 09:21:27 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-03-14 09:21:27 +0800
commit6ea8cdadd34fade98a807bf84429806612c65079 (patch)
treeb7f18e7e629139c395bf0080243a2218963d0301 /graphics/inkscape
parent857bb773fe0bad1b58fa9c68ece3c326f60613e6 (diff)
downloadmarcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.gz
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.bz2
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.lz
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.xz
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.tar.zst
marcuscom-ports-6ea8cdadd34fade98a807bf84429806612c65079.zip
Remove these ports now that they have been merged into the ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3934 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics/inkscape')
-rw-r--r--graphics/inkscape/Makefile49
-rw-r--r--graphics/inkscape/distinfo2
-rw-r--r--graphics/inkscape/files/patch-configure23
-rw-r--r--graphics/inkscape/files/patch-src::dialogs::clonetiler.cpp11
-rw-r--r--graphics/inkscape/files/patch-src::extension::internal::gnome.cpp16
-rw-r--r--graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp10
-rw-r--r--graphics/inkscape/files/patch-src::livarot::Path.cpp10
-rw-r--r--graphics/inkscape/files/patch-src::livarot::PathOutline.cpp10
-rw-r--r--graphics/inkscape/files/patch-src::object-edit.cpp11
-rw-r--r--graphics/inkscape/files/patch-src::remove-last.h19
-rw-r--r--graphics/inkscape/pkg-descr9
-rw-r--r--graphics/inkscape/pkg-plist159
12 files changed, 0 insertions, 329 deletions
diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile
deleted file mode 100644
index 4ebaaa902..000000000
--- a/graphics/inkscape/Makefile
+++ /dev/null
@@ -1,49 +0,0 @@
-# New ports collection makefile for: inkscape
-# Date created: 17 Nov 2003
-# Whom: Alexander Nedotsukov <bland@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= inkscape
-PORTVERSION= 0.41
-PORTREVISION= 2
-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 \
- gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 \
- gc.1:${PORTSDIR}/devel/boehm-gc \
- 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 intlhack libgnomeprintui libxslt
-USE_REINPLACE= yes
-USE_LIBTOOL_VER=15
-USE_GCC= 3.4
-CONFIGURE_ARGS= --with-popt \
- --with-gnome-print
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 -I${X11BASE}/include -I${LOCALBASE} ${PTHREAD_CFLAGS}" \
- LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -L${LOCALBASE} ${PTHREAD_LIBS}"
-
-MAN1= inkscape.1 inkview.1
-
-patch-autotools:
- @(cd ${PATCH_WRKSRC}; \
- for file in ${LIBTOOLFILES}; do \
- ${CP} $$file $$file.tmp; \
- ${SED} -e "/^ltmain=/s^\$$ac_aux_dir/ltmain.sh^${LTMAIN}^g" \
- $$file.tmp > $$file; \
- ${RM} $$file.tmp; \
- done);
-
-post-install:
- @-update-desktop-database
-
-.include <bsd.port.mk>
diff --git a/graphics/inkscape/distinfo b/graphics/inkscape/distinfo
deleted file mode 100644
index 5e5c3a8ad..000000000
--- a/graphics/inkscape/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (inkscape-0.41.tar.gz) = 989a09d06e4db1ddfd00b8019a5dcd73
-SIZE (inkscape-0.41.tar.gz) = 6090081
diff --git a/graphics/inkscape/files/patch-configure b/graphics/inkscape/files/patch-configure
deleted file mode 100644
index 35d18d8c5..000000000
--- a/graphics/inkscape/files/patch-configure
+++ /dev/null
@@ -1,23 +0,0 @@
---- 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 <libintl.h>
-+
- int
- main ()
- {
--dgettext ();
-+dgettext ("","");
- ;
- return 0;
- }
diff --git a/graphics/inkscape/files/patch-src::dialogs::clonetiler.cpp b/graphics/inkscape/files/patch-src::dialogs::clonetiler.cpp
deleted file mode 100644
index 9eb52b651..000000000
--- a/graphics/inkscape/files/patch-src::dialogs::clonetiler.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/dialogs/clonetiler.cpp.orig Fri Feb 18 02:32:13 2005
-+++ src/dialogs/clonetiler.cpp Fri Feb 18 02:33:24 2005
-@@ -868,7 +868,7 @@
- clonetiler_xy_changed (GtkAdjustment *adj, gpointer data)
- {
- const gchar *pref = (const gchar *) data;
-- prefs_set_int_attribute ("dialogs.clonetiler", pref, (int) round(adj->value));
-+ prefs_set_int_attribute ("dialogs.clonetiler", pref, (int) rint(adj->value));
- }
-
- static void
diff --git a/graphics/inkscape/files/patch-src::extension::internal::gnome.cpp b/graphics/inkscape/files/patch-src::extension::internal::gnome.cpp
deleted file mode 100644
index bc44302eb..000000000
--- a/graphics/inkscape/files/patch-src::extension::internal::gnome.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
---- src/extension/internal/gnome.cpp.orig Fri Feb 18 02:44:53 2005
-+++ src/extension/internal/gnome.cpp Fri Feb 18 02:45:56 2005
-@@ -183,6 +183,13 @@
- return 0;
- }
-
-+unsigned int PrintGNOME::comment (Inkscape::Extension::Print * module,
-+ const char * comment)
-+{
-+ // ignore comment
-+ return 0;
-+}
-+
- unsigned int
- PrintGNOME::fill(Inkscape::Extension::Print *mod,
- NRBPath const *bpath, NRMatrix const *ctm, SPStyle const *style,
diff --git a/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp b/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp
deleted file mode 100644
index e8da0f994..000000000
--- a/graphics/inkscape/files/patch-src::libnr::nr-matrix.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- 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 <cstdio>
- #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
deleted file mode 100644
index 587ec22c4..000000000
--- a/graphics/inkscape/files/patch-src::livarot::Path.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- 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 <glib.h>
-+#include <cstdio>
- #include "Path.h"
- #include <libnr/nr-point.h>
- #include <libnr/nr-point-ops.h>
diff --git a/graphics/inkscape/files/patch-src::livarot::PathOutline.cpp b/graphics/inkscape/files/patch-src::livarot::PathOutline.cpp
deleted file mode 100644
index aa01b7d1a..000000000
--- a/graphics/inkscape/files/patch-src::livarot::PathOutline.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/livarot/PathOutline.cpp.orig Sat Oct 23 12:10:52 2004
-+++ src/livarot/PathOutline.cpp Fri Feb 18 00:28:16 2005
-@@ -9,6 +9,7 @@
- #include "livarot/Path.h"
- #include "livarot/path-description.h"
- #include <cmath>
-+#include <algorithm>
- #include <libnr/nr-point-fns.h>
-
- /*
diff --git a/graphics/inkscape/files/patch-src::object-edit.cpp b/graphics/inkscape/files/patch-src::object-edit.cpp
deleted file mode 100644
index 5d53ed22d..000000000
--- a/graphics/inkscape/files/patch-src::object-edit.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/object-edit.cpp.orig Fri Feb 18 02:09:25 2005
-+++ src/object-edit.cpp Fri Feb 18 02:25:08 2005
-@@ -839,7 +839,7 @@
- spiral->rad = rad_new;
- spiral->t0 = pow (r0 / spiral->rad, 1/spiral->exp);
- }
-- if (!std::isfinite(spiral->t0)) spiral->t0 = 0.0;
-+ if (isinf(spiral->t0)) spiral->t0 = 0.0;
- spiral->t0 = CLAMP (spiral->t0, 0.0, 0.999);
- }
-
diff --git a/graphics/inkscape/files/patch-src::remove-last.h b/graphics/inkscape/files/patch-src::remove-last.h
deleted file mode 100644
index 059f14ac7..000000000
--- a/graphics/inkscape/files/patch-src::remove-last.h
+++ /dev/null
@@ -1,19 +0,0 @@
---- 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 <vector>
-+#include <algorithm>
- #include <glib.h>
-
- template<class T>
-@@ -9,7 +10,7 @@
- {
- using std::vector;
-
-- typename vector<T>::reverse_iterator i(find(seq.rbegin(), seq.rend(), elem));
-+ typename vector<T>::reverse_iterator i(std::find(seq.rbegin(), seq.rend(), elem));
- g_assert( i != seq.rend() );
- typename vector<T>::iterator ii(&*i);
- seq.erase(ii);
diff --git a/graphics/inkscape/pkg-descr b/graphics/inkscape/pkg-descr
deleted file mode 100644
index fbd138147..000000000
--- a/graphics/inkscape/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-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
deleted file mode 100644
index c569be72e..000000000
--- a/graphics/inkscape/pkg-plist
+++ /dev/null
@@ -1,159 +0,0 @@
-bin/inkscape
-bin/inkview
-lib/inkscape/plugins/libgimpgrad.a
-lib/inkscape/plugins/libgimpgrad.so
-lib/inkscape/plugins/libgimpgrad.so.0
-lib/inkscape/plugins/libgrid.a
-lib/inkscape/plugins/libgrid.so
-lib/inkscape/plugins/libgrid.so.0
-share/gnome/applications/inkscape.desktop
-@exec update-desktop-database > /dev/null || /usr/bin/true
-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/art-nouveau-P3.svg
-share/gnome/inkscape/examples/data_uri.svg
-share/gnome/inkscape/examples/eastern-motive-P4G.svg
-share/gnome/inkscape/examples/flowsample.svg
-share/gnome/inkscape/examples/gradient.svg
-share/gnome/inkscape/examples/i18n.svg
-share/gnome/inkscape/examples/istest.pov
-share/gnome/inkscape/examples/markers.svg
-share/gnome/inkscape/examples/stars.svgz
-share/gnome/inkscape/examples/tesselation-P3.svg
-share/gnome/inkscape/examples/text-on-path.svg
-share/gnome/inkscape/examples/tiger.svgz
-share/gnome/inkscape/extensions/SpSVG.pm
-share/gnome/inkscape/extensions/ai_input.inx
-share/gnome/inkscape/extensions/ai_output.inx
-share/gnome/inkscape/extensions/dia.inx
-share/gnome/inkscape/extensions/dia2svg.sh
-share/gnome/inkscape/extensions/dropshadow.inx
-share/gnome/inkscape/extensions/embed_raster_in_svg.pl
-share/gnome/inkscape/extensions/eps_input.inx
-share/gnome/inkscape/extensions/epsi_output.inx
-share/gnome/inkscape/extensions/gimpgrad.inx
-share/gnome/inkscape/extensions/grid.inx
-share/gnome/inkscape/extensions/ill2svg.pl
-share/gnome/inkscape/extensions/inkscape-shadow-white.sh
-share/gnome/inkscape/extensions/inkscape-shadow.sh
-share/gnome/inkscape/extensions/ps2epsi.sh
-share/gnome/inkscape/extensions/ps_input.inx
-share/gnome/inkscape/extensions/sk2svg.sh
-share/gnome/inkscape/extensions/sk_input.inx
-share/gnome/inkscape/extensions/svg_dropshadow
-share/gnome/inkscape/extensions/svgz_input.inx
-share/gnome/inkscape/extensions/svgz_output.inx
-share/gnome/inkscape/extensions/txt2svg.inx
-share/gnome/inkscape/extensions/txt2svg.pl
-share/gnome/inkscape/extensions/wmf_input.inx
-share/gnome/inkscape/fonts/README
-share/gnome/inkscape/gradients/README
-share/gnome/inkscape/icons/icons.svg
-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/A4.svg
-share/gnome/inkscape/templates/A4_landscape.svg
-share/gnome/inkscape/templates/CD_cover_300dpi.svg
-share/gnome/inkscape/templates/Letter.svg
-share/gnome/inkscape/templates/Letter_landscape.svg
-share/gnome/inkscape/templates/README
-share/gnome/inkscape/templates/black_opaque.svg
-share/gnome/inkscape/templates/business_card_90x50mm.svg
-share/gnome/inkscape/templates/default.svg
-share/gnome/inkscape/templates/default_mm.svg
-share/gnome/inkscape/templates/default_pt.svg
-share/gnome/inkscape/templates/desktop_1024x768.svg
-share/gnome/inkscape/templates/desktop_1600x1200.svg
-share/gnome/inkscape/templates/desktop_640x480.svg
-share/gnome/inkscape/templates/desktop_800x600.svg
-share/gnome/inkscape/templates/icon_16x16.svg
-share/gnome/inkscape/templates/icon_32x32.svg
-share/gnome/inkscape/templates/icon_48x48.svg
-share/gnome/inkscape/templates/icon_64x64.svg
-share/gnome/inkscape/templates/no_borders.svg
-share/gnome/inkscape/templates/no_layers.svg
-share/gnome/inkscape/templates/web_banner_468x60.svg
-share/gnome/inkscape/templates/web_banner_728x90.svg
-share/gnome/inkscape/templates/white_opaque.svg
-share/gnome/inkscape/tutorials/elementsofdesign.sl.svg
-share/gnome/inkscape/tutorials/elementsofdesign.svg
-share/gnome/inkscape/tutorials/making_markers.svg
-share/gnome/inkscape/tutorials/oldguitar.jpg
-share/gnome/inkscape/tutorials/potrace.png
-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.nn.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/inkscape/tutorials/tutorial-calligraphy.sl.svg
-share/gnome/inkscape/tutorials/tutorial-calligraphy.svg
-share/gnome/inkscape/tutorials/tutorial-shapes.sl.svg
-share/gnome/inkscape/tutorials/tutorial-shapes.svg
-share/gnome/inkscape/tutorials/tutorial-tracing.svg
-share/gnome/inkscape/tutorials/tux.png
-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/nb/LC_MESSAGES/inkscape.mo
-share/locale/nl/LC_MESSAGES/inkscape.mo
-share/locale/nn/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
-@dirrm lib/inkscape/plugins
-@dirrm lib/inkscape
-@unexec update-desktop-database > /dev/null || /usr/bin/true