View | Details | Raw Unified | Return to bug 60872
Collapse All | Expand All

(-)/home/samy/tmp/wmcp/Makefile (-7 / +1 lines)
Lines 20-29 Link Here
20
do-install:
20
do-install:
21
	${INSTALL_PROGRAM} ${WRKSRC}/wmcp ${PREFIX}/bin
21
	${INSTALL_PROGRAM} ${WRKSRC}/wmcp ${PREFIX}/bin
22
22
23
.include <bsd.port.pre.mk>
23
.include <bsd.port.mk>
24
25
.if ${OSVERSION} >= 501000
26
BROKEN=		"Does not compile"
27
.endif
28
29
.include <bsd.port.post.mk>
(-)/home/samy/tmp/wmcp/files/patch-wmcp.c (+73 lines)
Line 0 Link Here
1
--- wmcp.c.orig	Sat Jan  3 17:14:42 2004
2
+++ wmcp.c	Sat Jan  3 17:15:43 2004
3
@@ -806,38 +806,38 @@
4
 void show_usage()
5
 {
6
 
7
-fprintf(stderr,"
8
-
9
-%s
10
-This software is GPL -- do as you wish with it.
11
-
12
-Origional Author:
13
-   Ben Cohen <buddog@aztec.asu.edu>
14
-
15
-Contributors:
16
-   Thomas Nemeth <tnemeth@multimania.com>
17
-   Craig Maloney <craig@ic.net>
18
-   Gert Beumer <Gert@scintilla.utwente.nl>
19
-
20
-
21
-
22
-usage: wmcp [-g geometry] [-d dpy] [-n workspaces] [-a alt key] [-v]
23
-            [-c] [-w i/n/w] [-s y/n] [-x #] [-y #] [-h]
24
-
25
-
26
--g    geometry:    ie: 64x64+10+10
27
--d    dpy:         Display. ie: 127.0.0.1:0.0
28
--n    workspaces:  How many buttons to start with.
29
--a    alt key:     integer 1-4 defining ModXMask (default 1 Mod1Mask).
30
--w    i/n/w:       Window State: Iconic, Normal, Withdrawn (default Withdrawn)
31
--s    y/n:         Shaped window: yes or no (default y)
32
--c                 Sends CTRL + ALT + Key (default only sends ALT + key)
33
--v                 Verbose. 0=off, 1=on (default 0)
34
--x                 Number of buttons on the x-direction (1,2,3, or 4)
35
--y                 Number of buttons in the y-direction (1,2,3, or 4)
36
--h                 Help. This screen.
37
-
38
-
39
+fprintf(stderr,"\n\
40
+\n\
41
+%s\n\
42
+This software is GPL -- do as you wish with it.\n\
43
+\n\
44
+Origional Author:\n\
45
+   Ben Cohen <buddog@aztec.asu.edu>\n\
46
+\n\
47
+Contributors:\n\
48
+   Thomas Nemeth <tnemeth@multimania.com>\n\
49
+   Craig Maloney <craig@ic.net>\n\
50
+   Gert Beumer <Gert@scintilla.utwente.nl>\n\
51
+\n\
52
+\n\
53
+\n\
54
+usage: wmcp [-g geometry] [-d dpy] [-n workspaces] [-a alt key] [-v]\n\
55
+            [-c] [-w i/n/w] [-s y/n] [-x #] [-y #] [-h]\n\
56
+\n\
57
+\n\
58
+-g    geometry:    ie: 64x64+10+10\n\
59
+-d    dpy:         Display. ie: 127.0.0.1:0.0\n\
60
+-n    workspaces:  How many buttons to start with.\n\
61
+-a    alt key:     integer 1-4 defining ModXMask (default 1 Mod1Mask).\n\
62
+-w    i/n/w:       Window State: Iconic, Normal, Withdrawn (default Withdrawn)\n\
63
+-s    y/n:         Shaped window: yes or no (default y)\n\
64
+-c                 Sends CTRL + ALT + Key (default only sends ALT + key)\n\
65
+-v                 Verbose. 0=off, 1=on (default 0)\n\
66
+-x                 Number of buttons on the x-direction (1,2,3, or 4)\n\
67
+-y                 Number of buttons in the y-direction (1,2,3, or 4)\n\
68
+-h                 Help. This screen.\n\
69
+\n\
70
+\n\
71
 ",VERSION);
72
 
73
 exit(-1);

Return to bug 60872