blob: 4db23bd729b194fbb3e7d52111a61de511d90aef (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ntp/ntp-4.1.1a.ebuild,v 1.10 2002/12/15 10:44:21 bjb Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Network Time Protocol suite/programs"
SRC_URI="http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${P}.tar.gz"
HOMEPAGE="http://www.ntp.org/"
LICENSE="as-is"
KEYWORDS="x86 ppc sparc alpha"
SLOT="0"
DEPEND="virtual/glibc
>=sys-libs/ncurses-5.2
>=sys-libs/readline-4.1"
src_unpack() {
unpack ${A} && cd ${S}
patch -p1 < ${FILESDIR}/ntp-bk.diff
aclocal -I . || die
automake || die
autoconf || die
}
src_compile() {
cp configure configure.orig
sed -e "s:-Wpointer-arith::" configure.orig > configure
# If there is a reason why we need -lncurses in LDFLAGS, please
# read the ChangeLog and contact me, jnelson@gentoo.org
# LDFLAGS="$LDFLAGS -L/lib -lncurses"
./configure --prefix=/usr --mandir=/usr/share/man \
--host=${CHOST} --build=${CHOST} || die
emake || die
}
src_install () {
make prefix=${D}/usr mandir=${D}/usr/share/man install || die
dodoc ChangeLog INSTALL NEWS README TODO WHERE-TO-START
insinto /usr/share/doc/${PF}/html ; doins html/*.htm
insinto /usr/share/doc/${PF}/html/hints ; doins html/hints/*
insinto /usr/share/doc/${PF}/html/pic ; doins html/pic/*
insinto /usr/share/ntp ; doins scripts/*
exeinto /etc/init.d ; newexe ${FILESDIR}/ntpd.rc6 ntpd
insinto /etc/conf.d ; newins ${FILESDIR}/ntpd.confd ntpd
}
|