blob: ee4004f20657ce0654ced4d70668ccf146f50ebb (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/chrony-1.19.ebuild,v 1.7 2004/07/01 20:52:51 squinky86 Exp $
inherit eutils
DESCRIPTION="NTP client and server programs"
SRC_URI="http://chrony.sunsite.dk/download/${P}.tar.gz"
HOMEPAGE="http://chrony.sunsite.dk/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 -sparc"
IUSE="readline"
DEPEND="virtual/libc
readline? ( >=sys-libs/readline-4.1-r4 )"
src_unpack() {
unpack ${A} ; cd ${S}
epatch ${FILESDIR}/${P}-conf.c-gentoo.diff
epatch ${FILESDIR}/${P}-chrony.conf.example-gentoo.diff
}
src_compile() {
econf `use_enable readline` || die
emake all docs || die
}
src_install() {
# the chrony install is brain-dead so we'll just do it ourselves
dobin chronyc
dosbin chronyd
dodoc chrony.txt README examples/chrony.{conf,keys}.example
dohtml chrony.html
doman *.{1,5,8}
doinfo chrony.info*
dodir /etc/chrony
exeinto /etc/init.d ; newexe ${FILESDIR}/chronyd.rc chronyd
insinto /etc/conf.d ; newins ${FILESDIR}/chronyd.conf chronyd
dosed "s:the documentation directory:/usr/share/doc/${PF}/:" /etc/init.d/chronyd
}
|