mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
x11-wm/antiwm: Remove expired port
2024-01-20 x11-wm/antiwm: Last upstream release was in 2009
This commit is contained in:
parent
5a1b3f0761
commit
0fb4140258
8 changed files with 1 additions and 114 deletions
1
MOVED
1
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/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/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/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
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
SUBDIR += afterstep
|
SUBDIR += afterstep
|
||||||
SUBDIR += afterstep-stable
|
SUBDIR += afterstep-stable
|
||||||
SUBDIR += amiwm
|
SUBDIR += amiwm
|
||||||
SUBDIR += antiwm
|
|
||||||
SUBDIR += aphelia
|
SUBDIR += aphelia
|
||||||
SUBDIR += awesome
|
SUBDIR += awesome
|
||||||
SUBDIR += awesome-vicious
|
SUBDIR += awesome-vicious
|
||||||
|
|
|
@ -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>
|
|
|
@ -1,2 +0,0 @@
|
||||||
SHA256 (antiwm-0.0.5.tar.gz) = 94546c967a4e5ab254e52ad3ac6f92da5a3fc89db2289c690a918b0dde8f5ff0
|
|
||||||
SIZE (antiwm-0.0.5.tar.gz) = 8340
|
|
|
@ -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 $@
|
|
|
@ -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"
|
|
||||||
|
|
|
@ -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"
|
|
||||||
|
|
|
@ -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.
|
|
Loading…
Add table
Reference in a new issue