diff options
author | Volker Stolz <vs@FreeBSD.org> | 2007-10-29 07:33:00 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2007-10-29 07:33:00 +0000 |
commit | bff27d7d790ae1bf5a0d29ec86cc1f526931479c (patch) | |
tree | 67fbc7f1e472d977db6cef8ad7d9f2547a240a59 /x11-wm/hs-xmonad | |
parent | 30733bc4954e34b87ac4fa778568b20d32e323d5 (diff) | |
download | ports-bff27d7d790ae1bf5a0d29ec86cc1f526931479c.tar.gz ports-bff27d7d790ae1bf5a0d29ec86cc1f526931479c.zip |
Notes
Diffstat (limited to 'x11-wm/hs-xmonad')
-rw-r--r-- | x11-wm/hs-xmonad/Makefile | 42 | ||||
-rw-r--r-- | x11-wm/hs-xmonad/distinfo | 3 | ||||
-rw-r--r-- | x11-wm/hs-xmonad/pkg-descr | 16 |
3 files changed, 61 insertions, 0 deletions
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/ |