You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libpreludedb/libpreludedb-0.9.2.ebuild

43 lines
1.4 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpreludedb/libpreludedb-0.9.2.ebuild,v 1.13 2011/07/26 07:47:04 xarthisius Exp $
inherit flag-o-matic
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 ~x86"
IUSE="doc mysql postgres perl python"
DEPEND=">=dev-libs/libprelude-0.9.0
doc? ( dev-util/gtk-doc )
mysql? ( virtual/mysql )
postgres? ( dev-db/postgresql-server )"
src_compile() {
local myconf
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"
}
pkg_postinst() {
elog "For additional installation instructions go to"
elog "https://trac.prelude-ids.org/wiki/InstallingLibpreludedb"
}