aboutsummaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2024-01-20 22:14:12 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2024-01-20 22:14:25 +0000
commit0fb4140258e381f0c20bd3dfaf2855a9133db736 (patch)
treecfc317d20a2cdf7f7439a02d0a01e33bbcfb0bae /x11-wm
parent5a1b3f07614b4a4d39930a5f0806f44a0f0ed606 (diff)
downloadports-0fb4140258e381f0c20bd3dfaf2855a9133db736.tar.gz
ports-0fb4140258e381f0c20bd3dfaf2855a9133db736.zip
x11-wm/antiwm: Remove expired port
2024-01-20 x11-wm/antiwm: Last upstream release was in 2009
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/Makefile1
-rw-r--r--x11-wm/antiwm/Makefile41
-rw-r--r--x11-wm/antiwm/distinfo2
-rw-r--r--x11-wm/antiwm/files/patch-Makefile47
-rw-r--r--x11-wm/antiwm/files/patch-list.c10
-rw-r--r--x11-wm/antiwm/files/patch-manage.c10
-rw-r--r--x11-wm/antiwm/pkg-descr3
7 files changed, 0 insertions, 114 deletions
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.