blob: 5bf23f122e40aef46f6b34fa48961aaf320f0508 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-fingerd/netkit-fingerd-0.17-r3.ebuild,v 1.4 2011/01/18 20:10:56 vapier Exp $
EAPI="2"
inherit eutils toolchain-funcs
MY_PN="${PN/netkit/bsd}"
MY_PN="${MY_PN/rd/r}"
DESCRIPTION="Netkit - fingerd and finger client"
HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
SRC_URI="mirror://debian/pool/main/b/${MY_PN}/${MY_PN}_${PV}.orig.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
IUSE=""
S=${WORKDIR}/${MY_PN}-${PV}
src_prepare() {
sed -i \
-e '/^LDFLAGS=$/d' \
-e '/CFLAGS/s:-O2::' \
configure
epatch "${FILESDIR}"/${P}-r2-gentoo.diff
epatch "${FILESDIR}"/${P}-name-check.patch #80286
}
src_configure() {
tc-export CC
if tc-is-cross-compiler; then
touch MCONFIG
else
./configure || die
fi
}
src_compile() {
emake CC="${CC}" || die
}
src_install() {
dobin finger/finger || die
dosbin fingerd/fingerd || die
dosym fingerd /usr/sbin/in.fingerd
doman finger/finger.1 fingerd/fingerd.8
dosym fingerd.8 /usr/share/man/man8/in.fingerd.8
dodoc README ChangeLog BUGS
insinto /etc/xinetd.d
newins "${FILESDIR}"/fingerd.xinetd fingerd || die
}
|