mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
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>
This commit is contained in:
parent
30733bc495
commit
bff27d7d79
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=202265
7 changed files with 123 additions and 0 deletions
|
@ -143,6 +143,7 @@
|
|||
SUBDIR += xfce4-panel
|
||||
SUBDIR += xfce4-session
|
||||
SUBDIR += xfce4-wm
|
||||
SUBDIR += xmonad
|
||||
SUBDIR += yawm
|
||||
|
||||
.include <bsd.port.subdir.mk>
|
||||
|
|
42
x11-wm/hs-xmonad/Makefile
Normal file
42
x11-wm/hs-xmonad/Makefile
Normal file
|
@ -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>
|
3
x11-wm/hs-xmonad/distinfo
Normal file
3
x11-wm/hs-xmonad/distinfo
Normal file
|
@ -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
|
16
x11-wm/hs-xmonad/pkg-descr
Normal file
16
x11-wm/hs-xmonad/pkg-descr
Normal file
|
@ -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/
|
42
x11-wm/xmonad/Makefile
Normal file
42
x11-wm/xmonad/Makefile
Normal file
|
@ -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>
|
3
x11-wm/xmonad/distinfo
Normal file
3
x11-wm/xmonad/distinfo
Normal file
|
@ -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
|
16
x11-wm/xmonad/pkg-descr
Normal file
16
x11-wm/xmonad/pkg-descr
Normal file
|
@ -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/
|
Loading…
Add table
Reference in a new issue