blob: 5cff36549a4219f15e8a6ea480c79a41eb45d1a8 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpreludedb/libpreludedb-0.9.11.1.ebuild,v 1.3 2007/03/03 23:02:09 genone Exp $
inherit flag-o-matic eutils
DESCRIPTION="Prelude-IDS framework for easy access to the Prelude database"
HOMEPAGE="http://www.prelude-ids.org/"
SRC_URI="http://www.prelude-ids.org/download/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc mysql postgres perl python sqlite3 swig"
DEPEND="virtual/libc
>=dev-libs/libprelude-0.9.10
doc? ( dev-util/gtk-doc )
mysql? ( virtual/mysql )
postgres? ( dev-db/postgresql )
sqlite3? ( =dev-db/sqlite-3* )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-makefile.patch
}
src_compile() {
local myconf
econf \
$(use_with doc gtk-doc) \
$(use_with mysql) \
$(use_with postgres pgsql) \
$(use_with sqlite3) \
$(use_with perl) \
$(use_with swig) \
$(use_with python) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
}
pkg_postinst() {
elog "For additional installation instructions go to"
elog "https://trac.prelude-ids.org/wiki/InstallingLibpreludedb"
}
|