blob: c4d24b2a77a67116e1e23dbb45c1362324d8b5c5 (
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
25
26
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# 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.2 2003/09/13 23:14:35 usata Exp $
DESCRIPTION="tty recorder"
HOMEPAGE="http://namazu.org/~satoru/ttyrec/"
SRC_URI="http://namazu.org/~satoru/ttyrec/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
IUSE=""
KEYWORDS="~x86"
DEPEND="virtual/glibc"
S=${WORKDIR}/${P}
src_compile () {
make CFLAGS="${CFLAGS}" || die
}
src_install () {
dobin ttyrec ttyplay ttytime
dodoc README
doman *.1
}
|