View | Details | Raw Unified | Return to bug 159968
Collapse All | Expand All

(-)hs-xmonad-contrib/Makefile (-1 / +3 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	xmonad-contrib
8
PORTNAME=	xmonad-contrib
9
PORTVERSION=	0.9.2
9
PORTVERSION=	0.9.2
10
PORTREVISION=	1
10
PORTREVISION=	2
11
CATEGORIES=	x11-wm haskell
11
CATEGORIES=	x11-wm haskell
12
12
13
MAINTAINER=	haskell@FreeBSD.org
13
MAINTAINER=	haskell@FreeBSD.org
Lines 18-23 Link Here
18
USE_CABAL=	mtl xmonad>=0.9.1 X11>=1.5 utf8-string
18
USE_CABAL=	mtl xmonad>=0.9.1 X11>=1.5 utf8-string
19
USE_XORG=	x11
19
USE_XORG=	x11
20
20
21
RUN_DEPENDS+=	bash:${PORTSDIR}/shells/bash
22
21
OPTIONS=	XFT "Enable Xft support for fonts" On
23
OPTIONS=	XFT "Enable Xft support for fonts" On
22
24
23
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
25
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
(-)hs-xmonad-contrib/files/patch-XMonad__Prompt__Directory.hs (+11 lines)
Line 0 Link Here
1
--- ./XMonad/Prompt/Directory.hs.orig	2011-08-21 14:07:27.601179305 +0300
2
+++ ./XMonad/Prompt/Directory.hs	2011-08-21 14:08:20.213520774 +0300
3
@@ -35,7 +35,7 @@
4
 
5
 getDirCompl :: String -> IO [String]
6
 getDirCompl s = (filter notboring . lines) `fmap`
7
-                runProcessWithInput "/bin/bash" [] ("compgen -A directory " ++ s ++ "\n")
8
+                runProcessWithInput "bash" [] ("compgen -A directory " ++ s ++ "\n")
9
 
10
 notboring :: String -> Bool
11
 notboring ('.':'.':_) = True

Return to bug 159968