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/app-admin/ulogd/ulogd-1.23-r1.ebuild

69 lines
1.6 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/ulogd-1.23-r1.ebuild,v 1.10 2013/03/21 09:07:11 pinkbyte Exp $
inherit eutils flag-o-matic
DESCRIPTION="iptables daemon for ULOG target for userspace iptables filter logging"
SRC_URI="http://ftp.netfilter.org/pub/ulogd/${P}.tar.bz2
mirror://gentoo/${PN}-glsa-200701.patch.bz2"
HOMEPAGE="http://www.gnumonks.org/gnumonks/projects/project_details?p_id=1"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc -sparc x86"
IUSE="mysql postgres"
DEPEND="net-firewall/iptables
mysql? ( virtual/mysql )
postgres? ( dev-db/postgresql-server )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-gcc41.patch"
EPATCH_OPTS="-F3" \
epatch "${WORKDIR}/${PN}-glsa-200701.patch"
# bug #285376
epatch "${FILESDIR}/${P}-fix-include-in-libipulog-Makefile.patch"
}
src_compile() {
# enables logfiles over 2G (#74924)
append-lfs-flags
econf \
`use_with mysql` \
`use_with postgres pgsql` \
|| die "configure failed"
# not parallel make safe: bug #128976
emake -j1 || die "make failed"
}
src_install() {
# the Makefile seems to be "broken" -
# it relies on the existance of /usr, /etc ..
dodir /usr/sbin
make DESTDIR="${D}" install || die "install failed"
newinitd "${FILESDIR}"/ulogd-0.98 ulogd
dodoc README AUTHORS Changes
cd doc/
dodoc ulogd.txt ulogd.a4.ps
if use mysql; then
dodoc mysql.table mysql.table.ipaddr-as-string
fi
if use postgres; then
dodoc pgsql.table
fi
dohtml ulogd.html
}