mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-18 09:40:05 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
81 lines
2.5 KiB
Bash
81 lines
2.5 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="2"
|
|
SOURCE_URI="git://git.savannah.gnu.org/screen.git#9bf0a785ca8662e83fd3af425c661a984931e630"
|
|
#SOURCE_DIR="screen.git"
|
|
PATCHES="screen-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="?all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="?x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
screen$secondaryArchSuffix = $portVersion
|
|
cmd:screen = $portVersion
|
|
cmd:screen_${portVersion%~*} = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libncurses$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libncurses$secondaryArchSuffix >= 6
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
cd src
|
|
./autogen.sh
|
|
runConfigure ./configure \
|
|
--enable-socket-dir=`finddir B_SYSTEM_VAR_DIRECTORY`/screen \
|
|
--enable-pam=no
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd src
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|