blob: 2225fc06465a1bebc25155d1d99cc566d865c689 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/audio-entropyd/audio-entropyd-0.0.6.ebuild,v 1.12 2005/08/24 16:43:13 flameeyes Exp $
DESCRIPTION="Audio-entropyd generates entropy-data for the /dev/random device."
HOMEPAGE="http://www.vanheusden.com/aed/"
SRC_URI="http://www.vanheusden.com/aed/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~amd64 ~sparc"
IUSE="selinux"
DEPEND="virtual/libc"
RDEPEND="${DEPEND}
>=sys-apps/sed-4
!amd64? ( selinux? ( sec-policy/selinux-audio-entropyd ) )"
src_unpack() {
unpack ${A}
cd ${S}
sed -i.orig \
-e "s:^OPT_FLAGS=.*:OPT_FLAGS=$CFLAGS:" \
Makefile
}
src_compile() {
emake || die "emake failed"
}
src_install() {
dosbin audio-entropyd
newinitd ${FILESDIR}/${PN}.init ${PN}
newconfd ${FILESDIR}/${PN}.conf ${PN}
}
|