# Copyright 1999-2003 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.5-r1.ebuild,v 1.2 2003/09/06 22:29:24 msterret 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" IUSE="ssl doc" DEPEND="virtual/glibc !dev-libs/libprelude-cvs ssl? ( dev-libs/openssl ) doc? ( dev-util/gtk-doc )" RDEPEND="${DEPEND}" S=${WORKDIR}/${P} src_compile() { local myconf export WANT_AUTOCONF_2_5="1" export WANT_AUTOMAKE_1_6="1" use ssl && myconf="${myconf} --enable-openssl" || myconf="${myconf} --enable-openssl=no" use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --enable-gtk-doc=no" aclocal -I /usr/share/aclocal autoconf autoheader libtoolize -c --force --ltdl --automake automake --gnu -a -c cd libltdl mv configure.in configure.in.tmp echo "AC_PREREQ(2.50)" > configure.in cat configure.in.tmp >> configure.in rm -f configure.in.tmp aclocal -I /usr/share/aclocal autoconf autoheader libtoolize -c --force --ltdl --automake automake --gnu -a -c cd .. econf ${myconf} || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die "make install failed" }