diff options
Diffstat (limited to 'wm')
-rw-r--r-- | wm/ratpoison/Makefile | 10 | ||||
-rw-r--r-- | wm/ratpoison/PLIST | 7 | ||||
-rw-r--r-- | wm/ratpoison/distinfo | 9 | ||||
-rw-r--r-- | wm/ratpoison/patches/patch-aa | 38 |
4 files changed, 55 insertions, 9 deletions
diff --git a/wm/ratpoison/Makefile b/wm/ratpoison/Makefile index c126958c989..67c5d0f7079 100644 --- a/wm/ratpoison/Makefile +++ b/wm/ratpoison/Makefile @@ -1,18 +1,20 @@ -# $NetBSD: Makefile,v 1.13 2004/04/17 20:46:28 zuntum Exp $ +# $NetBSD: Makefile,v 1.14 2005/03/19 15:24:31 wiz Exp $ # -DISTNAME= ratpoison-1.2.2 +DISTNAME= ratpoison-1.3.0 CATEGORIES= wm -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ratpoison/} +MASTER_SITES= http://savannah.nongnu.org/download/ratpoison/ MAINTAINER= tech-pkg@NetBSD.org -HOMEPAGE= http://ratpoison.sourceforge.net/ +HOMEPAGE= http://www.nongnu.org/ratpoison/ COMMENT= Simple window manager with no fat library dependencies USE_BUILDLINK3= YES USE_X11= YES GNU_CONFIGURE= YES +USE_GNU_READLINE= YES INFO_FILES= ratpoison.info +.include "../../devel/readline/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/wm/ratpoison/PLIST b/wm/ratpoison/PLIST index 471a4dce3cd..b468eacef82 100644 --- a/wm/ratpoison/PLIST +++ b/wm/ratpoison/PLIST @@ -1,13 +1,18 @@ -@comment $NetBSD: PLIST,v 1.5 2004/03/11 14:23:49 seb Exp $ +@comment $NetBSD: PLIST,v 1.6 2005/03/19 15:24:31 wiz Exp $ bin/ratpoison +bin/rpws man/man1/ratpoison.1 share/doc/ratpoison/AUTHORS share/doc/ratpoison/COPYING share/doc/ratpoison/ChangeLog share/doc/ratpoison/NEWS share/doc/ratpoison/README +share/ratpoison/allwindows.sh +share/ratpoison/clickframe.pl share/ratpoison/genrpbindings share/ratpoison/ratpoison.el +share/ratpoison/rpshowall.sh +share/ratpoison/rpws share/ratpoison/split.sh @dirrm share/ratpoison @dirrm share/doc/ratpoison diff --git a/wm/ratpoison/distinfo b/wm/ratpoison/distinfo index 0a0c198ce09..faa1231771f 100644 --- a/wm/ratpoison/distinfo +++ b/wm/ratpoison/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.6 2005/02/23 18:43:55 wiz Exp $ +$NetBSD: distinfo,v 1.7 2005/03/19 15:24:31 wiz Exp $ -SHA1 (ratpoison-1.2.2.tar.gz) = 67a62739448fe5015af4a3fd8bf9e6e62674ccd7 -RMD160 (ratpoison-1.2.2.tar.gz) = 2bc558f4575f2a77f308e13f3f3d236e09b6a416 -Size (ratpoison-1.2.2.tar.gz) = 271298 bytes +SHA1 (ratpoison-1.3.0.tar.gz) = 410a95d853fcd9f8ad55e83bf2324dcd6bf13a27 +RMD160 (ratpoison-1.3.0.tar.gz) = 386f600abbf80b83e221b75c51b5fa0b9dc88f7a +Size (ratpoison-1.3.0.tar.gz) = 309754 bytes +SHA1 (patch-aa) = bde514f93185a6f0dc3a32f64408f8efe562c08a diff --git a/wm/ratpoison/patches/patch-aa b/wm/ratpoison/patches/patch-aa new file mode 100644 index 00000000000..e5cabc72e38 --- /dev/null +++ b/wm/ratpoison/patches/patch-aa @@ -0,0 +1,38 @@ +$NetBSD: patch-aa,v 1.1 2005/03/19 15:24:31 wiz Exp $ + +--- contrib/rpws.orig 2005-01-28 17:32:12.000000000 +0100 ++++ contrib/rpws 2005-01-28 17:32:22.000000000 +0100 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/bin/sh + # + # Workspaces for ratpoison + # Copyright (C) 2003 Shawn Betts +@@ -80,7 +80,7 @@ + ws_restore () + { + ws_save +- if [ $1 == 1 ]; then ++ if [ $1 = 1 ]; then + rp_call gselect default + else + rp_call gselect ws$1 +@@ -104,15 +104,15 @@ + + echo boom >/tmp/boom + +-if [ -z $@ ]; then ++if test $# -ne 1; then + echo "Usage:" + echo "$0 -i -- initialize the workspaces" + echo "$0 -b -- setup some key bindings" + echo "$0 <n> -- Switch to workspace n" + else +- if [ $1 == -i ]; then ++ if test $1 = -i ; then + ws_init +- elif [ $1 == -b ]; then ++ elif test $1 = -b ; then + ws_bindings + else + ws_restore $1 |