diff options
author | 2010-04-21 13:48:44 +0000 | |
---|---|---|
committer | 2010-04-21 13:48:44 +0000 | |
commit | b29927fe3813ebd74b7762ee248da63dcf4d6ac5 (patch) | |
tree | 2b8484eda5da2a08e821423e8cdef77efeb7faa0 /net-analyzer/labrea | |
parent | Yet-another-minor-fix, reported by xake at rymdraket.net (diff) | |
download | gentoo-2-b29927fe3813ebd74b7762ee248da63dcf4d6ac5.tar.gz gentoo-2-b29927fe3813ebd74b7762ee248da63dcf4d6ac5.tar.bz2 gentoo-2-b29927fe3813ebd74b7762ee248da63dcf4d6ac5.zip |
revision bump to fix compilation issue and some ebuild clean-up for bug 277256 by Andrew Savchenko <bircoph AT gmail DOT com>
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'net-analyzer/labrea')
-rw-r--r-- | net-analyzer/labrea/ChangeLog | 11 | ||||
-rw-r--r-- | net-analyzer/labrea/files/labrea-2.5-stable-1-incdir.patch | 11 | ||||
-rw-r--r-- | net-analyzer/labrea/labrea-2.5-r1.ebuild | 45 |
3 files changed, 65 insertions, 2 deletions
diff --git a/net-analyzer/labrea/ChangeLog b/net-analyzer/labrea/ChangeLog index 7622860d4996..164c2005dcd0 100644 --- a/net-analyzer/labrea/ChangeLog +++ b/net-analyzer/labrea/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-analyzer/labrea -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/labrea/ChangeLog,v 1.8 2007/07/02 14:37:38 peper Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/labrea/ChangeLog,v 1.9 2010/04/21 13:48:44 fauli Exp $ + +*labrea-2.5-r1 (21 Apr 2010) + + 21 Apr 2010; Christian Faulhammer <fauli@gentoo.org> + +labrea-2.5-r1.ebuild, +files/labrea-2.5-stable-1-incdir.patch: + revision bump to fix compilation issue and some ebuild clean-up for bug + 277256 by Andrew Savchenko <bircoph AT gmail DOT com> 02 Jul 2007; Piotr Jaroszyński <peper@gentoo.org> labrea-2.5.ebuild: (QA) RESTRICT clean up. diff --git a/net-analyzer/labrea/files/labrea-2.5-stable-1-incdir.patch b/net-analyzer/labrea/files/labrea-2.5-stable-1-incdir.patch new file mode 100644 index 000000000000..0961a37f159a --- /dev/null +++ b/net-analyzer/labrea/files/labrea-2.5-stable-1-incdir.patch @@ -0,0 +1,11 @@ +--- labrea-2.5-stable-1/src/Makefile.am.orig 2003-01-09 21:13:19.000000000 +0300 ++++ labrea-2.5-stable-1/src/Makefile.am 2009-12-11 21:52:38.334383268 +0300 +@@ -2,7 +2,7 @@ + ## + ## $Id: labrea-2.5-stable-1-incdir.patch,v 1.1 2010/04/21 13:48:44 fauli Exp $ + +-AM_CPPFLAGS = -I../inc -I- @DNETINC@ @PCAPINC@ ++AM_CPPFLAGS = -iquote../inc @DNETINC@ @PCAPINC@ -idirafter/usr/include/asm + + sbin_PROGRAMS = labrea + diff --git a/net-analyzer/labrea/labrea-2.5-r1.ebuild b/net-analyzer/labrea/labrea-2.5-r1.ebuild new file mode 100644 index 000000000000..874cfe6abc5b --- /dev/null +++ b/net-analyzer/labrea/labrea-2.5-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/labrea/labrea-2.5-r1.ebuild,v 1.1 2010/04/21 13:48:44 fauli Exp $ + +EAPI=2 + +inherit autotools + +DESCRIPTION="'Sticky' Honeypot and IDS" +HOMEPAGE="http://labrea.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}-stable-1.tar.gz" +RESTRICT="mirror" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="" +DEPEND="net-libs/libpcap + >=dev-libs/libdnet-1.7" + +MY_P="${P}-stable-1" +S=${WORKDIR}/${MY_P} + +src_prepare() { + epatch "${FILESDIR}/${P}-stable-1-incdir.patch" + eautoreconf +} + +src_configure() { + econf || die +} + +src_install() { + einstall || die + dodoc AUTHORS ChangeLog README TODO NEWS + newdoc INSTALL README.first +} + +pkg_postinst() { + + ewarn CAUTION: + ewarn Before using this package READ the INSTALL and README! + ewarn as the author states that it can cause serious problems on your network. + +} |