summaryrefslogtreecommitdiff
path: root/x11-wm
diff options
context:
space:
mode:
authorVolker Stolz <vs@FreeBSD.org>2007-10-29 07:33:00 +0000
committerVolker Stolz <vs@FreeBSD.org>2007-10-29 07:33:00 +0000
commitbff27d7d790ae1bf5a0d29ec86cc1f526931479c (patch)
tree67fbc7f1e472d977db6cef8ad7d9f2547a240a59 /x11-wm
parentAdd 'seconds' to the output of the delay (diff)
XMonad is a tiling window manager written in Haskell for X.
Features : * Very stable, fast, small and simple. * Automatic window tiling and management * First class keyboard support: a mouse is unnecessary * Full support for tiling windows on multi-head displays * Full support for floating windows * XRandR support to rotate, add or remove monitors * Per-workspace layout algorithms * Per-screens custom status bars * Easy, powerful customisation and reconfiguration * Large extension library * Extensive documentation and support for hacking WWW: http://www.xmonad.org/ PR: ports/117491 Submitted by: Matthieu Guegan <matt.guegan at free.fr>
Notes
Notes: svn path=/head/; revision=202265
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/Makefile1
-rw-r--r--x11-wm/hs-xmonad/Makefile42
-rw-r--r--x11-wm/hs-xmonad/distinfo3
-rw-r--r--x11-wm/hs-xmonad/pkg-descr16
-rw-r--r--x11-wm/xmonad/Makefile42
-rw-r--r--x11-wm/xmonad/distinfo3
-rw-r--r--x11-wm/xmonad/pkg-descr16
7 files changed, 123 insertions, 0 deletions
diff --git a/x11-wm/Makefile b/x11-wm/Makefile
index 9c814fd47dd1..13e575fd9db4 100644
--- a/x11-wm/Makefile
+++ b/x11-wm/Makefile
@@ -143,6 +143,7 @@
SUBDIR += xfce4-panel
SUBDIR += xfce4-session
SUBDIR += xfce4-wm
+ SUBDIR += xmonad
SUBDIR += yawm
.include <bsd.port.subdir.mk>
diff --git a/x11-wm/hs-xmonad/Makefile b/x11-wm/hs-xmonad/Makefile
new file mode 100644
index 000000000000..d5f5b73ae58c
--- /dev/null
+++ b/x11-wm/hs-xmonad/Makefile
@@ -0,0 +1,42 @@
+# New ports collection makefile for: xmonad
+# Date created: 2007-10-25
+# Whom: Matthieu Guegan <matt.guegan@free.fr>
+#
+# $FreeBSD$
+#
+
+PORTNAME= xmonad
+PORTVERSION= 0.4
+CATEGORIES= x11-wm haskell
+MASTER_SITES= http://hackage.haskell.org/packages/archive/xmonad/${PORTVERSION}/
+
+MAINTAINER= matt.guegan@free.fr
+COMMENT= Xmonad is a minimalist and tiling window manager for X
+
+USE_XLIB= yes
+
+CABALCMD= ${LOCALBASE}/bin/runghc Setup.lhs
+
+.include <bsd.port.pre.mk>
+
+BUILD_DEPENDS+= ghc:${PORTSDIR}/lang/ghc \
+ hs-x11-extras-ghc>=0.4:${PORTSDIR}/x11/hs-x11-extras-ghc
+LIB_DEPENDS+= gmp.7:${PORTSDIR}/math/libgmp4
+
+PLIST_FILES= bin/xmonad
+PORTDOCS= LICENSE
+MAN1= xmonad.1
+
+do-configure:
+ cd ${WRKSRC} && ${CABALCMD} configure --ghc --prefix=${PREFIX}
+
+do-build:
+ cd ${WRKSRC} && ${CABALCMD} build
+
+do-install:
+ @cd ${WRKSRC} && ${CABALCMD} install
+ ${INSTALL_MAN} ${WRKSRC}/man/xmonad.1 ${MAN1PREFIX}/man/man1
+ @${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR}
+
+.include <bsd.port.post.mk>
diff --git a/x11-wm/hs-xmonad/distinfo b/x11-wm/hs-xmonad/distinfo
new file mode 100644
index 000000000000..3d7ece96fc6d
--- /dev/null
+++ b/x11-wm/hs-xmonad/distinfo
@@ -0,0 +1,3 @@
+MD5 (xmonad-0.4.tar.gz) = 5d24c556f7c8f04954721b391fd79a13
+SHA256 (xmonad-0.4.tar.gz) = 978fb99e40786070307992fde78fe252b96e834740fb983b94c3a395c45467bb
+SIZE (xmonad-0.4.tar.gz) = 41025
diff --git a/x11-wm/hs-xmonad/pkg-descr b/x11-wm/hs-xmonad/pkg-descr
new file mode 100644
index 000000000000..a144dc5c9e7e
--- /dev/null
+++ b/x11-wm/hs-xmonad/pkg-descr
@@ -0,0 +1,16 @@
+XMonad is a tiling window manager written in Haskell for X.
+
+Features :
+ * Very stable, fast, small and simple.
+ * Automatic window tiling and management
+ * First class keyboard support: a mouse is unnecessary
+ * Full support for tiling windows on multi-head displays
+ * Full support for floating windows
+ * XRandR support to rotate, add or remove monitors
+ * Per-workspace layout algorithms
+ * Per-screens custom status bars
+ * Easy, powerful customisation and reconfiguration
+ * Large extension library
+ * Extensive documentation and support for hacking
+
+WWW: http://www.xmonad.org/
diff --git a/x11-wm/xmonad/Makefile b/x11-wm/xmonad/Makefile
new file mode 100644
index 000000000000..d5f5b73ae58c
--- /dev/null
+++ b/x11-wm/xmonad/Makefile
@@ -0,0 +1,42 @@
+# New ports collection makefile for: xmonad
+# Date created: 2007-10-25
+# Whom: Matthieu Guegan <matt.guegan@free.fr>
+#
+# $FreeBSD$
+#
+
+PORTNAME= xmonad
+PORTVERSION= 0.4
+CATEGORIES= x11-wm haskell
+MASTER_SITES= http://hackage.haskell.org/packages/archive/xmonad/${PORTVERSION}/
+
+MAINTAINER= matt.guegan@free.fr
+COMMENT= Xmonad is a minimalist and tiling window manager for X
+
+USE_XLIB= yes
+
+CABALCMD= ${LOCALBASE}/bin/runghc Setup.lhs
+
+.include <bsd.port.pre.mk>
+
+BUILD_DEPENDS+= ghc:${PORTSDIR}/lang/ghc \
+ hs-x11-extras-ghc>=0.4:${PORTSDIR}/x11/hs-x11-extras-ghc
+LIB_DEPENDS+= gmp.7:${PORTSDIR}/math/libgmp4
+
+PLIST_FILES= bin/xmonad
+PORTDOCS= LICENSE
+MAN1= xmonad.1
+
+do-configure:
+ cd ${WRKSRC} && ${CABALCMD} configure --ghc --prefix=${PREFIX}
+
+do-build:
+ cd ${WRKSRC} && ${CABALCMD} build
+
+do-install:
+ @cd ${WRKSRC} && ${CABALCMD} install
+ ${INSTALL_MAN} ${WRKSRC}/man/xmonad.1 ${MAN1PREFIX}/man/man1
+ @${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR}
+
+.include <bsd.port.post.mk>
diff --git a/x11-wm/xmonad/distinfo b/x11-wm/xmonad/distinfo
new file mode 100644
index 000000000000..3d7ece96fc6d
--- /dev/null
+++ b/x11-wm/xmonad/distinfo
@@ -0,0 +1,3 @@
+MD5 (xmonad-0.4.tar.gz) = 5d24c556f7c8f04954721b391fd79a13
+SHA256 (xmonad-0.4.tar.gz) = 978fb99e40786070307992fde78fe252b96e834740fb983b94c3a395c45467bb
+SIZE (xmonad-0.4.tar.gz) = 41025
diff --git a/x11-wm/xmonad/pkg-descr b/x11-wm/xmonad/pkg-descr
new file mode 100644
index 000000000000..a144dc5c9e7e
--- /dev/null
+++ b/x11-wm/xmonad/pkg-descr
@@ -0,0 +1,16 @@
+XMonad is a tiling window manager written in Haskell for X.
+
+Features :
+ * Very stable, fast, small and simple.
+ * Automatic window tiling and management
+ * First class keyboard support: a mouse is unnecessary
+ * Full support for tiling windows on multi-head displays
+ * Full support for floating windows
+ * XRandR support to rotate, add or remove monitors
+ * Per-workspace layout algorithms
+ * Per-screens custom status bars
+ * Easy, powerful customisation and reconfiguration
+ * Large extension library
+ * Extensive documentation and support for hacking
+
+WWW: http://www.xmonad.org/