--- chrony-1.19.ebuild.org 2003-10-06 23:01:17.000000000 +0200 +++ chrony-1.19.ebuild 2003-10-06 23:12:31.000000000 +0200 @@ -21,10 +21,21 @@ epatch ${FILESDIR}/${P}-conf.c-gentoo.diff epatch ${FILESDIR}/${P}-chrony.conf.example-gentoo.diff + + sed -i 's/Linux-ppc\* /&| Linux-sparc\* /' configure } src_compile() { - econf `use_enable readline` || die +# econf `use_enable readline` || die + + local myconf + + myconf="--prefix=/usr" + + use readline || myconf="${myconf} --disable-readline" + + ./configure ${myconf} || die "./configure failed" + emake all docs || die }