summaryrefslogtreecommitdiff
blob: e7ab643c71ccff3a50eaae354e1f68f0666653ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ntpclient/ntpclient-2010.365.ebuild,v 1.1 2012/06/02 15:17:16 jer Exp $

EAPI=4
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"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE=""

#S="${WORKDIR}/${PN}-2010"

src_unpack() {
	default
	mv "${WORKDIR}"/${PN}* ${P} || die
}

src_prepare() {
	sed -i -e 's/-O2//;s/LDFLAGS +=/LDLIBS +=/' Makefile || die
	tc-export CC
}

src_install() {
	dobin ntpclient
	dodoc README HOWTO rate.awk rate2.awk
}