1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00

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
This commit is contained in:
Gabor Pali 2011-05-08 18:46:38 +00:00
parent d6721e9b3b
commit 90066ce054
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=273797
3 changed files with 33 additions and 0 deletions

View File

@ -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>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/vte-0.12.0.tar.gz) = f1223ef0d532c19765c08f9d39d45f8ac9f15dd55d5b4b9bd6b0f5c8989ffbd7
SIZE (cabal/vte-0.12.0.tar.gz) = 39403

View File

@ -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/