pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/wm/scrotwm Initial import of scrotwm-0.9.1:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b91bcd3da8a0
branches:  trunk
changeset: 554849:b91bcd3da8a0
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sat Feb 21 15:15:29 2009 +0000

description:
Initial import of scrotwm-0.9.1:

Scrotwm is a small dynamic tiling window manager for X11. It tries
to stay out of the way so that valuable screen real estate can be
used for much more important stuff. It has sane defaults and does
not require one to learn a language to do any configuration. It
was written by hackers for hackers and it strives to be small,
compact and fast.

It was largely inspired by xmonad and dwm. Both are fine products
but suffer from things like: crazy-unportable-language-syndrome,
silly defaults, asymmetrical window layout, "how hard can it be?"
and good old NIH. Nevertheless dwm was a phenomenal resource and
many good ideas and code was borrowed from it. On the other hand
xmonad has great defaults, key bindings and xinerama support but
is crippled by not being written in C.

Scrotwm is a beautiful pearl! For it too, was created by grinding
irritation. Nothing is a bigger waste of time than moving windows
around until they are the right size-ish or having just about any
relevant key combination being eaten for some task one never needs.
The path of agony is too long to quote and in classical OpenBSD
fashion (put up, or hack up) a brand new window manager was whooped
up to serve no other purpose than to obey its masters. It was
written by Marco Peereboom & Ryan Thomas McBride and it is released
under the ISC license.

diffstat:

 wm/scrotwm/DESCR            |  24 ++++++++++++++++++++++++
 wm/scrotwm/Makefile         |  30 ++++++++++++++++++++++++++++++
 wm/scrotwm/PLIST            |   8 ++++++++
 wm/scrotwm/distinfo         |   7 +++++++
 wm/scrotwm/patches/patch-aa |  20 ++++++++++++++++++++
 wm/scrotwm/patches/patch-ab |  16 ++++++++++++++++
 6 files changed, 105 insertions(+), 0 deletions(-)

diffs (129 lines):

