blob: ffc78d8251ebad18a24a0b6b796f26a97ba9f127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/screenie/screenie-1.19.0.ebuild,v 1.2 2005/09/07 12:48:12 slarti Exp $
DESCRIPTION="Screenie is a small and lightweight GNU screen(1) frontend that is designed to be a session handler that simplifies the process of administrating detached jobs by providing an interactive menu."
HOMEPAGE="http://pubwww.fhzh.ch/~mgloor/screenie.html"
SRC_URI="http://pubwww.fhzh.ch/~mgloor/data/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~sparc ~x86"
IUSE=""
RDEPEND="app-misc/screen"
src_install() {
dobin screenie || die "dobin failed"
dodoc AUTHORS ChangeLog INSTALL README TODO || die "dodoc failed"
}
|