diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-11-01 20:19:34 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-11-21 10:24:07 +0100 |
commit | d2e231809dee9c98c65b7662e8df42b8d2d73ec0 (patch) | |
tree | ed7ae3833dddff5adc7150109e53fbbe9b88b1ca /net-misc/ptpd | |
parent | net-misc/ptpd: fix init script, bug #849287 (diff) | |
download | gentoo-d2e231809dee9c98c65b7662e8df42b8d2d73ec0.tar.gz gentoo-d2e231809dee9c98c65b7662e8df42b8d2d73ec0.tar.bz2 gentoo-d2e231809dee9c98c65b7662e8df42b8d2d73ec0.zip |
net-misc/ptpd: EAPI8 bump
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'net-misc/ptpd')
-rw-r--r-- | net-misc/ptpd/ptpd-2.3.1-r2.ebuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/net-misc/ptpd/ptpd-2.3.1-r2.ebuild b/net-misc/ptpd/ptpd-2.3.1-r2.ebuild index 96dae3022e0d..6b5600180760 100644 --- a/net-misc/ptpd/ptpd-2.3.1-r2.ebuild +++ b/net-misc/ptpd/ptpd-2.3.1-r2.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools flag-o-matic systemd DESCRIPTION="Precision Time Protocol daemon" HOMEPAGE="https://github.com/ptpd/ptpd" SRC_URI="https://github.com/ptpd/ptpd/archive/${P}.tar.gz" +S="${WORKDIR}/ptpd-${P}" KEYWORDS="~amd64 ~arm ~x86" LICENSE="BSD" @@ -25,11 +26,8 @@ PATCHES=( "${FILESDIR}"/${PN}-2.3.1-fix-snmp.patch ) -S=${WORKDIR}/ptpd-${P} - src_prepare() { default - eautoreconf } @@ -61,5 +59,5 @@ src_install() { pkg_postinst() { elog "Do not forget to setup correct network interface." - elog "Change the config file ${EROOT}etc/ptpd2.conf to suit your needs." + elog "Change the config file ${EROOT}/etc/ptpd2.conf to suit your needs." } |