blob: 9f6135fb1a50949e8dcea51cb3bbec77c09a4bfe (
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
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-talk/netkit-talk-0.17-r2.ebuild,v 1.4 2002/07/11 06:30:48 drobbins Exp $
A=netkit-ntalk-${PV}.tar.gz
S=${WORKDIR}/netkit-ntalk-${PV}
DESCRIPTION="Netkit - talkd"
SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${A}"
KEYWORDS="x86"
LICENSE="bsd"
SLOT="0"
DEPEND="virtual/glibc
>=sys-libs/ncurses-5.2"
src_unpack() {
unpack ${A}
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff
}
src_compile() {
try ./configure
cp MCONFIG MCONFIG.orig
sed -e "s:-O2 -Wall:-Wall:" -e "s:-Wpointer-arith::" MCONFIG.orig > MCONFIG
try make
}
src_install() {
into /usr
dobin talk/talk
doman talk/talk.1
dosbin talkd/talkd
dosym talkd /usr/sbin/in.talkd
doman talkd/talkd.8
dosym talkd.8.gz /usr/share/man/man8/in.talkd.8.gz
dodoc README ChangeLog BUGS
}
|