diff options
author | 2023-09-16 22:35:59 +0200 | |
---|---|---|
committer | 2023-09-17 17:35:08 +0300 | |
commit | 77b5791502ea1524042e72dde376cbc9119ed40f (patch) | |
tree | ae30c70d7b1986d3b22b95738821742a6ebd006d /net-misc | |
parent | net-misc/netkit-talk: EAPI8 bump, enable ipv6 unconditional (diff) | |
download | gentoo-77b5791502ea1524042e72dde376cbc9119ed40f.tar.gz gentoo-77b5791502ea1524042e72dde376cbc9119ed40f.tar.bz2 gentoo-77b5791502ea1524042e72dde376cbc9119ed40f.zip |
net-misc/netkit-timed: EAPI8 bump, fix #725182
Closes: https://bugs.gentoo.org/725182
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32855
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/netkit-timed/netkit-timed-0.17-r11.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-misc/netkit-timed/netkit-timed-0.17-r11.ebuild b/net-misc/netkit-timed/netkit-timed-0.17-r11.ebuild new file mode 100644 index 000000000000..660a85f76e2a --- /dev/null +++ b/net-misc/netkit-timed/netkit-timed-0.17-r11.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="Netkit - timed: Time daemon" +HOMEPAGE="https://wiki.linuxfoundation.org/networking/netkit" +SRC_URI="http://ftp.linux.org.uk/pub/linux/Networking/netkit/${P}.tar.gz" + +KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86" +LICENSE="BSD GPL-2" +SLOT="0" + +src_prepare() { + eapply "${FILESDIR}"/0.17-CFLAG-DEF-fix.patch + eapply "${FILESDIR}"/0.17-timed-opt-parsing.patch + sed -i -e '/^LDFLAGS=/d' configure || die "sed configure" + sed -i -e "s|ar -cruv|\${AR} -cruv|g" timed/lib/Makefile || die + default +} + +src_configure() { + tc-export AR + # Note this is not an autoconf configure script. econf fails + append-flags -DCLK_TCK=CLOCKS_PER_SEC + ./configure --prefix=/usr --with-c-compiler="$(tc-getCC)" || die "bad configure" +} + +src_install() { + dosbin timed/timed/timed + doman timed/timed/timed.8 + dosbin timed/timedc/timedc + doman timed/timedc/timedc.8 + einstalldocs + + newinitd "${FILESDIR}"/timed.rc6 timed +} |