aboutsummaryrefslogtreecommitdiff
path: root/x11-wm/plwm
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-01-27 17:18:16 +0000
committerRene Ladan <rene@FreeBSD.org>2020-01-27 17:18:16 +0000
commite397bb0e19920719e5cfaf3198707e61143c9ffa (patch)
treea194ffa1f5df7e257ee1a517140a4951aa53be9b /x11-wm/plwm
parentfe9fe811aa0e4e66aa504a793f34ae4125677c3e (diff)
Notes
Diffstat (limited to 'x11-wm/plwm')
-rw-r--r--x11-wm/plwm/Makefile48
-rw-r--r--x11-wm/plwm/distinfo2
-rw-r--r--x11-wm/plwm/files/patch-plwm_outline.py43
-rw-r--r--x11-wm/plwm/pkg-descr6
4 files changed, 0 insertions, 99 deletions
diff --git a/x11-wm/plwm/Makefile b/x11-wm/plwm/Makefile
deleted file mode 100644
index db829ac92793..000000000000
--- a/x11-wm/plwm/Makefile
+++ /dev/null
@@ -1,48 +0,0 @@
-# Created by: Mike Meyer <mwm@mired.org>
-# $FreeBSD$
-
-PORTNAME= plwm
-PORTVERSION= 2.6a
-CATEGORIES= x11-wm python
-MASTER_SITES= SF
-DISTNAME= ${PORTNAME:tu}-${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Window manager construction kit
-
-DEPRECATED= Unmaintained, uses EOLed python27
-EXPIRATION_DATE= 2020-01-27
-
-LICENSE= GPLv2+
-LICENSE_FILE= ${WRKSRC}/COPYING
-
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xlib>0:x11-toolkits/py-xlib@${PY_FLAVOR}
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xlib>0:x11-toolkits/py-xlib@${PY_FLAVOR}
-
-NO_ARCH= yes
-
-USES= python:2.7
-USE_PYTHON= distutils autoplist
-
-PORTDOCS= *
-PORTEXAMPLES= *
-
-OPTIONS_DEFINE= DOCS EXAMPLES
-
-post-patch:
- @${REINPLACE_CMD} -e \
- 's|whrandom|random|g' ${WRKSRC}/plwm/inspect.py
- @${REINPLACE_CMD} -e \
- 's|$$Id|coding: utf-8 |g' ${WRKSRC}/plwm/mw_apm.py
-
-post-install-DOCS-on:
- @${MKDIR} ${STAGEDIR}${DOCSDIR}
- (cd ${WRKSRC}/doc && ${INSTALL_DATA} *.pdf \
- ${STAGEDIR}${DOCSDIR})
-
-post-install-EXAMPLES-on:
- @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
- (cd ${WRKSRC}/examples && ${INSTALL_DATA} *.examplewm *.py \
- ${STAGEDIR}${EXAMPLESDIR})
-
-.include <bsd.port.mk>
diff --git a/x11-wm/plwm/distinfo b/x11-wm/plwm/distinfo
deleted file mode 100644
index cdfac3782a9c..000000000000
--- a/x11-wm/plwm/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (PLWM-2.6a.tar.gz) = adf7a01f6717235e6ab872f2bcca3d30b10bab31e48aab2afc0cd4c37644d293
-SIZE (PLWM-2.6a.tar.gz) = 452944
diff --git a/x11-wm/plwm/files/patch-plwm_outline.py b/x11-wm/plwm/files/patch-plwm_outline.py
deleted file mode 100644
index 3e6cacceed0f..000000000000
--- a/x11-wm/plwm/files/patch-plwm_outline.py
+++ /dev/null
@@ -1,43 +0,0 @@
---- plwm/outline.py.orig 2001-11-26 13:48:21 UTC
-+++ plwm/outline.py
-@@ -63,7 +63,7 @@ class XorOutlineClient:
-
- if name:
- self.outline_gc.set_clip_rectangles(0, 0, [coords], X.YXSorted)
-- sx, sy, sw, sh, as = namepos
-+ sx, sy, sw, sh, _as = namepos
- self.screen.root.draw_text(self.outline_gc, sx, sy, name)
- self.outline_name = (sx, sy, name)
- else:
-@@ -138,8 +138,8 @@ class WindowOutlineClient:
- height = s[3] - s[1] + 1)
-
- if name:
-- sx, sy, sw, sh, as = namepos
-- self.outline_name_window.configure(x = sx, y = sy - as,
-+ sx, sy, sw, sh, _as = namepos
-+ self.outline_name_window.configure(x = sx, y = sy - _as,
- width = sw, height = sh)
-
- if not self.outline_mapped:
-@@ -155,7 +155,7 @@ class WindowOutlineClient:
- # disappear otherwise...
- if name:
- self.outline_name_window.image_text(self.outline_name_gc,
-- 0, as, name)
-+ 0, _as, name)
-
- def outline_hide(self):
- if self.outline_mapped:
-@@ -246,8 +246,8 @@ def calculate_parts(client, x, y, w, h,
-
- sw = min(r.overall_width, w)
- sh = min(r.overall_ascent + r.overall_descent, h)
-- as = r.overall_ascent
-+ _as = r.overall_ascent
- else:
-- sx = sy = sw = sh = as = 0
-+ sx = sy = sw = sh = _as = 0
-
-- return (x, y, w, h), s, (sx, sy, sw, sh, as)
-+ return (x, y, w, h), s, (sx, sy, sw, sh, _as)
diff --git a/x11-wm/plwm/pkg-descr b/x11-wm/plwm/pkg-descr
deleted file mode 100644
index fdd24ad08c6e..000000000000
--- a/x11-wm/plwm/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-PLWM is a set of python base classes for a window manager, a
-collection of mixins that can be used to configure the behavior of the
-window manager, and some example window managers that show the flexibility
-of the system.
-
-WWW: https://sourceforge.net/projects/plwm/