net-misc/ntpclient: Version bump. EAPI 6 bump. Take over maintainership.
authorPatrice Clement <monsieurp@gentoo.org>
Sun, 3 Jan 2016 22:29:42 +0000 (22:29 +0000)
committerPatrice Clement <monsieurp@gentoo.org>
Mon, 4 Jan 2016 15:59:59 +0000 (15:59 +0000)
Package-Manager: portage-2.2.26
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
net-misc/ntpclient/Manifest
net-misc/ntpclient/metadata.xml
net-misc/ntpclient/ntpclient-2015.365.ebuild [new file with mode: 0644]

index 0c5b96593f61ef1f50372dbcc2df33ae8776f63b..316fe307ee264950c27d71d6925bb0d0b55d4195 100644 (file)
@@ -1 +1,2 @@
+DIST ntpclient-2015.365.tar.gz 31023 SHA256 95c3646919a9a2278fa384aa8e37117b250577ff8b09b8c93ba53e04e729b54b SHA512 ca3d7b8ac6cb0626ac1017e4baee2faa833aab4fb449881e890b686f785b2fe30ded77a0a831f40126ded71abae0f2a944227d530859222eabfffe03f89d8a80 WHIRLPOOL da96a96d9af031cfc62594d94192416be01d2bdfc96b26e9bb71dbd9ab1a89a78183e5bd8c22791eac75006375542892807fb44ff6f2c9c6602a1171e1dc4590
 DIST ntpclient_2010_365.tar.gz 30423 SHA256 9ad9b028385082fb804167f464e2db0a0b3d33780acd399327e64898b8fcfddd SHA512 74fd5e80dcf36c4e7aca6d97c5979b0dc4c51fed592279adfd04c0d329c117bfed819ee40d6400436c0d066f73ed3403e9fba8cb05846df55c991422ce434132 WHIRLPOOL 0eb27687cb9f90317e126be3830a9c812af216dd4be60a9d11bfcfcbf4fb16572de1bbbcf0207b47290e452172126bd2be38ab7ee49e097890bdcea6a63b259b
index a40624fba8f0df47613695b4e9d2cbc48ea3cac4..9b789bab0b421adee205666fbbd611e7fda8e0e1 100644 (file)
@@ -2,6 +2,6 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 <maintainer>
-       <email>maintainer-needed@gentoo.org</email>
+       <email>monsieurp@gentoo.org</email>
 </maintainer>
 </pkgmetadata>
diff --git a/net-misc/ntpclient/ntpclient-2015.365.ebuild b/net-misc/ntpclient/ntpclient-2015.365.ebuild
new file mode 100644 (file)
index 0000000..b2124eb
--- /dev/null
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils flag-o-matic toolchain-funcs
+
+DESCRIPTION="A NTP (RFC-1305) client for unix-alike computers"
+HOMEPAGE="http://doolittle.icarus.com/ntpclient/"
+SRC_URI="http://doolittle.icarus.com/${PN}/${PN}_${PV/./_}.tar.gz -> ${P}.tar.gz"
+
+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_prepare() {
+       default
+       sed -i -e 's/-O2//;s/LDFLAGS +=/LDLIBS +=/' Makefile || die
+       tc-export CC
+}
+
+src_install() {
+       dobin "${PN}"
+       dodoc README HOWTO rate.awk rate2.awk
+}