aboutsummaryrefslogtreecommitdiffstats
path: root/x11/hs-xmobar
diff options
context:
space:
mode:
authorpgj <pgj@FreeBSD.org>2010-05-19 20:05:27 +0800
committerpgj <pgj@FreeBSD.org>2010-05-19 20:05:27 +0800
commit9b7743743316925d835dcb9794b23d58f29f6d36 (patch)
tree4ac107f39bd758fad734691c764b1360f0e4c7b0 /x11/hs-xmobar
parentcaf0dde0db4a786e7c9f8ccf5d2ac3d064b4e6bf (diff)
downloadfreebsd-ports-gnome-9b7743743316925d835dcb9794b23d58f29f6d36.tar.gz
freebsd-ports-gnome-9b7743743316925d835dcb9794b23d58f29f6d36.tar.zst
freebsd-ports-gnome-9b7743743316925d835dcb9794b23d58f29f6d36.zip
- Update to 0.11.1
Diffstat (limited to 'x11/hs-xmobar')
-rw-r--r--x11/hs-xmobar/Makefile2
-rw-r--r--x11/hs-xmobar/distinfo6
-rw-r--r--x11/hs-xmobar/files/patch-StatFS.hsc27
3 files changed, 4 insertions, 31 deletions
diff --git a/x11/hs-xmobar/Makefile b/x11/hs-xmobar/Makefile
index 15ef501299d4..31561db048e5 100644
--- a/x11/hs-xmobar/Makefile
+++ b/x11/hs-xmobar/Makefile
@@ -5,7 +5,7 @@
# $FreeBSD$
PORTNAME= xmobar
-PORTVERSION= 0.11
+PORTVERSION= 0.11.1
CATEGORIES= x11 haskell
PKGNAMEPREFIX=
diff --git a/x11/hs-xmobar/distinfo b/x11/hs-xmobar/distinfo
index eb0c23a48a0b..94ce4739c49e 100644
--- a/x11/hs-xmobar/distinfo
+++ b/x11/hs-xmobar/distinfo
@@ -1,3 +1,3 @@
-MD5 (xmobar-0.11.tar.gz) = 80edb2b7b7cba3d718ff1b6b637e4b4d
-SHA256 (xmobar-0.11.tar.gz) = 428d469f92314d11360502bbaf0f319be41575921b75759182f314987a59346d
-SIZE (xmobar-0.11.tar.gz) = 45822
+MD5 (xmobar-0.11.1.tar.gz) = 766fe504909384628321fb7472fdb621
+SHA256 (xmobar-0.11.1.tar.gz) = 753b755b96852008bbbf8c79933d9ebb87554bf7e562888e8d6fb5b8320a6a73
+SIZE (xmobar-0.11.1.tar.gz) = 45872
diff --git a/x11/hs-xmobar/files/patch-StatFS.hsc b/x11/hs-xmobar/files/patch-StatFS.hsc
deleted file mode 100644
index d31623c00c5d..000000000000
--- a/x11/hs-xmobar/files/patch-StatFS.hsc
+++ /dev/null
@@ -1,27 +0,0 @@
---- ./StatFS.hsc.orig 2010-05-15 14:07:17.000000000 +0200
-+++ ./StatFS.hsc 2010-05-16 16:27:52.000000000 +0200
-@@ -23,7 +23,12 @@
- import Data.ByteString (useAsCString)
- import Data.ByteString.Char8 (pack)
-
-+#if defined (__FreeBSD__)
-+# include <sys/param.h>
-+# include <sys/mount.h>
-+#else
- #include <sys/vfs.h>
-+#endif
-
- data FileSystemStats = FileSystemStats {
- fsStatBlockSize :: Integer
-@@ -42,7 +47,11 @@
-
- data CStatfs
-
-+#if defined(__FreeBSD__)
-+foreign import ccall unsafe "sys/mount.h statfs"
-+#else
- foreign import ccall unsafe "sys/vfs.h statfs64"
-+#endif
- c_statfs :: CString -> Ptr CStatfs -> IO CInt
-
- toI :: CLong -> Integer