blob: 31c2f9c8ee6da800f03d84551c4fc64df38108b6 (
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
39
40
41
42
43
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ben Lutgens
# $Header: /home/cvsroot/gentoo-x86/app-misc/screen.ebuild,v 1.2 2001/04/21
# 19:25 CST blutgens Exp $
#P=
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION=" Screen is a full-screen window manager that multiplexes a
physical terminal between several processes"
SRC_URI="ftp://ftp.uni-erlangen.de/pub/utilities/screen/${A}"
HOMEPAGE="http://www.gnu.org/software/screen/"
DEPEND=">=sys-libs/glibc-2.1.3
>=sys-libs/gpm-1.19.3
>=sys-libs/ncurses-5.2"
src_compile() {
try ./configure --prefix=/usr --host=${CHOST}\
--mandir=/usr/share --libexecdir=/usr/lib/misc\
--host=${CHOST}
try make
}
src_install () {
dodir /usr/bin
insinto /usr/bin
dobin screen
dodir
insinto /usr/share/terminfo
doins terminfo/screencap
insinto /etc
doins etc/screenrc
dodoc README ChangeLog INSTALL COPYING TODO
docinto doc
cd doc
dodoc FAQ README.DOTSCREEN fdpat.ps window_to_display.ps
}
|