# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils flag-o-matic DESCRIPTION="Lightweight NTP server ported from OpenBSD" HOMEPAGE="http://www.openntpd.org/" SRC_URI="http://www.openntpd.org/dist/portable/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="virtual/libc !net-misc/ntp" S=${WORKDIR}/${P} src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/user.patch } src_compile() { econf || die "econf failed" emake || die "emake failed" } pkg_preinst() { enewgroup ntp 123 enewuser ntp 123 /bin/false /var/empty ntp } src_install() { einstall || die dodoc ChangeLog CREDITS README exeinto /etc/init.d newexe ${FILESDIR}/openntpd.rc openntpd } pkg_postrm() { userdel ntp groupdel ntp }