summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2007-10-27 20:30:36 +0000
committerThilo Bangert <bangert@gentoo.org>2007-10-27 20:30:36 +0000
commit8118fb70351b0b14d96b0417683b3a97e94f5ca8 (patch)
tree6510ad4098ecc5e7e3a910f4cdef199cda8df547 /net-misc/openntpd
parentAdd 1.36, fixes Bug 196913, Fix repoman reports in 1.29. (diff)
downloadgentoo-2-8118fb70351b0b14d96b0417683b3a97e94f5ca8.tar.gz
gentoo-2-8118fb70351b0b14d96b0417683b3a97e94f5ca8.tar.bz2
gentoo-2-8118fb70351b0b14d96b0417683b3a97e94f5ca8.zip
clean - remove ancient version
(Portage version: 2.1.3.9)
Diffstat (limited to 'net-misc/openntpd')
-rw-r--r--net-misc/openntpd/ChangeLog7
-rw-r--r--net-misc/openntpd/files/3.6.1_p1-ntpd.8.patch33
-rw-r--r--net-misc/openntpd/files/3.6.1_p1-pollerr.patch39
-rw-r--r--net-misc/openntpd/files/digest-openntpd-3.6.1_p1-r13
-rw-r--r--net-misc/openntpd/openntpd-3.6.1_p1-r1.ebuild48
5 files changed, 6 insertions, 124 deletions
diff --git a/net-misc/openntpd/ChangeLog b/net-misc/openntpd/ChangeLog
index cdb810e309d6..8e6eb91f4d7e 100644
--- a/net-misc/openntpd/ChangeLog
+++ b/net-misc/openntpd/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/openntpd
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.37 2007/10/14 15:37:43 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.38 2007/10/27 20:30:35 bangert Exp $
+
+ 27 Oct 2007; Thilo Bangert <bangert@gentoo.org>
+ -files/3.6.1_p1-ntpd.8.patch, -files/3.6.1_p1-pollerr.patch,
+ -openntpd-3.6.1_p1-r1.ebuild:
+ cleanup - remove ancient version
14 Oct 2007; Markus Rothe <corsair@gentoo.org> openntpd-3.9_p1-r1.ebuild:
Stable on ppc64; bug #194623
diff --git a/net-misc/openntpd/files/3.6.1_p1-ntpd.8.patch b/net-misc/openntpd/files/3.6.1_p1-ntpd.8.patch
deleted file mode 100644
index b95570d1935c..000000000000
--- a/net-misc/openntpd/files/3.6.1_p1-ntpd.8.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -urN openntpd-3.6.1p1/ntpd.8 openntpd-3.6.1p1-new/ntpd.8
---- openntpd-3.6.1p1/ntpd.8 2004-12-07 03:29:39.000000000 +0100
-+++ openntpd-3.6.1p1-new/ntpd.8 2004-12-11 12:39:03.972096720 +0100
-@@ -83,18 +83,6 @@
- .Xr rdate 8
- before starting
- .Nm .
--Currently, the
--.Fl s
--option is added unconditionally in
--.Xr rc 8 .
--Make sure to specify the
--.Fl S
--option
--(add/edit
--.Va ntpd_flags
--in
--.Xr rc.conf.local 8 )
--if this behaviour is not desired.
- .El
- .Sh FILES
- .Bl -tag -width "/etc/ntpd.confXXX" -compact
-@@ -105,10 +93,7 @@
- .El
- .Sh SEE ALSO
- .Xr date 1 ,
--.Xr adjtime 2 ,
- .Xr ntpd.conf 5 ,
--.Xr rc 8 ,
--.Xr rc.conf 8 ,
- .Xr rdate 8 ,
- .Xr timed 8
- .Rs
diff --git a/net-misc/openntpd/files/3.6.1_p1-pollerr.patch b/net-misc/openntpd/files/3.6.1_p1-pollerr.patch
deleted file mode 100644
index 8299778ca886..000000000000
--- a/net-misc/openntpd/files/3.6.1_p1-pollerr.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Index: ntp.c
-===================================================================
-RCS file: /usr/local/cvs/openntpd-portable/ntp.c,v
-retrieving revision 1.25
-diff -u -p -r1.25 ntp.c
---- ntp.c 4 Dec 2004 00:06:34 -0000 1.25
-+++ ntp.c 12 Dec 2004 00:55:51 -0000
-@@ -228,27 +228,27 @@ ntp_main(int pipe_prnt[2], struct ntpd_c
- ntp_quit = 1;
- }
-
-- if (nfds > 0 && (pfd[PFD_PIPE_MAIN].revents & POLLOUT))
-+ if (nfds > 0 && (pfd[PFD_PIPE_MAIN].revents & (POLLOUT|POLLERR)))
- if (msgbuf_write(&ibuf_main->w) < 0) {
- log_warn("pipe write error (to parent)");
- ntp_quit = 1;
- }
-
-- if (nfds > 0 && pfd[PFD_PIPE_MAIN].revents & POLLIN) {
-+ if (nfds > 0 && pfd[PFD_PIPE_MAIN].revents & (POLLIN|POLLERR)) {
- nfds--;
- if (ntp_dispatch_imsg() == -1)
- ntp_quit = 1;
- }
-
- for (j = 1; nfds > 0 && j < idx_peers; j++)
-- if (pfd[j].revents & POLLIN) {
-+ if (pfd[j].revents & (POLLIN|POLLERR)) {
- nfds--;
- if (server_dispatch(pfd[j].fd, conf) == -1)
- ntp_quit = 1;
- }
-
- for (; nfds > 0 && j < i; j++)
-- if (pfd[j].revents & POLLIN) {
-+ if (pfd[j].revents & (POLLIN|POLLERR)) {
- nfds--;
- if (client_dispatch(idx2peer[j - idx_peers],
- conf->settime) == -1)
diff --git a/net-misc/openntpd/files/digest-openntpd-3.6.1_p1-r1 b/net-misc/openntpd/files/digest-openntpd-3.6.1_p1-r1
deleted file mode 100644
index b07222f26bf4..000000000000
--- a/net-misc/openntpd/files/digest-openntpd-3.6.1_p1-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 4584f226523776a3cdd2fb6f8212ba8d openntpd-3.6.1p1.tar.gz 123811
-RMD160 70eb2673c1cc91ca483f5183a8fb57870c6a58ec openntpd-3.6.1p1.tar.gz 123811
-SHA256 b6c8ae3fb280a4ca21bbfd8168e3cd2ecdf9d57bb2612000a557d344e974eb74 openntpd-3.6.1p1.tar.gz 123811
diff --git a/net-misc/openntpd/openntpd-3.6.1_p1-r1.ebuild b/net-misc/openntpd/openntpd-3.6.1_p1-r1.ebuild
deleted file mode 100644
index 232f75e70c0f..000000000000
--- a/net-misc/openntpd/openntpd-3.6.1_p1-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2007 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-r1.ebuild,v 1.6 2007/03/26 08:08:01 antarus 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 selinux"
-
-RDEPEND="ssl? ( dev-libs/openssl )
- selinux? ( sec-policy/selinux-ntp )
- !<=net-misc/ntp-4.2.0-r2"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- enewgroup ntp 123
- enewuser ntp 123 -1 /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
- epatch ${FILESDIR}/${PV}-pollerr.patch #74080
-}
-
-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
-}