blob: d14b5030aed3567221ce9c32303f84faffc75ad3 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/timer_entropyd/timer_entropyd-0.1-r1.ebuild,v 1.3 2010/10/14 15:05:04 phajdan.jr Exp $
EAPI=2
inherit flag-o-matic toolchain-funcs
DESCRIPTION="A timer-based entropy generator"
HOMEPAGE="http://www.vanheusden.com/te/"
SRC_URI="http://www.vanheusden.com/te/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="debug"
src_prepare() {
sed -i -e 's:-O2::' Makefile || die
}
src_compile() {
use debug && append-flags -D_DEBUG
tc-export CC
emake DEBUG= || die
}
src_install() {
exeinto /usr/libexec
doexe ${PN} || die "doexe failed"
dodoc Changes readme.txt || die
newinitd "${FILESDIR}/timer_entropyd.initd" ${PN} || die
}
pkg_postinst() {
elog "To start ${PN} at boot do rc-update add ${PN} default"
elog "To start ${PN} now do /etc/init.d/${PN} start"
elog "To check the amount of entropy, cat /proc/sys/kernel/random/entropy_avail"
}
|