blob: f712bcc1159e128a244fe1052d4227a6cc9e9aa2 (
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
52
53
54
55
56
57
58
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/aide/aide-0.9.ebuild,v 1.18 2004/06/24 21:22:23 agriffis Exp $
inherit eutils
DESCRIPTION="AIDE (Advanced Intrusion Detection Environment) is a replacement for Tripwire"
HOMEPAGE="http://aide.sourceforge.net/"
SRC_URI="mirror://sourceforge/aide/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha"
IUSE="nls postgres zlib crypt"
DEPEND="app-arch/gzip
sys-devel/bison
sys-devel/flex
app-crypt/mhash
crypt? ( dev-libs/libgcrypt )
postgres? ( dev-db/postgresql )
zlib? ( sys-libs/zlib )"
RDEPEND=""
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PF}-gentoo.diff
}
src_compile() {
# passing --without-psql or --with-psql causes postgres to be enabled ...
# it's a broken configure.in file ... so lets just work around it
local myconf=""
use postgres && myconf="$myconf --with-psql"
use crypt && myconf="$myconf --with-gcrypt"
econf \
`use_with zlib` \
`use_with nls locale` \
--with-mhash \
--sysconfdir=/etc/aide \
--with-extra-lib=/usr/lib \
${myconf} \
|| die
emake || die
}
src_install() {
einstall || die
use nls || rm -rf ${D}/usr/lib/locale
insinto /etc/aide
doins doc/aide.conf
dodoc AUTHORS NEWS README
dohtml doc/manual.html
}
|