blob: b3262feccc5cdaa85d6ed2d44607caf4433b8da2 (
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
|
# Copyright 1999-2004 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.11 2004/07/04 09:48:26 eradicator 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
insinto /etc/init.d
insopts -m0755
newins ${FILESDIR}/${PN}.init ${PN}
insinto /etc/conf.d
newins ${FILESDIR}/${PN}.conf ${PN}
}
|