summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Junghans <ottxor@gentoo.org>2013-09-07 22:24:19 +0000
committerChristoph Junghans <ottxor@gentoo.org>2013-09-07 22:24:19 +0000
commite04daf51d10a50e1a0040356826a38730e3b0b61 (patch)
tree0a60d5d20689b8b54e817017bd5d554fe9208f4e /net-misc/openntpd
parentVersion bump. (diff)
downloadgentoo-2-e04daf51d10a50e1a0040356826a38730e3b0b61.tar.gz
gentoo-2-e04daf51d10a50e1a0040356826a38730e3b0b61.tar.bz2
gentoo-2-e04daf51d10a50e1a0040356826a38730e3b0b61.zip
remove old
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'net-misc/openntpd')
-rw-r--r--net-misc/openntpd/ChangeLog6
-rw-r--r--net-misc/openntpd/openntpd-3.9_p1-r4.ebuild60
2 files changed, 5 insertions, 61 deletions
diff --git a/net-misc/openntpd/ChangeLog b/net-misc/openntpd/ChangeLog
index ae3653802ab5..7472e4d44516 100644
--- a/net-misc/openntpd/ChangeLog
+++ b/net-misc/openntpd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/openntpd
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.83 2013/09/05 05:57:49 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/ChangeLog,v 1.84 2013/09/07 22:24:19 ottxor Exp $
+
+ 07 Sep 2013; Christoph Junghans <ottxor@gentoo.org>
+ -openntpd-3.9_p1-r4.ebuild:
+ remove old
05 Sep 2013; Mike Frysinger <vapier@gentoo.org> openntpd-20080406.ebuild:
Mark s390 stable #457454.
diff --git a/net-misc/openntpd/openntpd-3.9_p1-r4.ebuild b/net-misc/openntpd/openntpd-3.9_p1-r4.ebuild
deleted file mode 100644
index 51bc4cbe833e..000000000000
--- a/net-misc/openntpd/openntpd-3.9_p1-r4.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/openntpd-3.9_p1-r4.ebuild,v 1.13 2013/01/01 18:50:35 armin76 Exp $
-
-EAPI="2"
-
-inherit eutils autotools user
-
-MY_P=${P/_/}
-DEB_VER="8"
-DESCRIPTION="Lightweight NTP server ported from OpenBSD"
-HOMEPAGE="http://www.openntpd.org/"
-SRC_URI="mirror://openbsd/OpenNTPD/${MY_P}.tar.gz
- mirror://debian/pool/main/o/openntpd/${MY_P/-/_}+debian-${DEB_VER}.debian.tar.gz"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
-IUSE="ssl selinux"
-
-RDEPEND="ssl? ( dev-libs/openssl )
- selinux? ( sec-policy/selinux-ntp )
- !<=net-misc/ntp-4.2.0-r2
- !net-misc/ntp[-openntpd]"
-DEPEND="${RDEPEND}
- virtual/yacc"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- enewgroup ntp 123
- enewuser ntp 123 -1 /var/lib/openntpd/chroot ntp
-
- # make sure user has correct HOME when flipping between
- # the standard ntp pkg and this one
- usermod -d /var/lib/openntpd/chroot ntp
-}
-
-src_prepare() {
- sed -i '/NTPD_USER/s:_ntp:ntp:' ntpd.h || die
-
- epatch "${WORKDIR}"/debian/patches/*.patch
- sed -i 's:debian:gentoo:g' ntpd.conf || die
- eautoreconf # deb patchset touches .ac files and such
-}
-
-src_configure() {
- econf \
- --disable-strip \
- --with-adjtimex \
- $(use_with !ssl builtin-arc4random)
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die
- dodoc ChangeLog CREDITS README
-
- newinitd "${FILESDIR}/openntpd.init.d-${PVR}" ntpd
- newconfd "${FILESDIR}/openntpd.conf.d-${PVR}" ntpd
-}