aboutsummaryrefslogtreecommitdiff
path: root/x11/terminator
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2020-04-19 15:14:43 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2020-04-19 15:14:43 +0000
commit69495bba58d171b07733d74a113a0b86dc327d22 (patch)
tree28137c3f1782cc3dfddf10c980965f9491fffdc1 /x11/terminator
parentf927af7cfcc1906eda78673766c9576fcac0adba (diff)
downloadports-69495bba58d171b07733d74a113a0b86dc327d22.tar.gz
ports-69495bba58d171b07733d74a113a0b86dc327d22.zip
Remove x11/terminator. It should be added back with svn cp.
Reported by: 0mp
Notes
Notes: svn path=/head/; revision=532121
Diffstat (limited to 'x11/terminator')
-rw-r--r--x11/terminator/Makefile53
-rw-r--r--x11/terminator/distinfo3
-rw-r--r--x11/terminator/files/patch-terminatorlib__notebook.py29
-rw-r--r--x11/terminator/pkg-descr5
4 files changed, 0 insertions, 90 deletions
diff --git a/x11/terminator/Makefile b/x11/terminator/Makefile
deleted file mode 100644
index fee1c68c0182..000000000000
--- a/x11/terminator/Makefile
+++ /dev/null
@@ -1,53 +0,0 @@
-# Created by: Thomas Hurst <tom@hur.st>
-# $FreeBSD$
-
-PORTNAME= terminator
-PORTVERSION= 1.92
-CATEGORIES= x11 python
-MASTER_SITES= https://bazaar.launchpad.net/~hellodeargrandma/terminator/python3/tarball/1852/
-DISTNAME= terminator-python3-bzr-r1852
-
-MAINTAINER= ume@FreeBSD.org
-COMMENT= Multiple GNOME terminals in one window
-
-LICENSE= GPLv2
-
-RUN_DEPENDS= ${LOCALBASE}/lib/libkeybinder-3.0.so:x11/keybinder-gtk3 \
- ${LOCALBASE}/lib/libnotify.so:devel/libnotify \
- ${PYTHON_PKGNAMEPREFIX}configobj>0:devel/py-configobj@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR}
-
-USES= gnome python:3.5+ shebangfix
-USE_GNOME= intltool pygobject3 vte3
-USE_PYTHON= autoplist distutils
-
-PYDISTUTILS_PKGNAME= Terminator
-
-INSTALLS_ICONS= yes
-
-SHEBANG_FILES= terminator.wrapper
-bash_CMD= ${SH}
-
-OPTIONS_DEFINE= NLS
-OPTIONS_SUB= yes
-NLS_USES= gettext
-
-WRKSRC= ${WRKDIR}/~hellodeargrandma/terminator/python3
-
-.include <bsd.port.pre.mk>
-
-.if !${PORT_OPTIONS:MNLS}
-PYDISTUTILS_SETUP+= --without-gettext
-post-patch:
- ${CP} ${WRKSRC}/data/terminator.desktop.in ${WRKSRC}/data/terminator.desktop
- ${REINPLACE_CMD} -e 's/^_//' ${WRKSRC}/data/terminator.desktop
- ${CP} ${WRKSRC}/data/terminator.appdata.xml.in ${WRKSRC}/data/terminator.appdata.xml
- ${REINPLACE_CMD} \
- -e 's|<_|<|' \
- -e 's|</_|</|' \
- ${WRKSRC}/data/terminator.appdata.xml
-.endif
-
-PYDISTUTILS_SETUP+= --without-icon-cache
-
-.include <bsd.port.post.mk>
diff --git a/x11/terminator/distinfo b/x11/terminator/distinfo
deleted file mode 100644
index ff4420f322aa..000000000000
--- a/x11/terminator/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1587305888
-SHA256 (terminator-python3-bzr-r1852.tar.gz) = 223802142fb535a9174a0da50051eeb6fce153a6462c9992deba1c9ee15e3a12
-SIZE (terminator-python3-bzr-r1852.tar.gz) = 889301
diff --git a/x11/terminator/files/patch-terminatorlib__notebook.py b/x11/terminator/files/patch-terminatorlib__notebook.py
deleted file mode 100644
index ebd06307ec59..000000000000
--- a/x11/terminator/files/patch-terminatorlib__notebook.py
+++ /dev/null
@@ -1,29 +0,0 @@
---- terminatorlib/notebook.py.orig 2020-04-19 03:13:43 UTC
-+++ terminatorlib/notebook.py
-@@ -77,17 +77,6 @@ class Notebook(Container, Gtk.Notebook):
-
- def create_layout(self, layout):
- """Apply layout configuration"""
-- def child_compare(a, b):
-- order_a = children[a]['order']
-- order_b = children[b]['order']
--
-- if (order_a == order_b):
-- return 0
-- if (order_a < order_b):
-- return -1
-- if (order_a > order_b):
-- return 1
--
- if 'children' not in layout:
- err('layout specifies no children: %s' % layout)
- return
-@@ -100,7 +89,7 @@ class Notebook(Container, Gtk.Notebook):
-
- num = 0
- keys = list(children.keys())
-- keys.sort(child_compare)
-+ keys.sort(key=lambda x: children[x]['order'])
-
- for child_key in keys:
- child = children[child_key]
diff --git a/x11/terminator/pkg-descr b/x11/terminator/pkg-descr
deleted file mode 100644
index dd03074277de..000000000000
--- a/x11/terminator/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-Terminator is a Python terminal program, using the same widget as
-gnome-terminal to provide a tiled set of terminals in as little
-space as possible.
-
-WWW: http://gnometerminator.blogspot.co.uk/p/introduction.html