update to wmii-3.1, bugfix release

from maintainer Tobias Ulmer
This commit is contained in:
steven 2006-06-17 17:42:03 +00:00
parent 0ad4543454
commit be6d067c3a
6 changed files with 23 additions and 23 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.1.1.1 2006/06/16 21:36:03 steven Exp $
# $OpenBSD: Makefile,v 1.2 2006/06/17 17:42:03 steven Exp $
COMMENT= "dynamic window manager"
DISTNAME= wmii-3
DISTNAME= wmii-3.1
CATEGORIES= x11
HOMEPAGE= http://wmii.de
@ -27,6 +27,6 @@ FAKE_FLAGS= SYSCONFDIR=${SYSCONFDIR}
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples
mv ${WRKINST}${SYSCONFDIR}/${DISTNAME} ${PREFIX}/share/examples
mv ${WRKINST}${SYSCONFDIR}/wmii-3 ${PREFIX}/share/examples
.include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
MD5 (wmii-3.tar.gz) = 1caba809a6a7bc152a59712e0e0de551
RMD160 (wmii-3.tar.gz) = b008c30d15d3d0977fee3e6e6c77957bcac61f7d
SHA1 (wmii-3.tar.gz) = d2e3da9690ce22b02f6992c4a46feb6ceea9827d
SIZE (wmii-3.tar.gz) = 64334
MD5 (wmii-3.1.tar.gz) = 108147a4283bd76d2a76e47bb0c96bac
RMD160 (wmii-3.1.tar.gz) = c5abaa0982b036b8dafa224751b80d8265c19f59
SHA1 (wmii-3.1.tar.gz) = 363b52207d2505d5921adbcda98136ee240a673d
SIZE (wmii-3.1.tar.gz) = 60935

View File

@ -1,6 +1,6 @@
--- cmd/wm/area.c.orig Sat May 27 19:53:10 2006
+++ cmd/wm/area.c Sat May 27 19:54:13 2006
@@ -150,7 +150,7 @@
--- cmd/wm/area.c.orig Sat Jun 17 13:44:30 2006
+++ cmd/wm/area.c Sat Jun 17 19:39:01 2006
@@ -150,7 +150,7 @@ place_client(Area *a, Client *c)
static unsigned int mx, my;
static Bool *field = nil;
Bool fit = False;

View File

@ -1,5 +1,5 @@
--- config.mk.orig Fri May 19 13:20:53 2006
+++ config.mk Mon May 29 02:42:51 2006
--- config.mk.orig Sat Jun 17 13:44:29 2006
+++ config.mk Sat Jun 17 19:28:41 2006
@@ -2,8 +2,8 @@
# paths
@ -11,11 +11,11 @@
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
@@ -14,7 +14,7 @@
@@ -14,7 +14,7 @@ VERSION = 3.1
LIBS = -L${PREFIX}/lib -L/usr/lib -lc -L${X11LIB} -lX11
# Linux/BSD
-CFLAGS = -O2 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
-CFLAGS = -O3 -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
+CFLAGS+= -I. -I${PREFIX}/include -I/usr/include -I${X11INC} \
-DVERSION=\"${VERSION}\"
LDFLAGS = ${LIBS}

View File

@ -1,11 +1,11 @@
--- libcext/Makefile.orig Fri May 19 13:20:53 2006
+++ libcext/Makefile Mon May 29 01:38:40 2006
--- libcext/Makefile.orig Sat Jun 17 17:32:13 2006
+++ libcext/Makefile Sat Jun 17 17:32:36 2006
@@ -3,7 +3,7 @@
include ../config.mk
-SRC = emallocz.c estrdup.c strlcat.c strlcpy.c strtonum.c tokenize.c trim.c vector.c
+SRC = emallocz.c estrdup.c tokenize.c trim.c vector.c
-SRC = emallocz.c strlcat.c strlcpy.c strtonum.c tokenize.c trim.c vector.c
+SRC = emallocz.c tokenize.c trim.c vector.c
OBJ = ${SRC:.c=.o}

View File

@ -1,5 +1,5 @@
--- libcext/cext.h.orig Fri May 19 13:20:53 2006
+++ libcext/cext.h Mon May 29 01:44:36 2006
--- libcext/cext.h.orig Sat Jun 17 13:44:30 2006
+++ libcext/cext.h Sat Jun 17 19:39:01 2006
@@ -5,6 +5,9 @@
#include <sys/types.h>
@ -10,9 +10,9 @@
#ifndef nil
#define nil (void *)0
#endif
@@ -15,15 +18,18 @@
/* estrdup.c */
char *cext_estrdup(const char *s);
@@ -12,15 +15,18 @@
/* emallocz.c */
void *cext_emallocz(unsigned int size);
-/* strlcat.c */
-unsigned int cext_strlcat(char *dst, const char *src, unsigned int siz);