summaryrefslogtreecommitdiffstats
path: root/x11-wm/w9wm
diff options
context:
space:
mode:
authorvanilla <vanilla@FreeBSD.org>2001-03-17 16:19:14 +0000
committervanilla <vanilla@FreeBSD.org>2001-03-17 16:19:14 +0000
commit814476c5722287f3492ffd8dceb2f95714ed712a (patch)
tree31e2687df6348cc2df51dddd3419196b10fc1128 /x11-wm/w9wm
parent2e076b3bc41bac8c2faa959abffc3ec450199034 (diff)
downloadFreeBSD-ports-814476c5722287f3492ffd8dceb2f95714ed712a.zip
FreeBSD-ports-814476c5722287f3492ffd8dceb2f95714ed712a.tar.gz
w9wm is a quick & dirty hack based on 9wm, the wonderful "template"
window manager made by David Hogan. 9wm is really nice for all day use (I mean, a large Emacs window covering the whole screen and a terminal to use Lynx and browse the web ;-)) provided that you do not have a large number of windows on your screen. But in some occasions it is not the case (ie. you have to telnet to 4-5 remote machines), which is painful with 9wm. This need for virtual screens motivated this about 50 lines hack. w9wm brings support for virtual screens (provided you use the second button, aka middle button to select one virtual screen) as well as for key bindings (to switch from one window to another). PR: ports/25362 Submitted by: George Reid <greid@ukug.uk.freebsd.org>
Diffstat (limited to 'x11-wm/w9wm')
-rw-r--r--x11-wm/w9wm/Makefile20
-rw-r--r--x11-wm/w9wm/distinfo1
-rw-r--r--x11-wm/w9wm/files/patch-Makefile.no-imake29
-rw-r--r--x11-wm/w9wm/pkg-comment1
-rw-r--r--x11-wm/w9wm/pkg-descr16
-rw-r--r--x11-wm/w9wm/pkg-plist1
6 files changed, 68 insertions, 0 deletions
diff --git a/x11-wm/w9wm/Makefile b/x11-wm/w9wm/Makefile
new file mode 100644
index 0000000..b6d61f6
--- /dev/null
+++ b/x11-wm/w9wm/Makefile
@@ -0,0 +1,20 @@
+# New ports collection makefile for: w9wm
+# Date created: 25 February 2001
+# Whom: George Reid <greid@ukug.uk.freebsd.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= w9wm
+PORTVERSION= 0.4.1
+CATEGORIES= x11-wm
+MASTER_SITES= http://inferno.cs.univ-paris8.fr/~drieu/w9wm/src/
+
+MAINTAINER= greid@ukug.uk.freebsd.org
+
+USE_X_PREFIX= yes
+MAKEFILE= Makefile.no-imake
+
+MAN1= w9wm.1
+
+.include <bsd.port.mk>
diff --git a/x11-wm/w9wm/distinfo b/x11-wm/w9wm/distinfo
new file mode 100644
index 0000000..19cdb92
--- /dev/null
+++ b/x11-wm/w9wm/distinfo
@@ -0,0 +1 @@
+MD5 (w9wm-0.4.1.tar.gz) = 102169e67b9b616f16b21da97bfb8289
diff --git a/x11-wm/w9wm/files/patch-Makefile.no-imake b/x11-wm/w9wm/files/patch-Makefile.no-imake
new file mode 100644
index 0000000..652b84e
--- /dev/null
+++ b/x11-wm/w9wm/files/patch-Makefile.no-imake
@@ -0,0 +1,29 @@
+--- Makefile.no-imake.orig Wed Dec 6 19:02:10 2000
++++ Makefile.no-imake Sat Mar 17 23:17:16 2001
+@@ -6,11 +6,11 @@
+ # if you're using AIX, add "-DBSD_INCLUDES" to "CFLAGS".
+ #
+
+-CFLAGS = -g -DSHAPE
+-LDFLAGS = -lXext -lX11
+-BIN = /usr/bin/X11
++CFLAGS += -DSHAPE -I${X11BASE}/include
++LDFLAGS = -lXext -lX11 -L${X11BASE}/lib
++BIN = ${X11BASE}/bin
+
+-MANDIR = /usr/man/man1
++MANDIR = ${X11BASE}/man/man1
+ MANSUFFIX = 1
+
+ #
+@@ -31,9 +31,7 @@
+
+ install: w9wm
+ cp w9wm $(BIN)/w9wm
+-
+-install.man:
+- cp 9wm.man $(MANDIR)/9wm.$(MANSUFFIX)
++ cp w9wm.1 $(MANDIR)/w9wm.$(MANSUFFIX)
+
+ $(OBJS): $(HFILES)
+
diff --git a/x11-wm/w9wm/pkg-comment b/x11-wm/w9wm/pkg-comment
new file mode 100644
index 0000000..073696d
--- /dev/null
+++ b/x11-wm/w9wm/pkg-comment
@@ -0,0 +1 @@
+A hack of 9wm to give virtual screens
diff --git a/x11-wm/w9wm/pkg-descr b/x11-wm/w9wm/pkg-descr
new file mode 100644
index 0000000..50d955e
--- /dev/null
+++ b/x11-wm/w9wm/pkg-descr
@@ -0,0 +1,16 @@
+w9wm is a quick & dirty hack based on 9wm, the wonderful "template"
+window manager made by David Hogan.
+
+9wm is really nice for all day use (I mean, a large Emacs window
+covering the whole screen and a terminal to use Lynx and browse the
+web ;-)) provided that you do not have a large number of windows on
+your screen. But in some occasions it is not the case (ie. you have
+to telnet to 4-5 remote machines), which is painful with 9wm.
+
+This need for virtual screens motivated this about 50 lines hack.
+w9wm brings support for virtual screens (provided you use the second
+button, aka middle button to select one virtual screen) as well as for
+key bindings (to switch from one window to another).
+
+- George Reid
+greid@ukug.uk.freebsd.org
diff --git a/x11-wm/w9wm/pkg-plist b/x11-wm/w9wm/pkg-plist
new file mode 100644
index 0000000..8b7b381
--- /dev/null
+++ b/x11-wm/w9wm/pkg-plist
@@ -0,0 +1 @@
+bin/w9wm
OpenPOWER on IntegriCloud