36 lines
956 B
Bash
36 lines
956 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/rng-tools/rng-tools-4-r7.ebuild,v 1.7 2014/11/11 10:46:06 ago Exp $
|
|
|
|
EAPI="5"
|
|
|
|
inherit eutils autotools systemd toolchain-funcs
|
|
|
|
DESCRIPTION="Daemon to use hardware random number generators"
|
|
HOMEPAGE="http://gkernel.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/gkernel/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 ia64 ppc x86"
|
|
IUSE="selinux"
|
|
|
|
RDEPEND="selinux? ( sec-policy/selinux-rngd )"
|
|
DEPEND=""
|
|
|
|
src_prepare() {
|
|
echo 'bin_PROGRAMS = randstat' >> contrib/Makefile.am
|
|
epatch "${FILESDIR}"/test-for-argp.patch
|
|
epatch "${FILESDIR}"/fix-textrels-on-PIC-x86.patch
|
|
eautoreconf
|
|
|
|
sed -i '/^AR /d' Makefile.in
|
|
tc-export AR
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
newinitd "${FILESDIR}"/rngd-initd-4.1 rngd
|
|
newconfd "${FILESDIR}"/rngd-confd-4.1 rngd
|
|
systemd_dounit "${FILESDIR}"/rngd.service
|
|
}
|