# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/ulogd-1.01.ebuild,v 1.5 2003/10/24 09:26:13 aliz Exp $ DESCRIPTION="iptables daemon for ULOG target for userspace iptables filter logging" SRC_URI="http://ftp.netfilter.org/pub/ulogd/${P}.tar.bz2" HOMEPAGE="http://www.gnumonks.org/gnumonks/projects/project_details?p_id=1" SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ~ppc ~sparc" IUSE="mysql" DEPEND="net-firewall/iptables" MAKEOPTS="${MAKEOPTS} -j1" src_compile() { econf `use_with mysql` || die "configure failed" emake || die "make failed" } src_install() { # the Makefile seems to be "broken" - # it relies on the existance of /usr, /etc .. dodir /usr/sbin /etc/init.d make DESTDIR=${D} install || die "install failed" cp ${FILESDIR}/ulogd-0.98 ${D}/etc/init.d/ulogd dodoc README AUTHORS Changes cd doc/ dodoc ulogd.txt ulogd.a4.ps if [ -n "`use mysql`" ]; then dodoc mysql.table mysql.table.ipaddr-as-string fi dohtml ulogd.html }