git: 2c0bb3ce9133 - main - net/wmwlmon: Remove expired port

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Sun, 31 Dec 2023 00:07:53 UTC
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=2c0bb3ce91339f3fba0e05e13cc7254045710407

commit 2c0bb3ce91339f3fba0e05e13cc7254045710407
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-12-29 22:20:34 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-12-31 00:06:21 +0000

    net/wmwlmon: Remove expired port
    
    2023-12-31 net/wmwlmon: BROKEN on all supported versions after the EOL of 12
---
 MOVED                             |  1 +
 net/Makefile                      |  1 -
 net/wmwlmon/Makefile              | 28 ----------------------------
 net/wmwlmon/distinfo              |  2 --
 net/wmwlmon/files/patch-wl.c      | 20 --------------------
 net/wmwlmon/files/patch-wl.h      | 11 -----------
 net/wmwlmon/files/patch-wmwlmon.1 | 10 ----------
 net/wmwlmon/pkg-descr             |  1 -
 8 files changed, 1 insertion(+), 73 deletions(-)

diff --git a/MOVED b/MOVED
index c788d48374ff..5f076639285e 100644
--- a/MOVED
+++ b/MOVED
@@ -8225,3 +8225,4 @@ net/thcrut||2023-12-31|Has expired: BROKEN on all supported versions after the E
 games/OpenDiablo2||2023-12-31|Has expired: Upstream repository has been archived on Dec 20, 2021
 graphics/figurine||2023-12-31|Has expired: BROKEN for more than 2 years on all supported versions after the EOL of 12
 editors/xi-term||2023-12-31|Has expired: Frontend depends on deprecated editors/xi-core. No upstream activity.
+net/wmwlmon||2023-12-31|Has expired: BROKEN on all supported versions after the EOL of 12
diff --git a/net/Makefile b/net/Makefile
index 83cb37e24c13..5e84fc49bb37 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -1633,7 +1633,6 @@
     SUBDIR += wmping
     SUBDIR += wmwave
     SUBDIR += wmwifi
-    SUBDIR += wmwlmon
     SUBDIR += wol
     SUBDIR += wpa_supplicant_gui
     SUBDIR += wping
diff --git a/net/wmwlmon/Makefile b/net/wmwlmon/Makefile
deleted file mode 100644
index c40e57e5e545..000000000000
--- a/net/wmwlmon/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-PORTNAME=	wmwlmon
-PORTVERSION=	1.0
-CATEGORIES=	net windowmaker
-MASTER_SITES=	http://www.nazgul.ch/dev/
-
-MAINTAINER=	LukeD@pobox.com
-COMMENT=	DockApp showing the state of a wireless network device
-WWW=		http://www.nazgul.ch/dev_wmwlmon.html
-
-DEPRECATED=	BROKEN on all supported versions after the EOL of 12
-EXPIRATION_DATE=	2023-12-31
-BROKEN_FreeBSD_13=	does not compile: wl.c:29:10: fatal error: 'dev/wi/if_wavelan_ieee.h' file not found
-BROKEN_FreeBSD_14=	does not compile: wl.c:29:10: fatal error: 'dev/wi/if_wavelan_ieee.h' file not found
-
-USES=		xorg
-USE_XORG=	x11 xext xpm
-
-PLIST_FILES=	bin/wmwlmon man/man1/wmwlmon.1.gz
-
-post-patch:
-	${REINPLACE_CMD} -e 's#/usr/X11R6#${LOCALBASE}#g' \
-		-e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/Makefile
-
-do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/wmwlmon ${STAGEDIR}${PREFIX}/bin
-	${INSTALL_MAN} ${WRKSRC}/wmwlmon.1 ${STAGEDIR}${MANPREFIX}/man/man1
-
-.include <bsd.port.mk>
diff --git a/net/wmwlmon/distinfo b/net/wmwlmon/distinfo
deleted file mode 100644
index 1dd57b6372ec..000000000000
--- a/net/wmwlmon/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (wmwlmon-1.0.tar.gz) = d260828a3eadc39adf487d08384a2226de3e10298acf3e630865d6985edb170e
-SIZE (wmwlmon-1.0.tar.gz) = 15097
diff --git a/net/wmwlmon/files/patch-wl.c b/net/wmwlmon/files/patch-wl.c
deleted file mode 100644
index 01a400729411..000000000000
--- a/net/wmwlmon/files/patch-wl.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- wl.c.orig	2008-05-12 21:42:17.000000000 -0700
-+++ wl.c	2008-05-15 21:27:36.000000000 -0700
-@@ -283,6 +283,7 @@
- int
- get_wi_signal(const char *interface)
- {
-+#if __FreeBSD__ > 600100 && __FreeBSD__ < 700052 /* wi support is broken on 7 because of struct wi_req removal*/
- 	int		s;
- 	struct ifreq	ifr;
- 	struct wi_req	wreq;
-@@ -319,6 +320,9 @@
- #ifdef __FreeBSD__
- 	return (wreq.wi_val[1]);
- #endif
-+#else
-+	return (-1);
-+#endif
- }
- 
- /*
diff --git a/net/wmwlmon/files/patch-wl.h b/net/wmwlmon/files/patch-wl.h
deleted file mode 100644
index d180488ac2e9..000000000000
--- a/net/wmwlmon/files/patch-wl.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- wl.h.orig	2006-05-04 18:44:47 UTC
-+++ wl.h
-@@ -16,7 +16,7 @@
-  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-  */
- 
--#ifndef __OpenBSD__ 
-+#ifndef IFM_TYPE_MATCH
- #define IFM_TYPE_MATCH(dt, t) (IFM_TYPE((dt)) == 0 || \
-     IFM_TYPE((dt)) == IFM_TYPE((t)))
- #endif
diff --git a/net/wmwlmon/files/patch-wmwlmon.1 b/net/wmwlmon/files/patch-wmwlmon.1
deleted file mode 100644
index b41194fab860..000000000000
--- a/net/wmwlmon/files/patch-wmwlmon.1
+++ /dev/null
@@ -1,10 +0,0 @@
---- wmwlmon.1.orig	2008-05-13 10:42:02.000000000 -0700
-+++ wmwlmon.1	2008-05-15 21:30:56.000000000 -0700
-@@ -105,7 +105,6 @@
- .It iwi(4)
- .It ral(4)
- .It upgt(4)
--.It wi(4)
- .It wpi(4)
- .El
- .Pp
diff --git a/net/wmwlmon/pkg-descr b/net/wmwlmon/pkg-descr
deleted file mode 100644
index 84af20976c28..000000000000
--- a/net/wmwlmon/pkg-descr
+++ /dev/null
@@ -1 +0,0 @@
-A DockApp that shows the state of a wireless network device.