blob: 98a104baf3a6d145b85c0b72941a2049b8fe2181 (
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
27
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ytalk/ytalk-3.3.0.ebuild,v 1.3 2006/12/18 16:24:13 gustavoz Exp $
DESCRIPTION="Multi-user replacement for UNIX talk"
HOMEPAGE="http://www.impul.se/ytalk/"
SRC_URI="http://www.impul.se/ytalk/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc sparc x86"
IUSE=""
DEPEND="virtual/libc
>=sys-libs/ncurses-5.2"
src_compile() {
econf || die "./configure failed"
emake || die "Parallel Make Failed"
}
src_install() {
einstall || die "Installation Failed"
dodoc ChangeLog INSTALL README
}
|