Files
haikuports/app-misc/screen/screen-4.2.1_git.recipe
Humdinger 9df9235958 De-lint recipes
*	marble
	Don't start SUMMARY with app name
	Re-ordered blocks

*	ne
	Don't start SUMMARY with app name
	Still in old BEP format

*	pixman
	Don't start SUMMARY with app name
	Improved DESCRIPTION
	Re-ordered blocks

*	qemacs
	Don't start SUMMARY with app name
	Re-ordered blocks

*	rsync
	Don't start SUMMARY with app name
	Re-ordered blocks

*	schroedinger
	Don't start SUMMARY with app name
	Re-ordered blocks

*	screen
	Don't start SUMMARY with app name
	Re-ordered blocks

*	sharutils
	Don't start SUMMARY with app name
	Re-ordered blocks

*	sortsave
	Don't start SUMMARY with app name
	Re-ordered blocks
	Corrected PROVIDES to declare an addon

*	srm
	Don't start SUMMARY with app name
	Re-ordered blocks
2015-08-07 20:05:09 +02:00

72 lines
2.3 KiB
Bash

SUMMARY="A full-screen terminal window manager"
DESCRIPTION="Screen is a full-screen window manager that multiplexes a \
physical terminal between several processes, typically interactive shells.
Each virtual terminal provides the functions of the DEC VT100 terminal \
and, in addition, several control functions from the ANSI X3.64 \
(ISO 6429) and ISO 2022 standards (e.g., insert/delete line and support \
for multiple character sets).
There is a scrollback history buffer for each virtual terminal and \
a copy-and-paste mechanism that allows the user to move text regions \
between windows. When screen is called, it creates a single window \
with a shell in it (or the specified command) and then gets out of \
your way so that you can use the program as you normally would.
Then, at any time, you can create new (full-screen) windows with \
other programs in them (including more shells), kill the current window, \
view a list of the active windows, turn output logging on and off, copy \
text between windows, view the scrollback history, switch between windows, \
etc.
All windows run their programs completely independent of each other. \
Programs continue to run when their window is currently not visible \
and even when the whole screen session is detached from the users terminal. \
A command-line compatible rm which destroys file contents before unlinking."
HOMEPAGE="http://www.gnu.org/software/screen/"
COPYRIGHT="2010 Juergen Weigert, Sadrul Habib Chowdhury
2008, 2009 Juergen Weigert, Michael Schroeder, Micah Cowan, Sadrul Habib Chowdhury
1993-2002, 2003, 2005, 2006, 2007 Juergen Weigert, Michael Schroeder
1987 Oliver Laumann"
LICENSE="GNU GPL v3"
REVISION="1"
SOURCE_URI="git://git.savannah.gnu.org/screen.git#bb1ef155222d2c5706f30b6b0fe078a501932dd5"
PATCHES="screen-4.2.1_git.patchset"
ARCHITECTURES="?x86_gcc2 ?x86 ?x86_64"
SECONDARY_ARCHITECTURES="?x86_gcc2 ?x86"
PROVIDES="
screen$secondaryArchSuffix = $portVersion
cmd:screen = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libncurses$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libncurses$secondaryArchSuffix >= 5.9
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:automake
cmd:make
cmd:gcc$secondaryArchSuffix
"
BUILD()
{
cd src
./autogen.sh ...
runConfigure ./configure
make
}
INSTALL()
{
cd src
make install
}