18 lines
555 B
Bash
18 lines
555 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/dtach/dtach-0.8.ebuild,v 1.5 2011/01/04 17:55:39 jlec Exp $
|
|
|
|
DESCRIPTION="A program that emulates the detach feature of screen"
|
|
HOMEPAGE="http://dtach.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
IUSE=""
|
|
|
|
src_install() {
|
|
dobin dtach || die "dobin failed"
|
|
doman dtach.1 || die "doman failed"
|
|
dodoc README || die "dodoc failed"
|
|
}
|