diff options
author | Sam James <sam@gentoo.org> | 2020-09-13 07:11:22 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-09-13 07:11:22 +0000 |
commit | 1cb68c129d2f67d3529fce146d30de8972952f13 (patch) | |
tree | cad6a78fd4a956357afc946d32f4ed06ff3d4665 /net-misc | |
parent | net-misc/clockspeed: amd64 stable (bug #740932) (diff) | |
download | gentoo-1cb68c129d2f67d3529fce146d30de8972952f13.tar.gz gentoo-1cb68c129d2f67d3529fce146d30de8972952f13.tar.bz2 gentoo-1cb68c129d2f67d3529fce146d30de8972952f13.zip |
net-misc/clockspeed: cleanup old EAPI 4 ebuild
Closes: https://bugs.gentoo.org/740932
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/clockspeed/clockspeed-0.62-r6.ebuild | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/net-misc/clockspeed/clockspeed-0.62-r6.ebuild b/net-misc/clockspeed/clockspeed-0.62-r6.ebuild deleted file mode 100644 index 52a57b35b423..000000000000 --- a/net-misc/clockspeed/clockspeed-0.62-r6.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="A simple Network Time Protocol (NTP) client" -HOMEPAGE="http://cr.yp.to/clockspeed.html" - -# this is the trailing part of the name for the latest leapseconds file. -LEAPSECONDS_DATE="20081114" - -SRC_URI="http://cr.yp.to/clockspeed/${P}.tar.gz - https://dev.gentoo.org/~pacho/maintainer-needed/leapsecs.dat."$LEAPSECONDS_DATE"" - -LICENSE="all-rights-reserved" -SLOT="0" -KEYWORDS="amd64 ~mips x86" -IUSE="static selinux" -RESTRICT="mirror bindist test" - -DEPEND="sys-apps/groff" -RDEPEND="selinux? ( sec-policy/selinux-clockspeed ) - net-dns/djbdns" - -src_prepare() { - epatch "${FILESDIR}"/${P}-gentoo.patch -} - -src_configure() { - echo "$(tc-getCC) ${CFLAGS} ${ASFLAGS}" > conf-cc - use static && append-ldflags -static - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld -} - -src_install() { - dobin clockspeed clockadd clockview sntpclock taiclock taiclockd - dosbin "${FILESDIR}"/ntpclockset - - doman *.1 - dodoc BLURB CHANGES INSTALL README THANKS TODO - - insinto /var/lib/clockspeed - newins "${DISTDIR}"/leapsecs.dat."$LEAPSECONDS_DATE" leapsecs.dat -} |