xref: /freebsd/packages/ncurses/ncurses.ucl (revision bb75b0d581f74e22a68d7868ad1f5da1146a8de0)
1*bb75b0d5SLexi Winter/*
2*bb75b0d5SLexi Winter * SPDX-License-Identifier: X11
3*bb75b0d5SLexi Winter *
4*bb75b0d5SLexi Winter * Copyright 2018-2023,2024 Thomas E. Dickey
5*bb75b0d5SLexi Winter * Copyright 1998-2017,2018 Free Software Foundation, Inc.
6*bb75b0d5SLexi Winter *
7*bb75b0d5SLexi Winter * Permission is hereby granted, free of charge, to any person obtaining a
8*bb75b0d5SLexi Winter * copy of this software and associated documentation files (the
9*bb75b0d5SLexi Winter * "Software"), to deal in the Software without restriction, including
10*bb75b0d5SLexi Winter * without limitation the rights to use, copy, modify, merge, publish,
11*bb75b0d5SLexi Winter * distribute, distribute with modifications, sublicense, and/or sell
12*bb75b0d5SLexi Winter * copies of the Software, and to permit persons to whom the Software is
13*bb75b0d5SLexi Winter * furnished to do so, subject to the following conditions:
14*bb75b0d5SLexi Winter *
15*bb75b0d5SLexi Winter * The above copyright notice and this permission notice shall be included
16*bb75b0d5SLexi Winter * in all copies or substantial portions of the Software.
17*bb75b0d5SLexi Winter *
18*bb75b0d5SLexi Winter * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19*bb75b0d5SLexi Winter * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20*bb75b0d5SLexi Winter * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21*bb75b0d5SLexi Winter * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
22*bb75b0d5SLexi Winter * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23*bb75b0d5SLexi Winter * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
24*bb75b0d5SLexi Winter * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25*bb75b0d5SLexi Winter *
26*bb75b0d5SLexi Winter * Except as contained in this notice, the name(s) of the above copyright
27*bb75b0d5SLexi Winter * holders shall not be used in advertising or otherwise to promote the
28*bb75b0d5SLexi Winter * sale, use or other dealings in this Software without prior written
29*bb75b0d5SLexi Winter * authorization.
30*bb75b0d5SLexi Winter */
31*bb75b0d5SLexi Winter
32*bb75b0d5SLexi Wintercomment = "ncurses terminal control library"
33*bb75b0d5SLexi Winterdesc = <<EOD
34*bb75b0d5SLexi WinterThe ncurses package is a subroutine library for terminal-independent
35*bb75b0d5SLexi Winterscreen-painting and input-event handling which presents a high level screen
36*bb75b0d5SLexi Wintermodel to the programmer.  ncurses implements the System V Release 4.0 (SVR4)
37*bb75b0d5SLexi Wintercurses interface, and is also backward compatible with traditional BSD curses.
38*bb75b0d5SLexi Winter
39*bb75b0d5SLexi WinterThis package ships with a limited termcap database, but it is designed to use
40*bb75b0d5SLexi Wintera terminfo database provided by ports, such as in misc/terminfo-db.
41*bb75b0d5SLexi WinterEOD
42