# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=2 DESCRIPTION="A simple entropy daemon" HOMEPAGE="http://www.issihosts.com/haveged/" SRC_URI="http://www.issihosts.com/haveged/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" IUSE="" src_configure(){ econf } src_compile() { emake || die "make failed!" } src_install() { exeinto /usr/sbin doexe src/haveged newconfd "${FILESDIR}"/haveged.conf haveged newinitd "${FILESDIR}"/haveged.init haveged dodoc AUTHORS README } pkg_postinst() { elog "To start haveged:" elog "# /etc/init.d/uptimed start" elog elog "To start haveged at boot:" elog "# rc-update add haveged default" }