summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2017-07-01 21:58:04 +0000
committerRene Ladan <rene@FreeBSD.org>2017-07-01 21:58:04 +0000
commitecf42402003bd8bdbec66f7dc1103f9909513ee3 (patch)
tree32ab83feca1ff00f3ffc6ca981a488aff0386969 /devel
parentMark BROKEN: size and checksum mismatch (diff)
Remove expired ports:
2017-06-30 misc/p5-Geo-Coder-Many: deprecated and no longer maintained by upstream 2017-07-01 graphics/gimp-elsamuko-script: Broken for more than 2 years 2017-07-01 devel/anjuta-extras: Last release in 2013 and doesn't build with recent GTK+ 2017-07-01 www/apache22-worker-mpm: Upstream propose EoL of apache 2.2.x during the next 12 months 2017-07-01 www/apache22-itk-mpm: Upstream propose EoL of apache 2.2.x during the next 12 months 2017-07-01 www/apache22-peruser-mpm: Upstream propose EoL of apache 2.2.x during the next 12 months 2017-07-01 www/apache22-event-mpm: Upstream propose EoL of apache 2.2.x during the next 12 months
Notes
Notes: svn path=/head/; revision=444851
Diffstat (limited to 'devel')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/anjuta-extras/Makefile34
-rw-r--r--devel/anjuta-extras/distinfo2
-rw-r--r--devel/anjuta-extras/files/patch-plugins_scintilla_aneditor.cxx22
-rw-r--r--devel/anjuta-extras/files/patch-plugins_scintilla_properties_styles.properties25
-rw-r--r--devel/anjuta-extras/files/patch-plugins_scintilla_scintilla_src_SplitVector.h11
-rw-r--r--devel/anjuta-extras/pkg-descr3
-rw-r--r--devel/anjuta-extras/pkg-plist87
8 files changed, 0 insertions, 185 deletions
diff --git a/devel/Makefile b/devel/Makefile
index e3de2afca505..745284124401 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -91,7 +91,6 @@
SUBDIR += android-tools-fastboot-devel
SUBDIR += android-tools-simpleperf
SUBDIR += anjuta
- SUBDIR += anjuta-extras
SUBDIR += antlr
SUBDIR += antlr3
SUBDIR += antlr4
diff --git a/devel/anjuta-extras/Makefile b/devel/anjuta-extras/Makefile
deleted file mode 100644
index e29706bd6db7..000000000000
--- a/devel/anjuta-extras/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-# Created by: Koop Mast <kwm@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= anjuta-extras
-PORTVERSION= 3.10.0
-CATEGORIES= devel
-MASTER_SITES= GNOME
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= Extra anjuta 3 plugins
-
-BUILD_DEPENDS= itstool:textproc/itstool
-LIB_DEPENDS= libanjuta-3.so:devel/anjuta
-
-BROKEN= Does not build with GTK+ 3.22
-DEPRECATED= Last release in 2013 and doesn't build with recent GTK+
-EXPIRATION_DATE=2017-07-01
-
-USES= gettext gmake libtool pkgconfig tar:xz
-USE_LDCONFIG= yes
-GNU_CONFIGURE= yes
-USE_GNOME= gtk30 intltool libxml2
-CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= -L${LOCALBASE}/lib
-INSTALL_TARGET= install-strip
-
-GLIB_SCHEMAS= org.gnome.anjuta.plugins.scintilla.gschema.xml \
- org.gnome.anjuta.plugins.scratchbox.gschema.xml
-
-post-patch:
- @${REINPLACE_CMD} -e 's|return style_data|return|g' \
- ${WRKSRC}/plugins/scintilla/style-editor.c
-
-.include <bsd.port.mk>
diff --git a/devel/anjuta-extras/distinfo b/devel/anjuta-extras/distinfo
deleted file mode 100644
index a6670d2e89a9..000000000000
--- a/devel/anjuta-extras/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (anjuta-extras-3.10.0.tar.xz) = 92f92e3c530f5649edfe4d8645e8cfd3161383cbc486c636ebb24cf2d2642213
-SIZE (anjuta-extras-3.10.0.tar.xz) = 1905256
diff --git a/devel/anjuta-extras/files/patch-plugins_scintilla_aneditor.cxx b/devel/anjuta-extras/files/patch-plugins_scintilla_aneditor.cxx
deleted file mode 100644
index 846195939a5e..000000000000
--- a/devel/anjuta-extras/files/patch-plugins_scintilla_aneditor.cxx
+++ /dev/null
@@ -1,22 +0,0 @@
-From 959807c25e3547b019448b0877bae54dd6c04a9d Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?S=C3=A9bastien=20Granjoux?= <seb.sfo@free.fr>
-Date: Mon, 11 Nov 2013 10:51:05 +0100
-Subject: bgo #711771 - The edge-column variable is not taken into account by
- anjuta for scintilla editor
-
-
-diff --git a/plugins/scintilla/aneditor.cxx b/plugins/scintilla/aneditor.cxx
-index 0fa9acc..d61e4e1 100644
---- plugins/scintilla/aneditor.cxx
-+++ plugins/scintilla/aneditor.cxx
-@@ -2656,7 +2656,6 @@ void AnEditor::ReadProperties(const char *fileForExt, char **typedef_hl) {
- int visibleLines = props->GetInt("visible.policy.lines");
- SendEditor(SCI_SETVISIBLEPOLICY, visibleStrict | visibleSlop, visibleLines);
-
-- SendEditor(SCI_SETEDGECOLUMN, props->GetInt("edge.column", 0));
- SendEditor(SCI_SETEDGEMODE, props->GetInt("edge.mode", EDGE_NONE));
- SendEditor(SCI_SETEDGECOLOUR,
- ColourOfProperty(props, "edge.colour", ColourDesired(0xff, 0xda, 0xda)));
---
-cgit v0.10.1
-
diff --git a/devel/anjuta-extras/files/patch-plugins_scintilla_properties_styles.properties b/devel/anjuta-extras/files/patch-plugins_scintilla_properties_styles.properties
deleted file mode 100644
index 6820dbfaf5ca..000000000000
--- a/devel/anjuta-extras/files/patch-plugins_scintilla_properties_styles.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-From 088d3da478e876836efb386bfafd0b23c0de8d82 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?S=C3=A9bastien=20Granjoux?= <seb.sfo@free.fr>
-Date: Sat, 9 Nov 2013 22:34:18 +0100
-Subject: cintilla: bgo #690373 - The syntax-highlighting for Gtk types does
- not work from version 3.x
-
-
-diff --git a/plugins/scintilla/properties/styles.properties b/plugins/scintilla/properties/styles.properties
-index 6d6e455..3e5331f 100644
---- plugins/scintilla/properties/styles.properties
-+++ plugins/scintilla/properties/styles.properties
-@@ -8222,8 +8222,8 @@ keywords.$(file.patterns.yaml)=true false yes no
- style.cpp.17=$(style.anjuta.comment)
- # Comment keyword error
- style.cpp.18=$(style.anjuta.comment)
--# Libraries symbols
--#style.cpp.19=$(style.anjuta.syskeyword)
-+# Libraries symbols (needed to highlight library functions by example GTK+)
-+ style.cpp.19=$(style.anjuta.syskeyword)
- # Raw strings for C++0x
- style.cpp.20=$(style.anjuta.string)
- # Triple-quoted strings for Vala
---
-cgit v0.10.1
-
diff --git a/devel/anjuta-extras/files/patch-plugins_scintilla_scintilla_src_SplitVector.h b/devel/anjuta-extras/files/patch-plugins_scintilla_scintilla_src_SplitVector.h
deleted file mode 100644
index 227c71e660ff..000000000000
--- a/devel/anjuta-extras/files/patch-plugins_scintilla_scintilla_src_SplitVector.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- plugins/scintilla/scintilla/src/SplitVector.h.orig 2015-06-10 20:14:00.051095000 -0400
-+++ plugins/scintilla/scintilla/src/SplitVector.h 2015-06-10 20:20:33.371490000 -0400
-@@ -9,6 +9,8 @@
- #ifndef SPLITVECTOR_H
- #define SPLITVECTOR_H
-
-+#include <algorithm>
-+
- template <typename T>
- class SplitVector {
- protected:
diff --git a/devel/anjuta-extras/pkg-descr b/devel/anjuta-extras/pkg-descr
deleted file mode 100644
index 5c0d44664cdd..000000000000
--- a/devel/anjuta-extras/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-Extra plugins for the Anjuta IDE.
-
-WWW: http://anjuta.org/
diff --git a/devel/anjuta-extras/pkg-plist b/devel/anjuta-extras/pkg-plist
deleted file mode 100644
index 9c10f69aa951..000000000000
--- a/devel/anjuta-extras/pkg-plist
+++ /dev/null
@@ -1,87 +0,0 @@
-lib/anjuta/anjuta-editor.plugin
-lib/anjuta/anjuta-sample.plugin
-lib/anjuta/anjuta-scratchbox.plugin
-lib/anjuta/libanjuta-editor.a
-lib/anjuta/libanjuta-editor.so
-lib/anjuta/libanjuta-sample.a
-lib/anjuta/libanjuta-sample.so
-lib/anjuta/libanjuta-scratchbox.a
-lib/anjuta/libanjuta-scratchbox.so
-share/anjuta/glade/anjuta-editor-scintilla.ui
-share/anjuta/glade/anjuta-scratchbox-panel.png
-share/anjuta/glade/anjuta-scratchbox.ui
-share/anjuta/properties/anjuta.properties
-share/anjuta/properties/styles.properties
-share/anjuta/properties/user.properties
-share/anjuta/ui/anjuta-sample.ui
-share/anjuta/ui/anjuta-scintilla.xml
-share/help/C/anjuta-manual/scintilla-plugin.page
-share/help/de/anjuta-manual/scintilla-plugin.page
-share/locale/ar/LC_MESSAGES/anjuta-extras.mo
-share/locale/az/LC_MESSAGES/anjuta-extras.mo
-share/locale/be@latin/LC_MESSAGES/anjuta-extras.mo
-share/locale/bg/LC_MESSAGES/anjuta-extras.mo
-share/locale/ca/LC_MESSAGES/anjuta-extras.mo
-share/locale/ca@valencia/LC_MESSAGES/anjuta-extras.mo
-share/locale/cs/LC_MESSAGES/anjuta-extras.mo
-share/locale/da/LC_MESSAGES/anjuta-extras.mo
-share/locale/de/LC_MESSAGES/anjuta-extras.mo
-share/locale/dz/LC_MESSAGES/anjuta-extras.mo
-share/locale/el/LC_MESSAGES/anjuta-extras.mo
-share/locale/en_CA/LC_MESSAGES/anjuta-extras.mo
-share/locale/en_GB/LC_MESSAGES/anjuta-extras.mo
-share/locale/eo/LC_MESSAGES/anjuta-extras.mo
-share/locale/es/LC_MESSAGES/anjuta-extras.mo
-share/locale/eu/LC_MESSAGES/anjuta-extras.mo
-share/locale/fi/LC_MESSAGES/anjuta-extras.mo
-share/locale/fr/LC_MESSAGES/anjuta-extras.mo
-share/locale/ga/LC_MESSAGES/anjuta-extras.mo
-share/locale/gl/LC_MESSAGES/anjuta-extras.mo
-share/locale/gu/LC_MESSAGES/anjuta-extras.mo
-share/locale/he/LC_MESSAGES/anjuta-extras.mo
-share/locale/hi/LC_MESSAGES/anjuta-extras.mo
-share/locale/hr/LC_MESSAGES/anjuta-extras.mo
-share/locale/hu/LC_MESSAGES/anjuta-extras.mo
-share/locale/id/LC_MESSAGES/anjuta-extras.mo
-share/locale/it/LC_MESSAGES/anjuta-extras.mo
-share/locale/ja/LC_MESSAGES/anjuta-extras.mo
-share/locale/kn/LC_MESSAGES/anjuta-extras.mo
-share/locale/ko/LC_MESSAGES/anjuta-extras.mo
-share/locale/lt/LC_MESSAGES/anjuta-extras.mo
-share/locale/lv/LC_MESSAGES/anjuta-extras.mo
-share/locale/mk/LC_MESSAGES/anjuta-extras.mo
-share/locale/ml/LC_MESSAGES/anjuta-extras.mo
-share/locale/mr/LC_MESSAGES/anjuta-extras.mo
-share/locale/ms/LC_MESSAGES/anjuta-extras.mo
-share/locale/nb/LC_MESSAGES/anjuta-extras.mo
-share/locale/ne/LC_MESSAGES/anjuta-extras.mo
-share/locale/nl/LC_MESSAGES/anjuta-extras.mo
-share/locale/oc/LC_MESSAGES/anjuta-extras.mo
-share/locale/or/LC_MESSAGES/anjuta-extras.mo
-share/locale/pa/LC_MESSAGES/anjuta-extras.mo
-share/locale/pl/LC_MESSAGES/anjuta-extras.mo
-share/locale/pt/LC_MESSAGES/anjuta-extras.mo
-share/locale/pt_BR/LC_MESSAGES/anjuta-extras.mo
-share/locale/ro/LC_MESSAGES/anjuta-extras.mo
-share/locale/ru/LC_MESSAGES/anjuta-extras.mo
-share/locale/rw/LC_MESSAGES/anjuta-extras.mo
-share/locale/si/LC_MESSAGES/anjuta-extras.mo
-share/locale/sk/LC_MESSAGES/anjuta-extras.mo
-share/locale/sl/LC_MESSAGES/anjuta-extras.mo
-share/locale/sq/LC_MESSAGES/anjuta-extras.mo
-share/locale/sr/LC_MESSAGES/anjuta-extras.mo
-share/locale/sr@latin/LC_MESSAGES/anjuta-extras.mo
-share/locale/sv/LC_MESSAGES/anjuta-extras.mo
-share/locale/te/LC_MESSAGES/anjuta-extras.mo
-share/locale/th/LC_MESSAGES/anjuta-extras.mo
-share/locale/tr/LC_MESSAGES/anjuta-extras.mo
-share/locale/uk/LC_MESSAGES/anjuta-extras.mo
-share/locale/vi/LC_MESSAGES/anjuta-extras.mo
-share/locale/zh_CN/LC_MESSAGES/anjuta-extras.mo
-share/locale/zh_HK/LC_MESSAGES/anjuta-extras.mo
-share/locale/zh_TW/LC_MESSAGES/anjuta-extras.mo
-share/pixmaps/anjuta/anjuta-editor-scintilla-plugin-48.png
-share/pixmaps/anjuta/anjuta-editor-scintilla-plugin.svg
-share/pixmaps/anjuta/anjuta-sample-plugin-48.png
-share/pixmaps/anjuta/anjuta-sample-plugin.svg
-share/pixmaps/anjuta/anjuta-scratchbox-48.png