blob: 26a31475d76ff09c126d8f5c2541d590ea80881c (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-3.6_p1.ebuild,v 1.2 2004/11/09 15:40:01 vapier Exp $
inherit eutils
MY_P=${P/_/}
DESCRIPTION="Lightweight NTP server ported from OpenBSD"
HOMEPAGE="http://www.openntpd.org/"
SRC_URI="mirror://openbsd/OpenNTPD/portable/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
RDEPEND="virtual/libc
!<=net-misc/ntp-4.2.0-r2"
DEPEND="${RDEPEND}
>=sys-apps/portage-2.0.51"
S=${WORKDIR}/${MY_P}
pkg_setup() {
enewgroup ntp 123
enewuser ntp 123 /bin/false /var/empty ntp
}
src_unpack() {
unpack ${A}
cd ${S}
sed -i '/NTPD_USER/s:_ntp:ntp:' ntpd.h || die
epatch ${FILESDIR}/${PV}-ntpd.8.patch
}
src_install() {
make install DESTDIR="${D}" || die
dodoc ChangeLog CREDITS README
newinitd ${FILESDIR}/openntpd.rc ntpd
newconfd ${FILESDIR}/openntpd.conf.d ntpd
}
|