blob: aab8c6e938fae71a17a61c0dfa3c89e9de89e52b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/screen/screen-3.9.13.ebuild,v 1.3 2002/12/15 10:44:11 bjb Exp $
HOMEPAGE="http://www.gnu.org/software/screen/"
DESCRIPTION="Full-screen window manager that multiplexes physical terminals between several processes"
SRC_URI="ftp://ftp.uni-erlangen.de/pub/utilities/screen/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"
RDEPEND=">=sys-libs/ncurses-5.2"
src_unpack() {
unpack ${A}
cd ${S}
}
src_compile() {
addpredict "`tty`"
addpredict "${SSH_TTY}"
econf \
--with-sys-screenrc=/etc/screen/screenrc \
--libexecdir=/usr/lib/misc || die
emake || die
}
src_install () {
dobin screen
insinto /usr/share/terminfo
doins terminfo/screencap
insinto /etc/screen
doins etc/screenrc
dodoc README ChangeLog INSTALL COPYING TODO NEWS* \
doc/{FAQ,README.DOTSCREEN,fdpat.ps,window_to_display.ps}
doman doc/screen.1
doinfo doc/screen.info*
}
|