summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-12-22 15:00:04 +0000
committerMike Frysinger <vapier@gentoo.org>2004-12-22 15:00:04 +0000
commit5dcb9d5af9706d81f79ce9f42879456125826ed4 (patch)
tree221a6325bcd56ba5e59f52c8bc7f9e73c48cc936 /net-misc/openntpd
parentAdd patch from cvs to handle poll errors #74080 by Christian Gut. (Manifest r... (diff)
downloadgentoo-2-5dcb9d5af9706d81f79ce9f42879456125826ed4.tar.gz
gentoo-2-5dcb9d5af9706d81f79ce9f42879456125826ed4.tar.bz2
gentoo-2-5dcb9d5af9706d81f79ce9f42879456125826ed4.zip
old
Diffstat (limited to 'net-misc/openntpd')
-rw-r--r--net-misc/openntpd/files/digest-openntpd-3.6.1_p11
-rw-r--r--net-misc/openntpd/openntpd-3.6.1_p1.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/net-misc/openntpd/files/digest-openntpd-3.6.1_p1 b/net-misc/openntpd/files/digest-openntpd-3.6.1_p1
deleted file mode 100644
index 87cf7748892a..000000000000
--- a/net-misc/openntpd/files/digest-openntpd-3.6.1_p1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4584f226523776a3cdd2fb6f8212ba8d openntpd-3.6.1p1.tar.gz 123811
diff --git a/net-misc/openntpd/openntpd-3.6.1_p1.ebuild b/net-misc/openntpd/openntpd-3.6.1_p1.ebuild
deleted file mode 100644
index eafb0dcdd1b9..000000000000
--- a/net-misc/openntpd/openntpd-3.6.1_p1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# 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.1_p1.ebuild,v 1.3 2004/12/22 14:38:24 vapier Exp $
-
-inherit eutils
-
-MY_P=${P/_/}
-DESCRIPTION="Lightweight NTP server ported from OpenBSD"
-HOMEPAGE="http://www.openntpd.org/"
-SRC_URI="mirror://openbsd/OpenNTPD/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="ssl"
-
-RDEPEND="virtual/libc
- ssl? ( dev-libs/openssl )
- !<=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_compile() {
- econf $(use_with !ssl builtin-arc4random) || die
- emake || die "emake failed"
-}
-
-src_install() {
- make install DESTDIR="${D}" || die
- dodoc ChangeLog CREDITS README
-
- newinitd ${FILESDIR}/openntpd.rc ntpd
- newconfd ${FILESDIR}/openntpd.conf.d ntpd
-}