blob: 914358e5acce166d02b56c277e344417a529c830 (
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
59
60
61
62
63
64
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/prelude-manager/prelude-manager-0.9.15.ebuild,v 1.4 2009/10/03 19:23:14 halcy0n Exp $
inherit flag-o-matic eutils autotools
DESCRIPTION="Prelude-IDS Manager"
HOMEPAGE="http://www.prelude-ids.org/"
SRC_URI="http://www.prelude-ids.org/download/releases/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="debug xml dbx tcpwrapper"
RDEPEND="!dev-libs/libprelude-cvs
!app-admin/prelude-manager-cvs
>=dev-libs/libprelude-0.9.5
net-libs/gnutls
xml? ( dev-libs/libxml2 )
dbx? ( dev-libs/libpreludedb )
tcpwrapper? ( sys-apps/tcp-wrappers )"
DEPEND="${RDEPEND}
>=sys-apps/sed-4
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/prelude-manager-0.9.15-use-pkg-config.patch
eautoreconf
}
src_compile() {
local myconf
use debug && append-flags -O -ggdb
use !xml && myconf="${myconf} --disable-xmltest --enable-xmlmod"
use dbx && myconf="${myconf} --enable-libpreludedb"
use tcpwrapper && myconf="${myconf} --enable-libwrap"
myconf="${myconf} --localstatedir=/var"
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
newinitd "${FILESDIR}"/gentoo.init prelude-manager
newconfd "${FILESDIR}"/gentoo.conf prelude-manager
dodir /var/run/prelude-manager
keepdir /var/spool/prelude-manager
keepdir /var/run/prelude-manager
}
pkg_postinst() {
elog "If you use it with mysql backend, take a look at mysql update files"
elog "at ${ROOT}/usr/share/libpreludedb/classic"
}
|