diff options
Diffstat (limited to 'net-misc/openntpd/openntpd-3.6_p1.ebuild')
-rw-r--r-- | net-misc/openntpd/openntpd-3.6_p1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/net-misc/openntpd/openntpd-3.6_p1.ebuild b/net-misc/openntpd/openntpd-3.6_p1.ebuild new file mode 100644 index 000000000000..77f5d3b6e8fc --- /dev/null +++ b/net-misc/openntpd/openntpd-3.6_p1.ebuild @@ -0,0 +1,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.1 2004/11/04 03:12:18 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 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="virtual/libc + !net-misc/ntp" +DEPEND="${RDEPEND} + >=sys-apps/portage-2.0.51" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + cd ${S} + sed -i '/NTPD_USER/s:_ntp:ntp:' ntpd.h || die + epatch ${FILESDIR}/${PV}-ntpd.8.patch +} + +pkg_preinst() { + enewgroup ntp 123 + enewuser ntp 123 /bin/false /var/empty ntp +} + +src_install() { + make install DESTDIR=${D} || die + dodoc ChangeLog CREDITS README + + newinitd ${FILESDIR}/openntpd.rc openntpd + newconfd ${FILESDIR}/openntpd.conf.d openntpd +} |