Update to 0.3.
Note to xmonad junkies: this doesn't include XMonadContrib and related stuff; there's a lot of activity on the xmonad list, so adding knobs to the port *now* may be a bad idea.
This commit is contained in:
parent
44899eea9b
commit
557cb83210
@ -1,8 +1,9 @@
|
||||
# $OpenBSD: Makefile,v 1.2 2007/09/15 20:04:28 merdely Exp $
|
||||
# $OpenBSD: Makefile,v 1.3 2007/10/01 20:46:30 kili Exp $
|
||||
|
||||
COMMENT= tiling window manager
|
||||
|
||||
DISTNAME= xmonad-0.2
|
||||
V= 0.3
|
||||
DISTNAME= xmonad-$V
|
||||
CATEGORIES= x11
|
||||
HOMEPAGE= http://www.xmonad.org/
|
||||
|
||||
@ -14,7 +15,7 @@ PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MASTER_SITES= http://hackage.haskell.org/packages/archive/xmonad/0.2/
|
||||
MASTER_SITES= http://hackage.haskell.org/packages/archive/xmonad/$V/
|
||||
|
||||
WANTLIB= X11 Xext Xinerama c gmp m
|
||||
|
||||
|
@ -1,5 +1,10 @@
|
||||
MD5 (xmonad-0.2.tar.gz) = nXxMIugdODGPhk6Hn59GwA==
|
||||
RMD160 (xmonad-0.2.tar.gz) = KT51xaKWLsGRI1Sq0zyHdKPD2i8=
|
||||
SHA1 (xmonad-0.2.tar.gz) = 0vc8PUOkdQwZNuPx9gnpUDzdEwI=
|
||||
SHA256 (xmonad-0.2.tar.gz) = rZVltW80xJIxD0ZFDdWcV96eUa+XuJCXCJW/4G+fGEo=
|
||||
SIZE (xmonad-0.2.tar.gz) = 29223
|
||||
MD5 (XMonadContrib-0.3.tar.gz) = +4CJZW8TlnEIgeuF1X9mmQ==
|
||||
MD5 (xmonad-0.3.tar.gz) = edL4fkJE7obm49O8Q8XJeg==
|
||||
RMD160 (XMonadContrib-0.3.tar.gz) = 9PCM1DnalWsoSgiXHppMy07ZGfs=
|
||||
RMD160 (xmonad-0.3.tar.gz) = d+tQ4uzlwTI246Va+nT7JCfZYC0=
|
||||
SHA1 (XMonadContrib-0.3.tar.gz) = v14zs8lHD4H1UB2INYqHRIwjSWI=
|
||||
SHA1 (xmonad-0.3.tar.gz) = hE1NVya738C5+MtfH3fo+vjQzvc=
|
||||
SHA256 (XMonadContrib-0.3.tar.gz) = HWv4ghtKnnYzMtUWOExTWDU3SSs2SCB/dju2MTHxMDQ=
|
||||
SHA256 (xmonad-0.3.tar.gz) = IeczqWfmjbzPPaFNwKXc8rDIB3aqcy4flXbEOJxumpU=
|
||||
SIZE (XMonadContrib-0.3.tar.gz) = 45312
|
||||
SIZE (xmonad-0.3.tar.gz) = 35522
|
||||
|
@ -1,12 +1,11 @@
|
||||
$OpenBSD: patch-Config_hs,v 1.1.1.1 2007/09/01 22:18:41 kili Exp $
|
||||
--- Config.hs.orig Thu May 31 03:04:51 2007
|
||||
+++ Config.hs Sat Aug 25 23:41:46 2007
|
||||
@@ -56,7 +56,7 @@ defaultWindowsInMaster = 1
|
||||
--- Config.hs.orig Tue Sep 4 21:34:21 2007
|
||||
+++ Config.hs Mon Oct 1 21:36:08 2007
|
||||
@@ -58,7 +58,7 @@ modMask = mod1Mask
|
||||
-- Fields are: top, bottom, left, right.
|
||||
--
|
||||
defaultGaps :: [(Int,Int,Int,Int)]
|
||||
-defaultGaps = [(0,0,0,0)] -- 15 for default dzen
|
||||
+defaultGaps = repeat (15,0,0,0) -- 15 for default dzen
|
||||
|
||||
-- |
|
||||
-- numlock handling:
|
||||
--
|
||||
|
@ -1,12 +1,12 @@
|
||||
$OpenBSD: patch-Main_hs,v 1.1.1.1 2007/09/01 22:18:41 kili Exp $
|
||||
--- Main.hs.orig Thu May 31 03:04:51 2007
|
||||
+++ Main.hs Sat Aug 25 19:07:00 2007
|
||||
@@ -61,7 +61,7 @@ main = do
|
||||
st = XState
|
||||
{ windowset = winset
|
||||
, layouts = M.fromList [(w, safeLayouts) | w <- [0 .. W workspaces - 1]]
|
||||
- , statusGaps = take (length xinesc) $ defaultGaps ++ repeat (0,0,0,0)
|
||||
+ , statusGaps = take (length xinesc) $ repeat (0,0,0,0)
|
||||
, xineScreens = xinesc
|
||||
, dimensions = (fromIntegral (displayWidth dpy dflt),
|
||||
fromIntegral (displayHeight dpy dflt)) }
|
||||
$OpenBSD: patch-Main_hs,v 1.2 2007/10/01 20:46:30 kili Exp $
|
||||
--- Main.hs.orig Tue Sep 4 21:34:21 2007
|
||||
+++ Main.hs Fri Sep 14 15:10:20 2007
|
||||
@@ -53,7 +53,7 @@ main = do
|
||||
let winset | ("--resume" : s : _) <- args
|
||||
, [(x, "")] <- reads s = x
|
||||
| otherwise = new workspaces $ zipWith SD xinesc gaps
|
||||
- gaps = take (length xinesc) $ defaultGaps ++ repeat (0,0,0,0)
|
||||
+ gaps = take (length xinesc) $ repeat (0,0,0,0)
|
||||
|
||||
safeLayouts = case defaultLayouts of [] -> (full, []); (x:xs) -> (x,xs)
|
||||
cf = XConf
|
||||
|
Loading…
Reference in New Issue
Block a user