blob: f2369aa640a10018a50d93ec5c2f6258bbbe2b80 (
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
40
41
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="2"
inherit eutils toolchain-funcs
DESCRIPTION="Netkit - rup rpc.rusersd rusers"
HOMEPAGE="http://www.hcs.harvard.edu/~dholland/computers/netkit.html"
SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86"
IUSE=""
src_prepare() {
epatch "${FILESDIR}"/${P}-include.patch
sed -i configure -e '/^LDFLAGS=/d' || die "sed configure"
}
src_configure() {
./configure --with-c-compiler=$(tc-getCC) || die
sed -i MCONFIG -e "s:-O2::" -e "s:-Wpointer-arith::" || die "sed MCONFIG"
}
src_compile() {
# see bug #244867 for parallel make issues
emake -j1 || die
}
src_install() {
into /usr
dobin rup/rup
doman rup/rup.1
dobin rpc.rusersd/rusersd
doman rpc.rusersd/rpc.rusersd.8
dobin rusers/rusers
doman rusers/rusers.1
dodoc README ChangeLog
}
|