diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-05-21 16:22:51 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-05-22 02:06:14 +0100 |
commit | df83be1d729d2c621a93083210fae0f4126e84cd (patch) | |
tree | f1fb22b8499d29b519dbc4ff8c48dc75ffe74968 /net-misc | |
parent | net-libs/libnpupnp: drop 6.1.2 (diff) | |
download | gentoo-df83be1d729d2c621a93083210fae0f4126e84cd.tar.gz gentoo-df83be1d729d2c621a93083210fae0f4126e84cd.tar.bz2 gentoo-df83be1d729d2c621a93083210fae0f4126e84cd.zip |
net-misc/openntpd: drop old
Outdated due to -r1 bump.
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/openntpd/openntpd-6.8_p1.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/net-misc/openntpd/openntpd-6.8_p1.ebuild b/net-misc/openntpd/openntpd-6.8_p1.ebuild deleted file mode 100644 index ee0f69ce5392..000000000000 --- a/net-misc/openntpd/openntpd-6.8_p1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit systemd - -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 ~sparc ~x86" -IUSE="selinux" - -DEPEND=" - !net-misc/ntp[-openntpd]" -RDEPEND=" - ${DEPEND} - acct-group/openntpd - acct-user/openntpd - selinux? ( sec-policy/selinux-ntp )" - -S="${WORKDIR}/${MY_P}" - -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:^server:#server:g' 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 - - sed -ie 's/^constraints/#constraints/g' ntpd.conf || die -} - -src_configure() { - econf \ - --with-privsep-user=openntpd \ - --disable-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 - - systemd_newunit "${FILESDIR}/${PN}.service-20080406-r4" ntpd.service -} |