sys-apps/haveged: bump 1.9.2 to EAPI=6
authorAnthony G. Basile <blueness@gentoo.org>
Sat, 31 Mar 2018 14:27:58 +0000 (10:27 -0400)
committerAnthony G. Basile <blueness@gentoo.org>
Sat, 31 Mar 2018 14:28:15 +0000 (10:28 -0400)
Package-Manager: Portage-2.3.24, Repoman-2.3.6

sys-apps/haveged/haveged-1.9.2-r1.ebuild [new file with mode: 0644]

diff --git a/sys-apps/haveged/haveged-1.9.2-r1.ebuild b/sys-apps/haveged/haveged-1.9.2-r1.ebuild
new file mode 100644 (file)
index 0000000..8b3a597
--- /dev/null
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit systemd
+
+DESCRIPTION="A simple entropy daemon using the HAVEGE algorithm"
+HOMEPAGE="http://www.issihosts.com/haveged/"
+SRC_URI="http://www.issihosts.com/haveged/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+IUSE="selinux"
+
+DEPEND=""
+RDEPEND="!<sys-apps/openrc-0.11.8
+                selinux? ( sec-policy/selinux-entropyd )"
+
+# threads are broken right now, but eventually
+# we should add $(use_enable threads)
+src_configure() {
+       econf \
+               --bindir=/usr/sbin \
+               --enable-nistest \
+               --disable-static \
+               --disable-threads
+}
+
+src_install() {
+       default
+
+       # Install gentoo ones instead
+       newinitd "${FILESDIR}"/haveged-init.d.3 haveged
+       newconfd "${FILESDIR}"/haveged-conf.d haveged
+
+       systemd_newunit "${FILESDIR}"/service.gentoo ${PN}.service
+       insinto /etc
+       doins "${FILESDIR}"/haveged.conf
+}