# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Prelude Alert 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" IUSE="ssl doc" DEPEND=" ssl? ( dev-libs/openssl ) doc? ( dev-util/gtk-doc ) " RDEPEND="${DEPEND}" src_compile() { use ssl && myconf="${myconf} --enable-openssl" || myconf="${myconf} --disable-openssl" use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --disable-gtk-doc" econf ${myconf} || die emake || die } src_install() { make DESTDIR=${D} install || die }