summaryrefslogtreecommitdiff
path: root/graphics/graphopt
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/graphopt')
-rw-r--r--graphics/graphopt/Makefile26
-rw-r--r--graphics/graphopt/distinfo2
-rw-r--r--graphics/graphopt/files/patch-pixmaps_Makefile.in11
-rw-r--r--graphics/graphopt/files/patch-src_classes_dotImporter.cc10
-rw-r--r--graphics/graphopt/files/patch-src_classes_nodes.cc10
-rw-r--r--graphics/graphopt/files/patch-src_classes_optFileReader.cc10
-rw-r--r--graphics/graphopt/files/patch-src_classes_optFileWriter.cc9
-rw-r--r--graphics/graphopt/files/patch-src_classes_psExporter.cc19
-rw-r--r--graphics/graphopt/files/patch-src_classes_visioExporter.cc9
-rw-r--r--graphics/graphopt/files/patch-src_main.cc11
-rw-r--r--graphics/graphopt/pkg-descr4
-rw-r--r--graphics/graphopt/pkg-plist8
12 files changed, 0 insertions, 129 deletions
diff --git a/graphics/graphopt/Makefile b/graphics/graphopt/Makefile
deleted file mode 100644
index ec1612c39f89..000000000000
--- a/graphics/graphopt/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# Created by: ijliao
-# $FreeBSD$
-
-PORTNAME= graphopt
-PORTVERSION= 0.4.1
-PORTREVISION= 8
-CATEGORIES= graphics
-MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/v${PORTVERSION}
-EXTRACT_SUFX= .tgz
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Graph layout optimizer
-
-DEPRECATED= Uses obsolete glib12
-EXPIRATION_DATE= 2018-12-20
-
-LICENSE= GPLv2+
-
-USES= gnome
-USE_CXXSTD= c++98
-USE_GNOME= gtk12
-GNU_CONFIGURE= yes
-
-DESKTOP_ENTRIES="GraphOpt" "" "" "${PORTNAME}" "Graphics;GTK;" ""
-
-.include <bsd.port.mk>
diff --git a/graphics/graphopt/distinfo b/graphics/graphopt/distinfo
deleted file mode 100644
index 05f3cc578f72..000000000000
--- a/graphics/graphopt/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (graphopt-0.4.1.tgz) = 9b04644baf14a51c741768ebf21578bb4b4a165ff11feef993e256f56afac009
-SIZE (graphopt-0.4.1.tgz) = 77612
diff --git a/graphics/graphopt/files/patch-pixmaps_Makefile.in b/graphics/graphopt/files/patch-pixmaps_Makefile.in
deleted file mode 100644
index 72034c271f50..000000000000
--- a/graphics/graphopt/files/patch-pixmaps_Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- pixmaps/Makefile.in.orig 2003-05-07 15:10:47 UTC
-+++ pixmaps/Makefile.in
-@@ -67,7 +67,7 @@ PACKAGE = @PACKAGE@
- RANLIB = @RANLIB@
- VERSION = @VERSION@
-
--pixmapdir = $(prefix)/share/pixmaps/graphopt
-+pixmapdir = $(prefix)/share/graphopt/pixmaps
-
- pixmap_DATA = export.xpm \
- import.xpm \
diff --git a/graphics/graphopt/files/patch-src_classes_dotImporter.cc b/graphics/graphopt/files/patch-src_classes_dotImporter.cc
deleted file mode 100644
index 8c1d030e309e..000000000000
--- a/graphics/graphopt/files/patch-src_classes_dotImporter.cc
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/classes/dotImporter.cc.orig 2003-03-20 07:37:55 UTC
-+++ src/classes/dotImporter.cc
-@@ -1,5 +1,6 @@
- #include "dotImporter.h"
--#include <string.h>
-+#include <cstdlib>
-+#include <cstring>
- #include <gtk/gtk.h>
- #include "../interface.h"
-
diff --git a/graphics/graphopt/files/patch-src_classes_nodes.cc b/graphics/graphopt/files/patch-src_classes_nodes.cc
deleted file mode 100644
index 6ee6fdab7c31..000000000000
--- a/graphics/graphopt/files/patch-src_classes_nodes.cc
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/classes/nodes.cc.orig 2003-03-19 05:21:33 UTC
-+++ src/classes/nodes.cc
-@@ -1,4 +1,6 @@
--#include <stdio.h>
-+#include <cstdio>
-+#include <cstdlib>
-+#include <cstring>
- #include "nodes.h"
-
-
diff --git a/graphics/graphopt/files/patch-src_classes_optFileReader.cc b/graphics/graphopt/files/patch-src_classes_optFileReader.cc
deleted file mode 100644
index db86a01d28e0..000000000000
--- a/graphics/graphopt/files/patch-src_classes_optFileReader.cc
+++ /dev/null
@@ -1,10 +0,0 @@
---- src/classes/optFileReader.cc.orig 2003-03-20 07:42:59 UTC
-+++ src/classes/optFileReader.cc
-@@ -1,5 +1,6 @@
- #include "optFileReader.h"
--#include <string.h>
-+#include <cstdlib>
-+#include <cstring>
- #include <gtk/gtk.h>
- #include "../interface.h"
-
diff --git a/graphics/graphopt/files/patch-src_classes_optFileWriter.cc b/graphics/graphopt/files/patch-src_classes_optFileWriter.cc
deleted file mode 100644
index 67c487d23398..000000000000
--- a/graphics/graphopt/files/patch-src_classes_optFileWriter.cc
+++ /dev/null
@@ -1,9 +0,0 @@
---- src/classes/optFileWriter.cc.orig 2003-01-25 05:17:43 UTC
-+++ src/classes/optFileWriter.cc
-@@ -1,4 +1,6 @@
- #include "optFileWriter.h"
-+#include <cstdlib>
-+#include <cstring>
-
-
- optFileWriter::optFileWriter(char *what_file, nodes *what_nodes) {
diff --git a/graphics/graphopt/files/patch-src_classes_psExporter.cc b/graphics/graphopt/files/patch-src_classes_psExporter.cc
deleted file mode 100644
index 56bdb6a2ee65..000000000000
--- a/graphics/graphopt/files/patch-src_classes_psExporter.cc
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/classes/psExporter.cc.orig 2003-04-18 04:47:40 UTC
-+++ src/classes/psExporter.cc
-@@ -1,5 +1,6 @@
- #include "psExporter.h"
--
-+#include <cstdlib>
-+#include <cstring>
-
- psExporter::psExporter(char *what_file, nodes *what_nodes) {
- filename = strdup(what_file);
-@@ -26,7 +27,7 @@ void psExporter::do_export() {
-
- void psExporter::write_headers(FILE *outfile) {
- char *line = new char[200];
-- sprintf(line, "\%!PS-Adobe-1.0\n%%%%BoundingBox: 0 0 %d %d\n%%%%DocumentFonts: Helvetica\n%%%%Pages: 1\n",
-+ sprintf(line, "%%!PS-Adobe-1.0\n%%%%BoundingBox: 0 0 %d %d\n%%%%DocumentFonts: Helvetica\n%%%%Pages: 1\n",
- translatexcoord((double) biggest_x) + 2 * margin,
- translateycoord((double) biggest_y) + 2 * margin);
- fwrite(line, strlen(line), 1, outfile);
diff --git a/graphics/graphopt/files/patch-src_classes_visioExporter.cc b/graphics/graphopt/files/patch-src_classes_visioExporter.cc
deleted file mode 100644
index 3d13c3239460..000000000000
--- a/graphics/graphopt/files/patch-src_classes_visioExporter.cc
+++ /dev/null
@@ -1,9 +0,0 @@
---- src/classes/visioExporter.cc.orig 2003-04-16 02:55:39 UTC
-+++ src/classes/visioExporter.cc
-@@ -1,4 +1,6 @@
- #include "visioExporter.h"
-+#include <cstdlib>
-+#include <cstring>
-
-
- visioExporter::visioExporter(char *what_file, nodes *what_nodes) {
diff --git a/graphics/graphopt/files/patch-src_main.cc b/graphics/graphopt/files/patch-src_main.cc
deleted file mode 100644
index e115e6bbfc1d..000000000000
--- a/graphics/graphopt/files/patch-src_main.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/main.cc.orig 2003-05-07 15:06:31 UTC
-+++ src/main.cc
-@@ -18,7 +18,7 @@ int main (int argc, char *argv[]) {
- gtk_set_locale ();
- gtk_init (&argc, &argv);
-
-- add_pixmap_directory (PACKAGE_DATA_DIR "/pixmaps/graphopt");
-+ add_pixmap_directory (PACKAGE_DATA_DIR "/graphopt/pixmaps");
- add_pixmap_directory (PACKAGE_SOURCE_DIR "/pixmaps");
-
- window1 = create_window1();
diff --git a/graphics/graphopt/pkg-descr b/graphics/graphopt/pkg-descr
deleted file mode 100644
index b5bd9bb6d5a4..000000000000
--- a/graphics/graphopt/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-A graph layout optimizer based on the iterative application of laws of physics
-instead of using finite-pass algorithms.
-
-WWW: http://www.schmuhl.org/graphopt/
diff --git a/graphics/graphopt/pkg-plist b/graphics/graphopt/pkg-plist
deleted file mode 100644
index c2b4e9fb6789..000000000000
--- a/graphics/graphopt/pkg-plist
+++ /dev/null
@@ -1,8 +0,0 @@
-bin/graphopt
-%%DATADIR%%/pixmaps/export.xpm
-%%DATADIR%%/pixmaps/import.xpm
-%%DATADIR%%/pixmaps/new.xpm
-%%DATADIR%%/pixmaps/open.xpm
-%%DATADIR%%/pixmaps/quit.xpm
-%%DATADIR%%/pixmaps/save.xpm
-%%DATADIR%%/pixmaps/save_as.xpm