blob: 1d369e88a4009c9e596dc7386256204c92a9a54a (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/ttyrec/ttyrec-1.0.6.ebuild,v 1.7 2004/07/31 03:00:09 tgall Exp $
DESCRIPTION="tty recorder"
HOMEPAGE="http://namazu.org/~satoru/ttyrec/"
SRC_URI="http://namazu.org/~satoru/ttyrec/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 macos ppc64"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
make CFLAGS="${CFLAGS}" || die
}
src_install() {
dobin ttyrec ttyplay ttytime || die
dodoc README
doman *.1
}
|