summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-08-08 06:09:19 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-08-08 06:09:19 +0000
commitabbef760c619e1b0fcfc16f8134c900b206c900e (patch)
tree21122c2907ce858284d3352f884da5be6e2e0a33
parent- Update to 2.0.0 (diff)
A tool for printing/setting the window manager name
property of the root window. WWW: http://tools.suckless.org/wmname PR: ports/137498 Submitted by: V. Jahns <vj562001 at yahoo.de>
Notes
Notes: svn path=/head/; revision=239127
-rw-r--r--x11-wm/Makefile1
-rw-r--r--x11-wm/wmname/Makefile20
-rw-r--r--x11-wm/wmname/distinfo3
-rw-r--r--x11-wm/wmname/files/patch-config.mk18
-rw-r--r--x11-wm/wmname/pkg-descr4
5 files changed, 46 insertions, 0 deletions
diff --git a/x11-wm/Makefile b/x11-wm/Makefile
index 165737cb2b88..5a2e2ed11f6b 100644
--- a/x11-wm/Makefile
+++ b/x11-wm/Makefile
@@ -132,6 +132,7 @@
SUBDIR += wmfs
SUBDIR += wmg
SUBDIR += wmii
+ SUBDIR += wmname
SUBDIR += wmthemeinstall
SUBDIR += xcompmgr
SUBDIR += xfce
diff --git a/x11-wm/wmname/Makefile b/x11-wm/wmname/Makefile
new file mode 100644
index 000000000000..f7ca55ec9310
--- /dev/null
+++ b/x11-wm/wmname/Makefile
@@ -0,0 +1,20 @@
+# New ports collection makefile for: wmname
+# Date created: 31 July 2009
+# Whom: V. Jahns <vj562001@yahoo.de>
+#
+# $FreeBSD$
+#
+
+PORTNAME= wmname
+PORTVERSION= 0.1
+CATEGORIES= x11-wm
+MASTER_SITES= http://code.suckless.org/dl/tools/
+
+MAINTAINER= vj562001@yahoo.de
+COMMENT= Prints/sets the window manager name property of the root window
+
+USE_XORG= x11 xproto
+
+PLIST_FILES= bin/wmname
+
+.include <bsd.port.mk>
diff --git a/x11-wm/wmname/distinfo b/x11-wm/wmname/distinfo
new file mode 100644
index 000000000000..1a9fb1d214ea
--- /dev/null
+++ b/x11-wm/wmname/distinfo
@@ -0,0 +1,3 @@
+MD5 (wmname-0.1.tar.gz) = 6903d299f84d335e529fbd2c1d6e49fe
+SHA256 (wmname-0.1.tar.gz) = 559ad188b2913167dcbb37ecfbb7ed474a7ec4bbcb0129d8d5d08cb9208d02c5
+SIZE (wmname-0.1.tar.gz) = 2512
diff --git a/x11-wm/wmname/files/patch-config.mk b/x11-wm/wmname/files/patch-config.mk
new file mode 100644
index 000000000000..16fb2fc58cb6
--- /dev/null
+++ b/x11-wm/wmname/files/patch-config.mk
@@ -0,0 +1,18 @@
+--- config.mk.orig 2009-08-08 00:44:35.000000000 +0200
++++ config.mk 2009-08-08 00:45:45.000000000 +0200
+@@ -4,11 +4,11 @@
+ # Customize below to fit your system
+
+ # paths
+-PREFIX = /usr/local
+-MANPREFIX = ${PREFIX}/share/man
++PREFIX?= /usr/local
++MANPREFIX = ${PREFIX}/man
+
+-X11INC = /usr/X11R6/include
+-X11LIB = /usr/X11R6/lib
++X11INC = $(LOCALBASE)/include
++X11LIB = $(LOCALBASE)/lib
+
+ # includes and libs
+ INCS = -I. -I/usr/include -I${X11INC}
diff --git a/x11-wm/wmname/pkg-descr b/x11-wm/wmname/pkg-descr
new file mode 100644
index 000000000000..650d4bcc3d46
--- /dev/null
+++ b/x11-wm/wmname/pkg-descr
@@ -0,0 +1,4 @@
+A tool for printing/setting the window manager name
+property of the root window.
+
+WWW: http://tools.suckless.org/wmname