blob: 97fea191319b403592a4f09973e7a0a10e9a6e2e (
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-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Netkit - timed: Time daemon"
HOMEPAGE="https://wiki.linuxfoundation.org/networking/netkit"
SRC_URI="http://ftp.linux.org.uk/pub/linux/Networking/netkit/${P}.tar.gz"
KEYWORDS="amd64 ~mips ppc ppc64 sparc x86"
LICENSE="BSD GPL-2"
SLOT="0"
src_prepare() {
eapply "${FILESDIR}"/0.17-CFLAG-DEF-fix.patch
eapply "${FILESDIR}"/0.17-timed-opt-parsing.patch
sed -i -e '/^LDFLAGS=/d' configure || die "sed configure"
sed -i -e "s|ar -cruv|\${AR} -cruv|g" timed/lib/Makefile || die
default
}
src_configure() {
tc-export AR
# Note this is not an autoconf configure script. econf fails
append-flags -DCLK_TCK=CLOCKS_PER_SEC
./configure --prefix=/usr --with-c-compiler="$(tc-getCC)" || die "bad configure"
}
src_install() {
dosbin timed/timed/timed
doman timed/timed/timed.8
dosbin timed/timedc/timedc
doman timed/timedc/timedc.8
einstalldocs
newinitd "${FILESDIR}"/timed.rc6 timed
}
|