diff options
author | bes.internal <bes.internal@gmail.com> | 2017-08-21 10:53:46 +0300 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-10-07 19:35:41 +0200 |
commit | 79e0608ab44d4a0329b01a912366c831078ec479 (patch) | |
tree | 1d61886152149849091e429993be5dfa01ba7490 /net-misc/ntpclient/ntpclient-2017.217.ebuild | |
parent | x11-misc/xdg-utils: add missing dbus-related deps. (diff) | |
download | gentoo-79e0608ab44d4a0329b01a912366c831078ec479.tar.gz gentoo-79e0608ab44d4a0329b01a912366c831078ec479.tar.bz2 gentoo-79e0608ab44d4a0329b01a912366c831078ec479.zip |
net-misc/ntpclient: version bump to 2017.217.
A new release from the fork of the original author mainline has been released
on Github.
Closes: https://github.com/gentoo/gentoo/pull/5492
Diffstat (limited to 'net-misc/ntpclient/ntpclient-2017.217.ebuild')
-rw-r--r-- | net-misc/ntpclient/ntpclient-2017.217.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net-misc/ntpclient/ntpclient-2017.217.ebuild b/net-misc/ntpclient/ntpclient-2017.217.ebuild new file mode 100644 index 000000000000..1b87f1f32d22 --- /dev/null +++ b/net-misc/ntpclient/ntpclient-2017.217.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils flag-o-matic toolchain-funcs + +DESCRIPTION="A NTP (RFC-1305) client for unix-alike computers" +HOMEPAGE="https://github.com/troglobit/ntpclient" +SRC_URI="https://github.com/troglobit/ntpclient/releases/download/2017_217/ntpclient-2017_217.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +src_unpack() { + default + mv "${WORKDIR}"/${PN}* ${P} || die +} + +src_install() { + dobin "src/${PN}" + dodoc README.md + dodoc "doc/HOWTO.md" "doc/rate.awk" "doc/rate2.awk" +} |