diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2013-01-06 17:50:44 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2013-01-06 17:50:44 +0000 |
commit | 1b2270dcce8603ae5fb47dabc3bc141bb3973683 (patch) | |
tree | ab9252f5d0c265ce9a62b55f0523894993342e28 /sys-apps/haveged | |
parent | Version bump #450566 by Agostino Sarubbo. (diff) | |
download | gentoo-2-1b2270dcce8603ae5fb47dabc3bc141bb3973683.tar.gz gentoo-2-1b2270dcce8603ae5fb47dabc3bc141bb3973683.tar.bz2 gentoo-2-1b2270dcce8603ae5fb47dabc3bc141bb3973683.zip |
Version bump.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
Diffstat (limited to 'sys-apps/haveged')
-rw-r--r-- | sys-apps/haveged/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/haveged/haveged-1.6.ebuild | 33 |
2 files changed, 40 insertions, 2 deletions
diff --git a/sys-apps/haveged/ChangeLog b/sys-apps/haveged/ChangeLog index 1ac98dca6138..a0614d06e3eb 100644 --- a/sys-apps/haveged/ChangeLog +++ b/sys-apps/haveged/ChangeLog @@ -1,6 +1,11 @@ # 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.23 2012/12/28 12:54:40 flameeyes Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/ChangeLog,v 1.24 2013/01/06 17:50:44 flameeyes Exp $ + +*haveged-1.6 (06 Jan 2013) + + 06 Jan 2013; Diego E. Pettenò <flameeyes@gentoo.org> +haveged-1.6.ebuild: + Version bump. 28 Dec 2012; Diego E. Pettenò <flameeyes@gentoo.org> -haveged-1.4.ebuild, files/haveged-init.d.2: diff --git a/sys-apps/haveged/haveged-1.6.ebuild b/sys-apps/haveged/haveged-1.6.ebuild new file mode 100644 index 000000000000..739b50681d64 --- /dev/null +++ b/sys-apps/haveged/haveged-1.6.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/haveged/haveged-1.6.ebuild,v 1.1 2013/01/06 17:50:44 flameeyes 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" + +src_configure() { + econf --bindir=/usr/sbin --enable-nistest +} + +src_test() { + emake check +} + +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 +} |