summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2012-04-13 13:21:57 +0000
committerJeremy Olexa <darkside@gentoo.org>2012-04-13 13:21:57 +0000
commit88e93fb1b97505b856e731d87b4520cf7c26bee8 (patch)
tree54c37ebbdba1fdd742e821b9071317f6c221d277 /sys-apps/haveged
parentVersion bump. Bug #410543 (diff)
downloadgentoo-2-88e93fb1b97505b856e731d87b4520cf7c26bee8.tar.gz
gentoo-2-88e93fb1b97505b856e731d87b4520cf7c26bee8.tar.bz2
gentoo-2-88e93fb1b97505b856e731d87b4520cf7c26bee8.zip
Version bump, minimal changes for end user (diagnostic and experimental features added)
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/haveged')
-rw-r--r--sys-apps/haveged/ChangeLog8
-rw-r--r--sys-apps/haveged/haveged-1.4.ebuild31
2 files changed, 38 insertions, 1 deletions
diff --git a/sys-apps/haveged/ChangeLog b/sys-apps/haveged/ChangeLog
index e3ac46edcd2a..3f9553549276 100644
--- a/sys-apps/haveged/ChangeLog
+++ b/sys-apps/haveged/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/haveged
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/ChangeLog,v 1.12 2012/02/10 13:00:11 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/ChangeLog,v 1.13 2012/04/13 13:21:57 darkside Exp $
+
+*haveged-1.4 (13 Apr 2012)
+
+ 13 Apr 2012; Jeremy Olexa <darkside@gentoo.org> +haveged-1.4.ebuild:
+ Version bump, minimal changes for end user (diagnostic and experimental
+ features added)
10 Feb 2012; Thomas Kahle <tomka@gentoo.org> haveged-1.2.ebuild:
marked x86 per bug 390087
diff --git a/sys-apps/haveged/haveged-1.4.ebuild b/sys-apps/haveged/haveged-1.4.ebuild
new file mode 100644
index 000000000000..f1ee5f7b3305
--- /dev/null
+++ b/sys-apps/haveged/haveged-1.4.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/haveged-1.4.ebuild,v 1.1 2012/04/13 13:21:57 darkside Exp $
+
+EAPI=4
+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-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-devel/gcc"
+RDEPEND="sys-apps/openrc"
+
+S="${WORKDIR}/${P/3a/3}"
+
+src_configure() {
+ econf --bindir=/usr/sbin --enable-nistest
+}
+
+src_install() {
+ default
+ # This is a RedHat init script
+ rm -rf "${D}"/etc/init.d/haveged
+ # Install gentoo ones instead
+ newinitd "${FILESDIR}"/haveged-init.d.2 haveged
+ newconfd "${FILESDIR}"/haveged-conf.d haveged
+}