blob: 6c107ee473da5a2e0f8e3672a78777b6c6017336 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/clockspeed/clockspeed-0.62-r4.ebuild,v 1.2 2006/10/19 10:04:22 bangert Exp $
inherit eutils flag-o-matic
DESCRIPTION="A simple Network Time Protocol (NTP) client"
HOMEPAGE="http://cr.yp.to/clockspeed.html"
SRC_URI="http://cr.yp.to/clockspeed/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~mips ~x86"
IUSE="static selinux"
RESTRICT="test"
DEPEND="sys-apps/groff"
RDEPEND="selinux? ( sec-policy/selinux-clockspeed )"
# this is the trailing part of the name for the latest leapseconds file.
LEAPSECONDS_DATE="20060525"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gentoo.patch
echo "$(tc-getCC) ${CFLAGS} ${ASFLAGS}" > conf-cc
use static && append-ldflags -static
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
}
src_install() {
dobin clockspeed clockadd clockview sntpclock taiclock taiclockd || die "dobin"
dosbin "${FILESDIR}"/ntpclockset || die "dosbin"
doman *.1
dodoc BLURB CHANGES INSTALL README THANKS TODO
insinto /var/lib/clockspeed
doins "${FILESDIR}"/leapsecs.dat.20060525
}
|