summaryrefslogtreecommitdiff
blob: 57eddc0cb9d17cbdaaf4cb61e3329d9626bca0eb (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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/interceptty/interceptty-0.6.ebuild,v 1.4 2007/06/14 01:56:46 angelos Exp $

DESCRIPTION="interceptty is a program that can sit between a real (or fake!) serial port and an application, recording any communications between the application and the device."
HOMEPAGE="http://www.suspectclass.com/~sgifford/interceptty/"
SRC_URI="http://www.suspectclass.com/~sgifford/${PN}/files/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"

IUSE=""
DEPEND=""

src_compile() {
	econf || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	into /usr
	dobin interceptty interceptty-nicedump
	dodoc AUTHORS NEWS README TODO
	doman interceptty.1
}