diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2011-05-08 18:46:38 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2011-05-08 18:46:38 +0000 |
commit | 90066ce054f7837c3df7a5d3900c75a8622b2a9b (patch) | |
tree | 7bbf01a7fdde7ba889c322325f10b0bcdd5059ef /x11-toolkits/hs-vte | |
parent | d6721e9b3bafeacdba4218c4b6cb642164124855 (diff) | |
download | ports-90066ce054f7837c3df7a5d3900c75a8622b2a9b.tar.gz ports-90066ce054f7837c3df7a5d3900c75a8622b2a9b.zip |
The VTE library inserts terminal capability strings into a trie, and then
uses it to determine if data received from a pseudo-terminal is a control
sequence or just random data. The sample program "interpret" illustrates
more or less what the widget sees after it filters incoming data.
WWW: http://www.haskell.org/gtk2hs/
Obtained from: FreeBSD Haskell
Notes
Notes:
svn path=/head/; revision=273797
Diffstat (limited to 'x11-toolkits/hs-vte')
-rw-r--r-- | x11-toolkits/hs-vte/Makefile | 25 | ||||
-rw-r--r-- | x11-toolkits/hs-vte/distinfo | 2 | ||||
-rw-r--r-- | x11-toolkits/hs-vte/pkg-descr | 6 |
3 files changed, 33 insertions, 0 deletions
diff --git a/x11-toolkits/hs-vte/Makefile b/x11-toolkits/hs-vte/Makefile new file mode 100644 index 000000000000..481e4877b452 --- /dev/null +++ b/x11-toolkits/hs-vte/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: hs-vte +# Date created: March 13, 2011 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= vte +PORTVERSION= 0.12.0 +CATEGORIES= x11-toolkits haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Binding to the VTE library + +LICENSE= LGPL21 +FILE_LICENSE= COPYING + +CABAL_SETUP= Setup.hs +USE_CABAL= glib>=0.12 gtk>=0.12 mtl pango>=0.12 +USE_GNOME= vte + +PORTDATA= * + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/x11-toolkits/hs-vte/distinfo b/x11-toolkits/hs-vte/distinfo new file mode 100644 index 000000000000..bb7bfc7368a5 --- /dev/null +++ b/x11-toolkits/hs-vte/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/vte-0.12.0.tar.gz) = f1223ef0d532c19765c08f9d39d45f8ac9f15dd55d5b4b9bd6b0f5c8989ffbd7 +SIZE (cabal/vte-0.12.0.tar.gz) = 39403 diff --git a/x11-toolkits/hs-vte/pkg-descr b/x11-toolkits/hs-vte/pkg-descr new file mode 100644 index 000000000000..3f2a0d6d7681 --- /dev/null +++ b/x11-toolkits/hs-vte/pkg-descr @@ -0,0 +1,6 @@ +The VTE library inserts terminal capability strings into a trie, and then +uses it to determine if data received from a pseudo-terminal is a control +sequence or just random data. The sample program "interpret" illustrates +more or less what the widget sees after it filters incoming data. + +WWW: http://www.haskell.org/gtk2hs/ |