diff -r b868d7af8fbd -r b91bcd3da8a0 wm/scrotwm/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/wm/scrotwm/DESCR  Sat Feb 21 15:15:29 2009 +0000
@@ -0,0 +1,24 @@
+Scrotwm is a small dynamic tiling window manager for X11. It tries
+to stay out of the way so that valuable screen real estate can be
+used for much more important stuff. It has sane defaults and does
+not require one to learn a language to do any configuration. It
+was written by hackers for hackers and it strives to be small,
+compact and fast.
+
+It was largely inspired by xmonad and dwm. Both are fine products
+but suffer from things like: crazy-unportable-language-syndrome,
+silly defaults, asymmetrical window layout, "how hard can it be?"
+and good old NIH. Nevertheless dwm was a phenomenal resource and
+many good ideas and code was borrowed from it. On the other hand
+xmonad has great defaults, key bindings and xinerama support but
+is crippled by not being written in C.
+
+Scrotwm is a beautiful pearl! For it too, was created by grinding
+irritation. Nothing is a bigger waste of time than moving windows
+around until they are the right size-ish or having just about any
+relevant key combination being eaten for some task one never needs.
+The path of agony is too long to quote and in classical OpenBSD
+fashion (put up, or hack up) a brand new window manager was whooped
+up to serve no other purpose than to obey its masters. It was
+written by Marco Peereboom & Ryan Thomas McBride and it is released
+under the ISC license.
diff -r b868d7af8fbd -r b91bcd3da8a0 wm/scrotwm/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/wm/scrotwm/Makefile       Sat Feb 21 15:15:29 2009 +0000
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/02/21 15:15:29 wiz Exp $
+#
+
+DISTNAME=      scrotwm-0.9.1
+CATEGORIES=    wm
+MASTER_SITES=  http://www.peereboom.us/scrotwm/snapshot/
+EXTRACT_SUFX=  .tgz
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      http://www.peereboom.us/scrotwm/html/scrotwm.html
+COMMENT=       Small dynamic tiling window manager for X11
+
+BUILDLINK_TRANSFORM+=  rm:-Werror
+PKG_DESTDIR_SUPPORT=   user-destdir
+
+INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1 share/examples/scrotwm
+
+post-extract:
+       ${MV} ${WRKSRC}/linux/linux.c ${WRKSRC}
+
+do-install:
+       ${INSTALL_PROGRAM} ${WRKSRC}/scrotwm ${DESTDIR}${PREFIX}/bin
+       ${INSTALL_DATA} ${WRKSRC}/scrotwm.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
+       ${INSTALL_DATA} ${WRKSRC}/*.conf ${DESTDIR}${PREFIX}/share/examples/scrotwm
+       ${INSTALL_DATA} ${WRKSRC}/*.sh ${DESTDIR}${PREFIX}/share/examples/scrotwm
+
+.include "../../x11/libX11/buildlink3.mk"
+.include "../../x11/libXrandr/buildlink3.mk"
+.include "../../x11/xproto/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r b868d7af8fbd -r b91bcd3da8a0 wm/scrotwm/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/wm/scrotwm/PLIST  Sat Feb 21 15:15:29 2009 +0000
@@ -0,0 +1,8 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2009/02/21 15:15:29 wiz Exp $
+bin/scrotwm
+man/man1/scrotwm.1
+share/examples/scrotwm/baraction.sh
+share/examples/scrotwm/initscreen.sh
+share/examples/scrotwm/screenshot.sh
+share/examples/scrotwm/scrotwm.conf
+@dirrm share/examples/scrotwm
diff -r b868d7af8fbd -r b91bcd3da8a0 wm/scrotwm/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/wm/scrotwm/distinfo       Sat Feb 21 15:15:29 2009 +0000
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.1.1.1 2009/02/21 15:15:29 wiz Exp $
+
+SHA1 (scrotwm-0.9.1.tgz) = bc01e3be45274a1f439ae5ff910736c403ffbc96
+RMD160 (scrotwm-0.9.1.tgz) = e9d8af1cb077f6f5d9e2f50ffb8efa7177efae05
+Size (scrotwm-0.9.1.tgz) = 31428 bytes
+SHA1 (patch-aa) = 7a2c5ec09c4f8701e3c1e757574f28ee88d42ce4
+SHA1 (patch-ab) = 58309fbcf514bcb3a9acd9b8b5028fb988e6dd8e
diff -r b868d7af8fbd -r b91bcd3da8a0 wm/scrotwm/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/wm/scrotwm/patches/patch-aa       Sat Feb 21 15:15:29 2009 +0000
@@ -0,0 +1,20 @@
+$NetBSD: patch-aa,v 1.1.1.1 2009/02/21 15:15:29 wiz Exp $
+
+--- Makefile.orig      2009-02-18 20:40:10.000000000 +0000
++++ Makefile
+@@ -1,9 +1,9 @@
+ # $scrotwm: Makefile,v 1.8 2009/01/24 17:57:26 mcbride Exp $
+-.include <bsd.xconf.mk>
+ 
+ SUBDIR= lib
+ 
+ PROG=scrotwm
++SRCS=scrotwm.c linux.c
+ MAN=scrotwm.1
+ 
+ CFLAGS+=-Wall -Wno-uninitialized -ggdb3
+@@ -15,4 +15,3 @@ MANDIR= ${X11BASE}/man/cat
+ obj: _xenocara_obj
+ 
+ .include <bsd.prog.mk>
+-.include <bsd.xorg.mk>
diff -r b868d7af8fbd -r b91bcd3da8a0 wm/scrotwm/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/wm/scrotwm/patches/patch-ab       Sat Feb 21 15:15:29 2009 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-ab,v 1.1.1.1 2009/02/21 15:15:29 wiz Exp $
+
+--- lib/Makefile.orig  2009-02-18 20:40:29.000000000 +0000
++++ lib/Makefile
+@@ -1,6 +1,5 @@
+ #     $scrotwm: Makefile,v 1.1 2009/01/24 17:57:26 mcbride Exp $
+ 
+-.include <bsd.xconf.mk>
+ 
+ LIB=    swmhack
+ NOMAN=        yes
+@@ -19,4 +18,3 @@ install:
+               ${X11BASE}/lib/swmhack.so
+ 
+ .include <bsd.lib.mk>
+-.include <bsd.xorg.mk>



Home | Main Index | Thread Index | Old Index