blob: a9ea66c6d29a89a9f670e81ccca58fbe0efbc030 (
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
49
50
51
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/aide-0.8.ebuild,v 1.12 2002/10/05 05:39:04 drobbins Exp $
IUSE="nls postgres"
S=${WORKDIR}/${P}
DESCRIPTION="AIDE (Advanced Intrusion Detection Environment) is a free replacement for Tripwire"
HOMEPAGE="http://www.cs.tut.fi/~rammer/aide.html"
SRC_URI="http://www.cs.tut.fi/~rammer/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc sparc64"
DEPEND="sys-apps/gzip
sys-devel/bison
sys-devel/flex
dev-libs/libgcrypt
app-crypt/mhash
postgres? ( dev-db/postgresql )"
RDEPEND=""
src_compile() {
local myconf
use postgres && myconf="${myconf} --with-psql"
use nls && myconf="${myconf} --with-locale"
econf \
--with-zlib \
--sysconfdir=/etc/aide \
--with-mhash \
--with-extra-lib=/usr/lib \
${myconf} || die
emake || die
}
src_install() {
make prefix=${D}/usr mandir=${D}/usr/share/man install || die
dodir /etc/aide
cp doc/aide.conf ${D}/etc/aide
dodoc AUTHORS COPYING INSTALL NEWS README
dohtml doc/manual.html
}
|