dwm is a dynamic window manager for X. It manages windows in tiled and

floating layouts. Either layout can be applied dynamically, optimizing
the environment for the application in use and the task performed. It is
the little brother of wmii.

ok jasper@
This commit is contained in:
kili 2007-05-26 20:12:15 +00:00
parent 431f1a75e6
commit 65d23228f8
5 changed files with 69 additions and 0 deletions

34
x11/dwm/Makefile Normal file
View File

@ -0,0 +1,34 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/05/26 20:12:15 kili Exp $
COMMENT= "dynamic window manager"
V= 4.1
DISTNAME= dwm-$V
CATEGORIES= x11
HOMEPAGE= http://www.suckless.org/wiki/dwm/
MAINTAINER= Matthias Kilian <kili@openbsd.org>
# MIT/X
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= X11 c
MASTER_SITES= http://www.suckless.org/download/
CFLAGS+= -I. -I${X11BASE}/include -DVERSION=\\\"$V\\\"
LDFLAGS+= -L${X11BASE}/lib -lX11
MAKE_FLAGS= CC=${CC} CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
FAKE_FLAGS= MANPREFIX=${PREFIX}/man \
PREFIX=${PREFIX}
USE_X11= Yes
NO_REGRESS= Yes
.include <bsd.port.mk>

5
x11/dwm/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (dwm-4.1.tar.gz) = ErYrOONOZmbmqWF3R6DtcA==
RMD160 (dwm-4.1.tar.gz) = PX1JWQWTZ1Rz0hV7jrTC8R2Oqxg=
SHA1 (dwm-4.1.tar.gz) = k+cdQitW2FZTGRSi4j0MQ+X2VWg=
SHA256 (dwm-4.1.tar.gz) = j5Kpsa2urIsNnxYaQnVIutWGeoe91lVfw9WpMXj3oDY=
SIZE (dwm-4.1.tar.gz) = 19209

View File

@ -0,0 +1,23 @@
$OpenBSD: patch-Makefile,v 1.1.1.1 2007/05/26 20:12:15 kili Exp $
--- Makefile.orig Sat May 26 19:08:39 2007
+++ Makefile Sat May 26 19:09:09 2007
@@ -15,8 +15,7 @@ options:
@echo "CC = ${CC}"
.c.o:
- @echo CC $<
- @${CC} -c ${CFLAGS} $<
+ ${CC} -c ${CFLAGS} $<
${OBJ}: dwm.h config.h config.mk
@@ -25,8 +24,7 @@ config.h:
@cp config.default.h $@
dwm: ${OBJ}
- @echo CC -o $@
- @${CC} -o $@ ${OBJ} ${LDFLAGS}
+ ${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
@echo cleaning

4
x11/dwm/pkg/DESCR Normal file
View File

@ -0,0 +1,4 @@
dwm is a dynamic window manager for X. It manages windows in tiled and
floating layouts. Either layout can be applied dynamically, optimizing
the environment for the application in use and the task performed. It is
the little brother of wmii.

3
x11/dwm/pkg/PLIST Normal file
View File

@ -0,0 +1,3 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/05/26 20:12:15 kili Exp $
bin/dwm
@man man/man1/dwm.1