blob: f3658ab69aad6c5485b268f36af560be5abf5060 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpreludedb/libpreludedb-0.9.0_rc12.ebuild,v 1.1 2005/08/18 20:11:28 ka0ttic Exp $
inherit versionator
MY_P="${PN}-$(replace_version_separator 3 '-')"
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/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~sparc ~x86"
IUSE="debug doc mysql postgres perl python"
DEPEND="virtual/libc
>=dev-libs/libprelude-0.9.0_rc1
doc? ( dev-util/gtk-doc )
mysql? ( dev-db/mysql )
postgres? ( dev-db/postgresql )"
S="${WORKDIR}/${MY_P}"
src_compile() {
local myconf
use debug && append-flags -O -ggdb
use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --enable-gtk-doc=no"
use mysql && myconf="${myconf} --enable-mysql" || myconf="${myconf} --enable-mysql=no"
use postgres && myconf="${myconf} --enable-postgresql" || myconf="${myconf} --enable-postgresql=no"
use perl && myconf="${myconf} --enable-perl" || myconf="${myconf} --enable-perl=no"
use python && myconf="${myconf} --enable-python" || myconf="${myconf} --enable-python=no"
econf ${myconf} || die "econf failed"
emake -j1 || die "emake failed"
# -j1 may not be necessary in the future
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
# prevent file collision
rm ${D}/usr/lib/perl5/5.8.6/i686-linux/perllocal.pod
}
pkg_postinst() {
einfo "For additional installation instructions go to"
einfo "https://trac.prelude-ids.org/wiki/InstallingLibpreludedb"
}
|