diff options
author | pgj <pgj@FreeBSD.org> | 2012-02-19 05:31:42 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2012-02-19 05:31:42 +0800 |
commit | 6553cf3dd874ddc2d16d243e26b4cd79017e896a (patch) | |
tree | a712d5de3d74d55bd380b9a439a5416ea1fee2a6 /x11-toolkits | |
parent | e6927a78101ec1dc5e73a107b73bc5709c557728 (diff) | |
download | freebsd-ports-graphics-6553cf3dd874ddc2d16d243e26b4cd79017e896a.tar.gz freebsd-ports-graphics-6553cf3dd874ddc2d16d243e26b4cd79017e896a.tar.zst freebsd-ports-graphics-6553cf3dd874ddc2d16d243e26b4cd79017e896a.zip |
wxHaskell is a portable and native GUI library for Haskell. It is built
on top of wxWidgets, a comprehensive C++ library that is portable across
all major GUI platforms, including GTK, Windows, X11, and MacOS X. This
version works with wxWidgets 2.8 only.
WWW: http://haskell.org/haskellwiki/WxHaskell
Obtained from: FreeBSD Haskell
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/Makefile | 1 | ||||
-rw-r--r-- | x11-toolkits/hs-wxdirect/Makefile | 24 | ||||
-rw-r--r-- | x11-toolkits/hs-wxdirect/distinfo | 2 | ||||
-rw-r--r-- | x11-toolkits/hs-wxdirect/pkg-descr | 6 |
4 files changed, 33 insertions, 0 deletions
diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile index 76c669db5a6..e1321da23c8 100644 --- a/x11-toolkits/Makefile +++ b/x11-toolkits/Makefile @@ -88,6 +88,7 @@ SUBDIR += hs-gtksourceview2 SUBDIR += hs-pango SUBDIR += hs-vte + SUBDIR += hs-wxdirect SUBDIR += irrlicht SUBDIR += itk SUBDIR += iwidgets diff --git a/x11-toolkits/hs-wxdirect/Makefile b/x11-toolkits/hs-wxdirect/Makefile new file mode 100644 index 00000000000..85b3d32ed83 --- /dev/null +++ b/x11-toolkits/hs-wxdirect/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: hs-wxdirect +# Date created: January 26, 2012 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= wxdirect +PORTVERSION= 0.13.1.1 +CATEGORIES= x11-toolkits haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Helper tool for building wxHaskell + +LICENSE= BSD + +CABAL_SETUP= Setup.hs + +USE_CABAL= parsec>=2.1.0 strict>=0.3 + +EXECUTABLE= wxdirect + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/x11-toolkits/hs-wxdirect/distinfo b/x11-toolkits/hs-wxdirect/distinfo new file mode 100644 index 00000000000..8d59faf24fd --- /dev/null +++ b/x11-toolkits/hs-wxdirect/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/wxdirect-0.13.1.1.tar.gz) = 4d65f57523e17d824333b2058b1113273efe312bc238d335a22b9f0a4592f103 +SIZE (cabal/wxdirect-0.13.1.1.tar.gz) = 32731 diff --git a/x11-toolkits/hs-wxdirect/pkg-descr b/x11-toolkits/hs-wxdirect/pkg-descr new file mode 100644 index 00000000000..331ac4c6a83 --- /dev/null +++ b/x11-toolkits/hs-wxdirect/pkg-descr @@ -0,0 +1,6 @@ +wxHaskell is a portable and native GUI library for Haskell. It is built +on top of wxWidgets, a comprehensive C++ library that is portable across +all major GUI platforms, including GTK, Windows, X11, and MacOS X. This +version works with wxWidgets 2.8 only. + +WWW: http://haskell.org/haskellwiki/WxHaskell |