diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2007-04-13 09:08:07 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2007-04-13 09:08:07 +0000 |
commit | c451d2cd274a53f01f028f554f9f701a2c93cf91 (patch) | |
tree | cd07c45ed59e7a7659fcc3e6fa44b05058624795 /wm | |
parent | 59daad6172fd9fc9d37ad0d5d6c07f8a9f01e4cc (diff) | |
download | pkgsrc-c451d2cd274a53f01f028f554f9f701a2c93cf91.tar.gz |
Initial import of dwm-3.9 from pkgsrc-wip.
dwm is a dynamic window manager for X. It manages windows in tiling
and floating modes. Either mode can be applied dynamically, optimizing
the environment for the application in use and the task performed. It
is the little brother of wmii.
dwm contains a small status bar which displays all available tags, the
mode, the title of the focused window, and the text read from standard
input. The selected tags are highlighted with a different color, the
tags of the focused window are highlighted with a small point.
Diffstat (limited to 'wm')
-rw-r--r-- | wm/dwm/DESCR | 9 | ||||
-rw-r--r-- | wm/dwm/Makefile | 18 | ||||
-rw-r--r-- | wm/dwm/PLIST | 3 | ||||
-rw-r--r-- | wm/dwm/distinfo | 6 | ||||
-rw-r--r-- | wm/dwm/patches/patch-aa | 36 |
5 files changed, 72 insertions, 0 deletions
diff --git a/wm/dwm/DESCR b/wm/dwm/DESCR new file mode 100644 index 00000000000..7832cb19ca4 --- /dev/null +++ b/wm/dwm/DESCR @@ -0,0 +1,9 @@ +dwm is a dynamic window manager for X. It manages windows in tiling +and floating modes. Either mode can be applied dynamically, optimizing +the environment for the application in use and the task performed. It +is the little brother of wmii. + +dwm contains a small status bar which displays all available tags, the +mode, the title of the focused window, and the text read from standard +input. The selected tags are highlighted with a different color, the +tags of the focused window are highlighted with a small point. diff --git a/wm/dwm/Makefile b/wm/dwm/Makefile new file mode 100644 index 00000000000..63c54ced869 --- /dev/null +++ b/wm/dwm/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2007/04/13 09:08:07 xtraeme Exp $ + +DISTNAME= dwm-3.9 +CATEGORIES= wm +MASTER_SITES= http://suckless.org/download/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://dwm.suckless.org/ +COMMENT= Dynamic window manager + +NO_CONFIGURE= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/dwm ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/dwm.1 ${PREFIX}/${PKGMANDIR}/man1 + +.include "../../x11/libX11/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/wm/dwm/PLIST b/wm/dwm/PLIST new file mode 100644 index 00000000000..df556e29683 --- /dev/null +++ b/wm/dwm/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2007/04/13 09:08:07 xtraeme Exp $ +bin/dwm +man/man1/dwm.1 diff --git a/wm/dwm/distinfo b/wm/dwm/distinfo new file mode 100644 index 00000000000..d43c28d9ece --- /dev/null +++ b/wm/dwm/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2007/04/13 09:08:07 xtraeme Exp $ + +SHA1 (dwm-3.9.tar.gz) = e070acaac4221f229a7eeac198e78e9cf7438be1 +RMD160 (dwm-3.9.tar.gz) = 43f380b84e4250d1bb638096f0f792dc14ad4abf +Size (dwm-3.9.tar.gz) = 17998 bytes +SHA1 (patch-aa) = 79a3a1843ce347f3f0152065c7e391cd71bc4795 diff --git a/wm/dwm/patches/patch-aa b/wm/dwm/patches/patch-aa new file mode 100644 index 00000000000..f8a93dceed1 --- /dev/null +++ b/wm/dwm/patches/patch-aa @@ -0,0 +1,36 @@ +$NetBSD: patch-aa,v 1.1.1.1 2007/04/13 09:08:07 xtraeme Exp $ + +--- config.mk.orig 2007-04-02 11:11:37.000000000 +0200 ++++ config.mk 2007-04-13 04:30:19.000000000 +0200 +@@ -4,19 +4,18 @@ + # Customize below to fit your system + + # paths +-PREFIX = /usr/local +-MANPREFIX = ${PREFIX}/share/man ++MANPREFIX = ${PREFIX}/${PKGMANDDIR} + +-X11INC = /usr/X11R6/include +-X11LIB = /usr/X11R6/lib ++X11INC = ${X11BASE}/include ++X11LIB = ${X11BASE}/lib + + # includes and libs + INCS = -I. -I/usr/include -I${X11INC} +-LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ++LIBS = -lc -lX11 + + # flags +-CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\" +-LDFLAGS = ${LIBS} ++CFLAGS += -DVERSION=\"${VERSION}\" ++LDFLAGS += ${LIBS} + #CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" + #LDFLAGS = -g ${LIBS} + +@@ -26,4 +25,4 @@ + #CFLAGS += -xtarget=ultra + + # compiler and linker +-CC = cc ++#CC = cc |