diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-03-01 16:24:06 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-03-01 16:24:06 +0000 |
commit | 62167eb799c3ba4f8c6208603794936f1ce78520 (patch) | |
tree | 2d1dd40e8d041d298e540022074aca58cf79f87b /net-libs | |
parent | Bump to 1.4.3, closes #238275 (diff) | |
download | gentoo-2-62167eb799c3ba4f8c6208603794936f1ce78520.tar.gz gentoo-2-62167eb799c3ba4f8c6208603794936f1ce78520.tar.bz2 gentoo-2-62167eb799c3ba4f8c6208603794936f1ce78520.zip |
Bump to 1.23, fixes #241602
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libnids/ChangeLog | 9 | ||||
-rw-r--r-- | net-libs/libnids/libnids-1.23.ebuild | 35 |
2 files changed, 42 insertions, 2 deletions
diff --git a/net-libs/libnids/ChangeLog b/net-libs/libnids/ChangeLog index f5193d9269ea..d87e20a767ae 100644 --- a/net-libs/libnids/ChangeLog +++ b/net-libs/libnids/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/libnids -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v 1.28 2007/09/30 14:35:44 cedk Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v 1.29 2009/03/01 16:24:06 patrick Exp $ + +*libnids-1.23 (01 Mar 2009) + + 01 Mar 2009; Patrick Lauer <patrick@gentoo.org> +libnids-1.23.ebuild: + Bump to 1.23, fixes #241602 *libnids-1.22 (30 Sep 2007) diff --git a/net-libs/libnids/libnids-1.23.ebuild b/net-libs/libnids/libnids-1.23.ebuild new file mode 100644 index 000000000000..9265d4536a19 --- /dev/null +++ b/net-libs/libnids/libnids-1.23.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/libnids-1.23.ebuild,v 1.1 2009/03/01 16:24:06 patrick Exp $ + +inherit eutils + +DESCRIPTION="emulates the IP stack of Linux 2.0.x and offers IP defragmentation, TCP stream assembly and TCP port scan detection." +HOMEPAGE="http://libnids.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="1.2" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="net-libs/libpcap + >=net-libs/libnet-1.1.0-r3" +RDEPEND="${DEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-1.20-chksum.c-ebx.patch +} + +src_compile() { + econf --enable-shared || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake install_prefix="${D}" install || die "emake install failed" + dodoc CHANGES CREDITS MISC README + dodoc doc/* +} |