Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libnids: libnids-1.23.ebuild ChangeLog
Date: Sun, 01 Mar 2009 16:24:08
Message-Id: E1LdoSU-0003BR-ID@stork.gentoo.org
1 patrick 09/03/01 16:24:06
2
3 Modified: ChangeLog
4 Added: libnids-1.23.ebuild
5 Log:
6 Bump to 1.23, fixes #241602
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.29 net-libs/libnids/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnids/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnids/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnids/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 30 Sep 2007 14:35:44 -0000 1.28
23 +++ ChangeLog 1 Mar 2009 16:24:06 -0000 1.29
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-libs/libnids
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v 1.28 2007/09/30 14:35:44 cedk Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v 1.29 2009/03/01 16:24:06 patrick Exp $
30 +
31 +*libnids-1.23 (01 Mar 2009)
32 +
33 + 01 Mar 2009; Patrick Lauer <patrick@g.o> +libnids-1.23.ebuild:
34 + Bump to 1.23, fixes #241602
35
36 *libnids-1.22 (30 Sep 2007)
37
38
39
40
41 1.1 net-libs/libnids/libnids-1.23.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnids/libnids-1.23.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnids/libnids-1.23.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libnids-1.23.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/libnids-1.23.ebuild,v 1.1 2009/03/01 16:24:06 patrick Exp $
51
52 inherit eutils
53
54 DESCRIPTION="emulates the IP stack of Linux 2.0.x and offers IP defragmentation, TCP stream assembly and TCP port scan detection."
55 HOMEPAGE="http://libnids.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
57
58 LICENSE="LGPL-2.1"
59 SLOT="1.2"
60 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
61 IUSE=""
62
63 DEPEND="net-libs/libpcap
64 >=net-libs/libnet-1.1.0-r3"
65 RDEPEND="${DEPEND}"
66
67 src_unpack() {
68 unpack ${A}
69 cd "${S}"
70 epatch "${FILESDIR}"/${PN}-1.20-chksum.c-ebx.patch
71 }
72
73 src_compile() {
74 econf --enable-shared || die "econf failed"
75 emake || die "emake failed"
76 }
77
78 src_install() {
79 emake install_prefix="${D}" install || die "emake install failed"
80 dodoc CHANGES CREDITS MISC README
81 dodoc doc/*
82 }