blob: b28347fccc1913a2791f26294940224dc7100314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/gtkterm/gtkterm-0.99.3.ebuild,v 1.8 2005/02/28 22:56:30 astinus Exp $
DESCRIPTION="A serial port terminal written in GTK+, similar to Windows' HyperTerminal."
HOMEPAGE="http://www.jls-info.com/julien/linux/"
SRC_URI="http://www.jls-info.com/julien/linux/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86 ~sparc ~ppc"
IUSE=""
DEPEND=">=x11-libs/gtk+-2.0"
src_compile() {
econf ${myconf} || die './configure failed'
emake || die
}
src_install() {
einstall || die
}
|