summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-03-08 10:30:48 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-03-08 10:30:48 +0000
commit921109901c981a852fd1f7f0209014c809b3209f (patch)
treef7422b6a3fca77663be9e200792cc8042c4cee17 /x11-wm
parent- Add RUN_DEPENDS (diff)
- Add patch to allow upper case words in menu
PR: ports/63904 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=103287
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/treewm/Makefile2
-rw-r--r--x11-wm/treewm/files/patch-menuinfo.cc12
2 files changed, 13 insertions, 1 deletions
diff --git a/x11-wm/treewm/Makefile b/x11-wm/treewm/Makefile
index c34430e7a6ca..6e64cc7a57ab 100644
--- a/x11-wm/treewm/Makefile
+++ b/x11-wm/treewm/Makefile
@@ -7,7 +7,7 @@
PORTNAME= treewm
PORTVERSION= 0.4.5
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= x11-wm
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
diff --git a/x11-wm/treewm/files/patch-menuinfo.cc b/x11-wm/treewm/files/patch-menuinfo.cc
new file mode 100644
index 000000000000..c7c169b2b205
--- /dev/null
+++ b/x11-wm/treewm/files/patch-menuinfo.cc
@@ -0,0 +1,12 @@
+diff -ru treewm-0.4.5.orig/src/menuinfo.cc treewm-0.4.5/src/menuinfo.cc
+--- src/menuinfo.cc Mon Mar 8 00:20:42 2004
++++ src/menuinfo.cc Mon Mar 8 00:22:37 2004
+@@ -21,7 +21,7 @@
+ MenuItemList *actions=0,*last=0;
+ for (Entry *e=s->fe;e;e=e->next)
+ if (e->tag) {
+- lower(e->value);
++ // lower(e->value); // why? (RP)
+ if (last) {
+ last->next = new MenuItemList;
+ last = last->next;