svn commit: r348819 - in head/x11-wm: . cwm cwm/files

Danilo Egea Gondolfo danilo at FreeBSD.org
Sun Mar 23 00:34:29 UTC 2014


Author: danilo
Date: Sun Mar 23 00:34:28 2014
New Revision: 348819
URL: http://svnweb.freebsd.org/changeset/ports/348819
QAT: https://qat.redports.org/buildarchive/r348819/

Log:
  - Add the port: x11-wm/cwm
  - Pass maintainership to submitter
  
  cwm is a window manager for X11 initially inspired by evilwm. cwm has several
  novel features, including the ability to search for windows. it features a
  very simple and attractive aesthetic.
  
  PR:		ports/187803
  Submitted by:	<braakvaak at aol.com>

Added:
  head/x11-wm/cwm/
  head/x11-wm/cwm/Makefile   (contents, props changed)
  head/x11-wm/cwm/distinfo   (contents, props changed)
  head/x11-wm/cwm/files/
  head/x11-wm/cwm/files/patch-Makefile   (contents, props changed)
  head/x11-wm/cwm/pkg-descr   (contents, props changed)
Modified:
  head/x11-wm/Makefile

Modified: head/x11-wm/Makefile
==============================================================================
--- head/x11-wm/Makefile	Sun Mar 23 00:31:56 2014	(r348818)
+++ head/x11-wm/Makefile	Sun Mar 23 00:34:28 2014	(r348819)
@@ -26,6 +26,7 @@
     SUBDIR += compizconfig-python
     SUBDIR += compton
     SUBDIR += ctwm
+    SUBDIR += cwm
     SUBDIR += devilspie
     SUBDIR += dwm
     SUBDIR += e16

Added: head/x11-wm/cwm/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/cwm/Makefile	Sun Mar 23 00:34:28 2014	(r348819)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	cwm
+PORTVERSION=	5.5
+CATEGORIES=	x11-wm
+MASTER_SITES=	http://chneukirchen.org/releases/ \
+		http://github.com/chneukirchen/${PORTNAME}/archive/v${PORTVERSION}.tar.gz?dummy=/
+
+MAINTAINER=	braakvaak at aol.com
+COMMENT=	Minimalistic window manager for X11 based on evilwm
+
+LICENSE=	BSD2CLAUSE
+
+LIB_DEPENDS=	libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig
+
+USES=		pkgconfig:build
+USE_XORG=	x11 xft xinerama xrandr
+
+PLIST_FILES=	bin/cwm \
+		man/man1/cwm.1.gz \
+		man/man5/cwmrc.5.gz
+
+do-install:
+	@${INSTALL_PROGRAM} ${WRKSRC}/cwm ${STAGEDIR}${PREFIX}/bin
+	@${INSTALL_MAN} ${WRKSRC}/cwm.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
+	@${INSTALL_MAN} ${WRKSRC}/cwmrc.5 ${STAGEDIR}${MAN5PREFIX}/man/man5
+
+.include <bsd.port.mk>

Added: head/x11-wm/cwm/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/cwm/distinfo	Sun Mar 23 00:34:28 2014	(r348819)
@@ -0,0 +1,2 @@
+SHA256 (cwm-5.5.tar.gz) = 99aa337f15b07e36ba3b03593c56f65b76f8bbef6f73daca73846f6b002f2187
+SIZE (cwm-5.5.tar.gz) = 50709

Added: head/x11-wm/cwm/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/cwm/files/patch-Makefile	Sun Mar 23 00:34:28 2014	(r348819)
@@ -0,0 +1,25 @@
+--- ./Makefile.orig	2014-03-17 03:52:56.000000000 +0100
++++ ./Makefile	2014-03-17 04:05:08.000000000 +0100
+@@ -3,7 +3,7 @@
+ 
+ PROG=		cwm
+ 
+-PREFIX=         /usr/local
++#PREFIX=         /usr/local
+ 
+ SRCS=		calmwm.c screen.c xmalloc.c client.c menu.c \
+ 		search.c util.c xutil.c conf.c xevents.c group.c \
+@@ -16,11 +16,11 @@
+ 
+ CPPFLAGS+=	`pkg-config --cflags fontconfig x11 xft xinerama xrandr`
+ 
+-CFLAGS=		-Wall -O2 -g -D_GNU_SOURCE
++CFLAGS+=	-Wall -g -pthread
+ 
+ LDFLAGS+=	`pkg-config --libs fontconfig x11 xft xinerama xrandr`
+ 
+-MANPREFIX=	${PREFIX}/share/man
++#MANPREFIX=	${PREFIX}/share/man
+ 
+ all: ${PROG}
+ 

Added: head/x11-wm/cwm/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/cwm/pkg-descr	Sun Mar 23 00:34:28 2014	(r348819)
@@ -0,0 +1,8 @@
+cwm is a window manager for X11 initially inspired by evilwm. cwm has several 
+novel features, including the ability to search for windows. it features a 
+very simple and attractive aesthetic.
+
+This port is based on OpenBSD's continued work on cwm, as development on the 
+project seems to have halted.
+
+WWW: http://monkey.org/~marius/pages/?page=cwm


More information about the svn-ports-all mailing list