# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libprelude/libprelude-0.8.10.ebuild,v 1.7 2004/03/08 20:51:27 avenj Exp $ DESCRIPTION="Prelude-IDS Framework Library" HOMEPAGE="http://www.prelude-ids.org/" SRC_URI="http://www.prelude-ids.org/download/releases/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc sparc alpha ia64 amd64" IUSE="ssl doc debug" DEPEND="virtual/glibc ssl? ( dev-libs/openssl ) doc? ( dev-util/gtk-doc )" src_compile() { local myconf use ssl && myconf="${myconf} --enable-openssl" || myconf="${myconf} --enable-openssl=no" use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --enable-gtk-doc=no" use debug && CFLAGS="$CFLAGS -O0 -ggdb" econf ${myconf} || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die "make install failed" }