net-misc/openntpd: version bump and EAPI 6 bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.1
This commit is contained in:
Patrice Clement
2017-07-21 11:34:27 +02:00
parent 1c2fa178c9
commit e8c7b6e9e0
2 changed files with 102 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST openntpd-6.0p1.tar.gz 432696 SHA256 b1ab80094788912adb12b33cb1f251cc58db39294c1b5c6376972f5f7ba577e8 SHA512 a71c516dbe7596cbcb3a385112a59a82185b7e3d93a52eda695cea5a0a599ba7fbf58daa81da55d608255cb6950398123fa7d71663604a4c3bcbee949711296d WHIRLPOOL 75b82a07920eb7c3825a37725a81615871b728e9543ec43cb20c9e61a64f523293aa7e1fbbb92ebb8d6417d13f377213ffbcba1c77c7b3c68b64e26e30222a0b
DIST openntpd-6.2p1.tar.gz 437376 SHA256 05e1668f89969a6ae064f411cb1d864ca3acb27ebd8fac963e6443ea0788d0bc SHA512 99ad2c8e42de159b1122fe30385eff2f6311202b8526828dacd52db6ec36ce14785131b0576ac5b08d3ed9cadffc142c9146e395da29409b3227c4a77187d31e WHIRLPOOL 4b1d9bc09deda1550182876f36a251c0a07fd5967db6256f420c9933c4bb275108ebf65031f6e8452aa80fed8b31ac490d7b076db47ca110df4f73d54475243f

View File

@@ -0,0 +1,101 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit systemd user
NTP_HOME="${NTP_HOME:=/var/lib/openntpd/chroot}"
MY_P="${P/_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 GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="libressl selinux"
DEPEND="
!<=net-misc/ntp-4.2.0-r2
!net-misc/ntp[-openntpd]
libressl? ( dev-libs/libressl:0= )"
RDEPEND="
${DEPEND}
selinux? ( sec-policy/selinux-ntp )"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
enewgroup ntp
enewuser ntp -1 -1 "${NTP_HOME}" ntp
# make sure user has correct HOME as flipping between the standard ntp pkg
# and this one was possible in the past
if [[ $(egethome ntp) != ${NTP_HOME} ]]; then
ewarn "From this version on, the homedir of the ntp user cannot be changed"
ewarn "dynamically after the installation. For homedir different from"
ewarn "/var/lib/openntpd/chroot set NTP_HOME in your make.conf and re-emerge."
esethome ntp "${NTP_HOME}"
fi
}
src_prepare() {
default
# fix /run path
sed -i 's:/var/run/ntpd:/run/ntpd:g' src/ntpctl.8 src/ntpd.8 || die
sed -i 's:LOCALSTATEDIR "/run/ntpd:"/run/ntpd:' src/ntpd.h || die
# fix ntpd.drift path
sed -i 's:/var/db/ntpd.drift:/var/lib/openntpd/ntpd.drift:g' src/ntpd.8 || die
sed -i 's:"/db/ntpd.drift":"/openntpd/ntpd.drift":' src/ntpd.h || die
# fix default config to use gentoo pool
sed -i 's:servers pool.ntp.org:#servers pool.ntp.org:' ntpd.conf || die
printf "\n# Choose servers announced from Gentoo NTP Pool\nservers 0.gentoo.pool.ntp.org\nservers 1.gentoo.pool.ntp.org\nservers 2.gentoo.pool.ntp.org\nservers 3.gentoo.pool.ntp.org\n" >> ntpd.conf || die
}
src_configure() {
econf \
--with-privsep-user=ntp \
--with-privsep-path=${NTP_HOME} \
$(use_enable libressl https-constraint)
}
src_install() {
default
rm -r "${ED}"/var || die
newinitd "${FILESDIR}/${PN}.init.d-20080406-r6" ntpd
newconfd "${FILESDIR}/${PN}.conf.d-20080406-r6" ntpd
keepdir "${NTP_HOME}"
systemd_newunit "${FILESDIR}/${PN}.service-20080406-r4" ntpd.service
}
pkg_postinst() {
# Clean up chroot localtime copy from older versions
if [[ -d "${EROOT%/}${NTP_HOME}"/etc ]]; then
if [[ -f "${EROOT%/}${NTP_HOME}"/etc/localtime ]]; then
rm -v "${EROOT%/}${NTP_HOME}"/etc/localtime || die
fi
rmdir "${EROOT%/}${NTP_HOME}"/etc ||
ewarn "Unable to remove legacy ${EROOT%/}${NTP_HOME}/etc directory"
fi
# Fix permissions on home directory
chown root:root "${EROOT%/}${NTP_HOME}" || die
[[ -f ${EROOT}var/log/ntpd.log ]] && \
ewarn "Logfile '${EROOT}var/log/ntpd.log' might be orphaned, please remove it if not in use via syslog."
if [[ -f ${EROOT}var/lib/ntpd.drift ]]; then
einfo "Moving ntpd.drift file to new location."
mv "${EROOT}var/lib/ntpd.drift" "${EROOT}var/lib/openntpd/ntpd.drift" || die
fi
}