blob: ff08dcfdf48d29048ddbb69b95b23d6b1ffad6bc (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-timed/netkit-timed-0.17-r8.ebuild,v 1.2 2007/04/28 16:58:55 swegener Exp $
inherit eutils flag-o-matic
IUSE=""
DESCRIPTION="Netkit - timed"
SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${P}.tar.gz"
HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
KEYWORDS="~x86 ~sparc ~ppc ~mips ~ppc64 ~amd64"
LICENSE="BSD"
SLOT="0"
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/0.17-CFLAG-DEF-fix.patch
epatch ${FILESDIR}/0.17-timed-opt-parsing.patch
}
src_compile() {
# Note this is not an autoconf configure script. econf fails
append-flags -DCLK_TCK=CLOCKS_PER_SEC
./configure --prefix=/usr || die "bad configure"
emake || die "bad make"
}
src_install() {
dosbin timed/timed/timed
doman timed/timed/timed.8
dosbin timed/timedc/timedc
doman timed/timedc/timedc.8
dodoc README ChangeLog BUGS
newinitd ${FILESDIR}/timed.rc6 timed
}
|