blob: 5fa7138a787ef63afea1bcc4b4696cc11d6180b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/egads/egads-0.9.5.ebuild,v 1.10 2009/09/23 16:02:21 patrick Exp $
inherit multilib
DESCRIPTION="Entropy Gathering And Distribution System"
HOMEPAGE="http://www.securesoftware.com/download_${PN}.htm"
SRC_URI="http://www.securesoftware.com/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~ppc x86 ~amd64"
IUSE=""
DEPEND=""
egadsdatadir=/var/run/egads
src_unpack() {
unpack ${A}
sed -i \
-e '/^BINDIR/d' \
-e '/^LIBDIR/d' \
-e '/^INCLUDEDIR/d' \
"${S}"/Makefile.in || die "Failed to fix Makefile.in"
}
src_compile() {
econf \
--with-egads-datadir="${egadsdatadir}" \
--with-bindir=/usr/sbin \
|| die
emake LIBDIR="/usr/$(get_libdir)" || die
}
src_install() {
keepdir ${egadsdatadir}
fperms +t ${egadsdatadir}
# NOT parallel safe, and no DESTDIR support
emake -j1 install \
BINDIR="${D}"/usr/sbin \
LIBDIR="${D}"/usr/$(get_libdir) \
INCLUDEDIR="${D}"/usr/include \
|| die
dodoc README* doc/*.txt
dohtml doc/*.html
}
|