blob: 8bfdb47624bf2d3f241bdd098308e14c887ee714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="screen(1) frontend that is designed to be a session handler"
HOMEPAGE="http://pubwww.hsz-t.ch/~mgloor/screenie.html"
SRC_URI="http://pubwww.hsz-t.ch/~mgloor/data/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm hppa ia64 sparc x86"
IUSE=""
RDEPEND="app-misc/screen"
PATCHES=( "${FILESDIR}/${PN}-CVE-2008-5371.patch" )
src_install() {
dobin screenie || die "dobin failed"
default
}
|