blob: 43ef54f55ff2e5614695b123dd366f1d4a12d744 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/screenie/screenie-1.30.0.ebuild,v 1.2 2007/04/25 06:33:49 opfer 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"
}
|