| 1 |
# Copyright 1999-2009 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-apps/clrngd/clrngd-1.0.3.ebuild,v 1.7 2007/04/21 23:03:54 robbat2 Exp $
|
| 4 |
|
| 5 |
DESCRIPTION="Clock randomness gathering daemon"
|
| 6 |
HOMEPAGE="http://echelon.pl/pubs/"
|
| 7 |
SRC_URI="http://echelon.pl/pubs/${P}.tar.gz"
|
| 8 |
|
| 9 |
LICENSE="GPL-2"
|
| 10 |
SLOT="0"
|
| 11 |
KEYWORDS="amd64 x86"
|
| 12 |
IUSE=""
|
| 13 |
|
| 14 |
DEPEND="sys-devel/gcc"
|
| 15 |
RDEPEND=""
|
| 16 |
|
| 17 |
src_compile() {
|
| 18 |
econf --bindir=/usr/sbin || die
|
| 19 |
emake || die
|
| 20 |
}
|
| 21 |
|
| 22 |
src_install() {
|
| 23 |
make DESTDIR=${D} install || die "make install failed"
|
| 24 |
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
|
| 25 |
newinitd ${FILESDIR}/clrngd-init.d clrngd
|
| 26 |
newconfd ${FILESDIR}/clrngd-conf.d clrngd
|
| 27 |
}
|