git: 0fb4140258e3 - main - x11-wm/antiwm: Remove expired port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 20 Jan 2024 22:15:11 UTC
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=0fb4140258e381f0c20bd3dfaf2855a9133db736 commit 0fb4140258e381f0c20bd3dfaf2855a9133db736 Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2024-01-20 22:14:12 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2024-01-20 22:14:25 +0000 x11-wm/antiwm: Remove expired port 2024-01-20 x11-wm/antiwm: Last upstream release was in 2009 --- MOVED | 1 + x11-wm/Makefile | 1 - x11-wm/antiwm/Makefile | 41 --------------------------------- x11-wm/antiwm/distinfo | 2 -- x11-wm/antiwm/files/patch-Makefile | 47 -------------------------------------- x11-wm/antiwm/files/patch-list.c | 10 -------- x11-wm/antiwm/files/patch-manage.c | 10 -------- x11-wm/antiwm/pkg-descr | 3 --- 8 files changed, 1 insertion(+), 114 deletions(-) diff --git a/MOVED b/MOVED index 8e5b5182cee2..bc4d0d60f11e 100644 --- a/MOVED +++ b/MOVED @@ -2963,3 +2963,4 @@ x11-wm/ratmen||2024-01-18|Has expired: Last upstream release was in 2008 x11-wm/larswm||2024-01-18|Has expired: Last upstream release was in 2010 x11-wm/flwm||2024-01-19|Has expired: Last upstream release and activity was in 2015 x11-wm/jewel||2024-01-19|Has expired: Last upstream release was in 2004 +x11-wm/antiwm||2024-01-20|Has expired: Last upstream release was in 2009 diff --git a/x11-wm/Makefile b/x11-wm/Makefile index 5f92eb496bb0..3d574f186738 100644 --- a/x11-wm/Makefile +++ b/x11-wm/Makefile @@ -3,7 +3,6 @@ SUBDIR += afterstep SUBDIR += afterstep-stable SUBDIR += amiwm - SUBDIR += antiwm SUBDIR += aphelia SUBDIR += awesome SUBDIR += awesome-vicious diff --git a/x11-wm/antiwm/Makefile b/x11-wm/antiwm/Makefile deleted file mode 100644 index a5f1d618df6a..000000000000 --- a/x11-wm/antiwm/Makefile +++ /dev/null @@ -1,41 +0,0 @@ -PORTNAME= antiwm -PORTVERSION= 0.0.5 -CATEGORIES= x11-wm -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Minimalist window manager inspired by Ratpoison -WWW= https://sourceforge.net/projects/antiwm/ - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE - -DEPRECATED= Last upstream release was in 2009 -EXPIRATION_DATE= 2024-01-20 - -USES= xorg -USE_XORG= x11 - -PLIST_FILES= bin/antiwm -PORTDOCS= README - -OPTIONS_DEFINE= DOCS - -pre-everything:: - @${ECHO_MSG} "You can build antiwm with your own conf.h using the ANTIWM_CONF knob:" - @${ECHO_MSG} "make ANTIWM_CONF=/path/to/antiwm/conf.h install clean" - -post-extract: -.if defined(ANTIWM_CONF) - @${ECHO_MSG} "creating conf.h from ${ANTIWM_CONF}" - @${CP} ${ANTIWM_CONF} ${WRKSRC}/conf.h -.endif - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - -do-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ - -.include <bsd.port.mk> diff --git a/x11-wm/antiwm/distinfo b/x11-wm/antiwm/distinfo deleted file mode 100644 index ebc37011a8de..000000000000 --- a/x11-wm/antiwm/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (antiwm-0.0.5.tar.gz) = 94546c967a4e5ab254e52ad3ac6f92da5a3fc89db2289c690a918b0dde8f5ff0 -SIZE (antiwm-0.0.5.tar.gz) = 8340 diff --git a/x11-wm/antiwm/files/patch-Makefile b/x11-wm/antiwm/files/patch-Makefile deleted file mode 100644 index 4badf2cd049c..000000000000 --- a/x11-wm/antiwm/files/patch-Makefile +++ /dev/null @@ -1,47 +0,0 @@ ---- Makefile.orig 2008-08-01 00:59:17 UTC -+++ Makefile -@@ -1,22 +1,36 @@ - # install directory --INSTALL_DIR=/usr/local/bin -+PREFIX?= /usr/local/ - - # enable debug messages - DEBUG = -DDEBUG - --CC = gcc --LIBS = -lX11 --LDFLAGS = -L/usr/lib --CFLAGS = -O2 -Wall -I/usr/X11R6/include -+# compiler and linker -+CC?= gcc - -+# paths -+X11INC = $(LOCALBASE)/include -+X11LIB = $(LOCALBASE)/lib -+ -+# includes and libs -+INCS = -I. -I/usr/include -I${X11INC} -+LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -+ -+# flags -+LDFLAGS+= ${LIBS} -+CFLAGS+= ${INCS} -+ - SRC = main.o events.o manage.o list.o bar.o - HEADERS = bar.h conf.h data.h events.h list.h manage.h antiwm.h - -+all: antiwm -+ - antiwm: $(SRC) -- gcc $(SRC) -o $@ $(CFLAGS) $(LDFLAGS) $(LIBS) -+ $(CC) $(SRC) -o $@ $(CFLAGS) $(LDFLAGS) - --install: antiwm -- cp antiwm $(INSTALL_DIR) -+install: all -+ @mkdir -p ${DESTDIR}${PREFIX}/bin -+ @cp -f antiwm ${PREFIX}/bin -+ @chmod 755 ${DESTDIR}${PREFIX}/bin/antiwm - - %.o : %.c $(HEADERS) - $(CC) -c $(CFLAGS) $(DEBUG) $< -o $@ diff --git a/x11-wm/antiwm/files/patch-list.c b/x11-wm/antiwm/files/patch-list.c deleted file mode 100644 index 91f5c5fe10fe..000000000000 --- a/x11-wm/antiwm/files/patch-list.c +++ /dev/null @@ -1,10 +0,0 @@ ---- list.c.orig 2009-05-30 05:03:56 UTC -+++ list.c -@@ -4,6 +4,7 @@ - - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - - #include "antiwm.h" - diff --git a/x11-wm/antiwm/files/patch-manage.c b/x11-wm/antiwm/files/patch-manage.c deleted file mode 100644 index aa522da337b6..000000000000 --- a/x11-wm/antiwm/files/patch-manage.c +++ /dev/null @@ -1,10 +0,0 @@ ---- manage.c.orig 2009-05-30 05:05:18 UTC -+++ manage.c -@@ -10,6 +10,7 @@ - - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - - #include "antiwm.h" - diff --git a/x11-wm/antiwm/pkg-descr b/x11-wm/antiwm/pkg-descr deleted file mode 100644 index 86903ba2b125..000000000000 --- a/x11-wm/antiwm/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -AntiWM is a small and simple window manager with a focus on -productivity and utility. Inspired by ratpoison, AntiWM is -keyboard driven and handles all windows fullscreen.