# Author Alexander Gretncord S=${WORKDIR}/${P} DESCRIPTION="NTP Client with dialup features" SRC_URI="ftp://chrony.sunsite.dk/projects/chrony/${P}.tar.gz" HOMEPAGE="http://chrony.sunsite.dk/index.php" DEPEND="virtual/glibc" RDEPEND="virtual/glibc" src_compile() { patch -p0 < ${FILESDIR}/${PF}-gentoo.diff || die "can't apply patch" local myconf use readline || myconf="--disable-readline" ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info ${myconf} || die "error in configure" emake || die "error in make" } src_install () { make DESTDIR=${D} install || die "error in install" }