ncurses (new curses) is a free software emulation of curses in

System V Rel 4.0 (and above). It uses terminfo format, supports
pads, colors, multiple highlights, form characters and function
key mapping. Because of the interactive nature of this library,
it will be of little use for writing Web applications, but may
be useful when writing scripts meant using PHP from the command
line.

WWW: http://www.gnu.org/software/ncurses/ncurses.html

PR:		ports/146160
Submitted by:	Jille Timmermans <jille at quis.cx>
This commit is contained in:
Martin Wilke 2010-05-02 12:09:12 +00:00
parent 62903cb98b
commit 864174e10d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=253553
4 changed files with 39 additions and 0 deletions

View File

@ -2428,6 +2428,7 @@
SUBDIR += pecl-intl
SUBDIR += pecl-json
SUBDIR += pecl-mcve
SUBDIR += pecl-ncurses
SUBDIR += pecl-newt
SUBDIR += pecl-operator
SUBDIR += pecl-params

View File

@ -0,0 +1,26 @@
# New ports collection makefile for: pecl-ncurses
# Date created: 29 Apr 2010
# Whom: Jille Timmermans <jille@quis.cx>
#
# $FreeBSD$
#
PORTNAME= ncurses
PORTVERSION= 1.0.1
CATEGORIES= devel pear
MASTER_SITES= http://pecl.php.net/get/
PKGNAMEPREFIX= pecl-
EXTRACT_SUFX= .tgz
DIST_SUBDIR= PECL
MAINTAINER= jille@quis.cx
COMMENT= A PECL extension for ncurses
USE_PHP= yes
USE_PHP_BUILD= yes
USE_PHPEXT= yes
WANT_PHP_CLI= yes
CONFLICTS= php52-[0-9]
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (PECL/ncurses-1.0.1.tgz) = a2ec4437449f9b36bf3cba7a59a37654
SHA256 (PECL/ncurses-1.0.1.tgz) = b1f1569803f58f7231b8342dce528780ac2dd959185366cc650988fe4b0dfc86
SIZE (PECL/ncurses-1.0.1.tgz) = 16045

View File

@ -0,0 +1,9 @@
ncurses (new curses) is a free software emulation of curses in
System V Rel 4.0 (and above). It uses terminfo format, supports
pads, colors, multiple highlights, form characters and function
key mapping. Because of the interactive nature of this library,
it will be of little use for writing Web applications, but may
be useful when writing scripts meant using PHP from the command
line.
WWW: http://www.gnu.org/software/ncurses/ncurses.html