diff options
author | Jonathan Smith <smithj@gentoo.org> | 2006-03-08 19:34:02 +0000 |
---|---|---|
committer | Jonathan Smith <smithj@gentoo.org> | 2006-03-08 19:34:02 +0000 |
commit | 3f8667c5937618bbfbae53142938b58654d84c89 (patch) | |
tree | 41f9243b2713c6ef5a1f50d47e1a49ad27302a2d /app-admin/ulogd | |
parent | Added a patch written by me that enables the use of compiled vertex arrays (diff) | |
download | gentoo-2-3f8667c5937618bbfbae53142938b58654d84c89.tar.gz gentoo-2-3f8667c5937618bbfbae53142938b58654d84c89.tar.bz2 gentoo-2-3f8667c5937618bbfbae53142938b58654d84c89.zip |
#107862: version bump
(Portage version: 2.1_pre5-r4)
Diffstat (limited to 'app-admin/ulogd')
-rw-r--r-- | app-admin/ulogd/ChangeLog | 9 | ||||
-rw-r--r-- | app-admin/ulogd/files/digest-ulogd-1.23 | 3 | ||||
-rw-r--r-- | app-admin/ulogd/ulogd-1.23.ebuild | 54 |
3 files changed, 64 insertions, 2 deletions
diff --git a/app-admin/ulogd/ChangeLog b/app-admin/ulogd/ChangeLog index 723a867e13c2..cc9c03f8f7bb 100644 --- a/app-admin/ulogd/ChangeLog +++ b/app-admin/ulogd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/ulogd -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/ChangeLog,v 1.30 2005/10/01 02:42:27 vivo Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/ChangeLog,v 1.31 2006/03/08 19:34:02 smithj Exp $ + +*ulogd-1.23 (08 Mar 2006) + + 08 Mar 2006; <smithj@gentoo.org> +ulogd-1.23.ebuild: + #107862: version bump 01 Oct 2005; Francesco Riosa <vivo@gentoo.org> files/ulogd-0.98: fix Bug #97937 diff --git a/app-admin/ulogd/files/digest-ulogd-1.23 b/app-admin/ulogd/files/digest-ulogd-1.23 new file mode 100644 index 000000000000..2474aa99cecb --- /dev/null +++ b/app-admin/ulogd/files/digest-ulogd-1.23 @@ -0,0 +1,3 @@ +MD5 fa3dfcaacf31855626d5b731b04a077f ulogd-1.23.tar.bz2 143608 +RMD160 c4b95caeffab03afa192d165e4b6432b348537c6 ulogd-1.23.tar.bz2 143608 +SHA256 78fda62a39e5ebccbd3277d723eb0a0087a6972c6350d987e454f8fa17546341 ulogd-1.23.tar.bz2 143608 diff --git a/app-admin/ulogd/ulogd-1.23.ebuild b/app-admin/ulogd/ulogd-1.23.ebuild new file mode 100644 index 000000000000..1a44b34e4746 --- /dev/null +++ b/app-admin/ulogd/ulogd-1.23.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/ulogd/ulogd-1.23.ebuild,v 1.1 2006/03/08 19:34:02 smithj Exp $ + +inherit 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" +HOMEPAGE="http://www.gnumonks.org/gnumonks/projects/project_details?p_id=1" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~amd64 -sparc" +IUSE="mysql postgres" + +DEPEND="net-firewall/iptables + mysql? ( dev-db/mysql ) + postgres? ( dev-db/postgresql )" + +src_compile() { + # enables logfiles over 2G (#74924) + append-flags -D_FILE_OFFSET_BITS=64 + + econf \ + `use_with mysql` \ + `use_with postgres pgsql` \ + || die "configure failed" + make || 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" + + exeinto /etc/init.d/ + newexe ${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 +} |