diff options
author | Hanno Böck <hanno@gentoo.org> | 2003-07-26 11:24:30 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2003-07-26 11:24:30 +0000 |
commit | 1804ba4025ea9c89b2ba9b00bb4dccf46c2e5196 (patch) | |
tree | 283eb1f6904c6de866b443b38f8fc4ce27d82073 /net-libs/libnids | |
parent | Small fixup of --timeout option (diff) | |
download | gentoo-2-1804ba4025ea9c89b2ba9b00bb4dccf46c2e5196.tar.gz gentoo-2-1804ba4025ea9c89b2ba9b00bb4dccf46c2e5196.tar.bz2 gentoo-2-1804ba4025ea9c89b2ba9b00bb4dccf46c2e5196.zip |
fix gcc-3.3-problems in libnids
Diffstat (limited to 'net-libs/libnids')
-rw-r--r-- | net-libs/libnids/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/libnids/Manifest | 5 | ||||
-rw-r--r-- | net-libs/libnids/files/libnids_gcc33_fix.gz | bin | 0 -> 1181 bytes | |||
-rw-r--r-- | net-libs/libnids/libnids-1.16.ebuild | 9 |
4 files changed, 15 insertions, 5 deletions
diff --git a/net-libs/libnids/ChangeLog b/net-libs/libnids/ChangeLog index 0861d83eaca2..0a3103395cf0 100644 --- a/net-libs/libnids/ChangeLog +++ b/net-libs/libnids/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/libnids # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v 1.6 2003/07/23 15:42:12 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/ChangeLog,v 1.7 2003/07/26 11:24:18 hanno Exp $ + + 26 Jul 2003; Hanno Boeck <hanno@gentoo.org> libnids-1.16.ebuild, + files/libnids_gcc33_fix.gz: + Fix compile errors with gcc 3.3. 23 Jul 2003; Tavis Ormandy <taviso@gentoo.org> libnids-1.16.ebuild: marking ~alpha diff --git a/net-libs/libnids/Manifest b/net-libs/libnids/Manifest index 236cc48afec6..af40a9001e24 100644 --- a/net-libs/libnids/Manifest +++ b/net-libs/libnids/Manifest @@ -1,3 +1,4 @@ -MD5 884f1ec18f894b7411bdf95b111b75ef libnids-1.16.ebuild 880 -MD5 6e8849585d7f8639ee148028bedd27ac ChangeLog 963 +MD5 e57ae303970eb9d8101b4e3b1fbe584a ChangeLog 1095 +MD5 f34490257d1dd67bba0ed258b077ebf5 libnids-1.16.ebuild 983 MD5 e62f7085ef37a208a914cbe30524e74b files/digest-libnids-1.16 63 +MD5 071001548c5f912faf9da3fa07870ba1 files/libnids_gcc33_fix.gz 1181 diff --git a/net-libs/libnids/files/libnids_gcc33_fix.gz b/net-libs/libnids/files/libnids_gcc33_fix.gz Binary files differnew file mode 100644 index 000000000000..b0b368015eed --- /dev/null +++ b/net-libs/libnids/files/libnids_gcc33_fix.gz diff --git a/net-libs/libnids/libnids-1.16.ebuild b/net-libs/libnids/libnids-1.16.ebuild index 0caf0ec5bf81..85b836386f3f 100644 --- a/net-libs/libnids/libnids-1.16.ebuild +++ b/net-libs/libnids/libnids-1.16.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/libnids-1.16.ebuild,v 1.10 2003/07/23 15:42:12 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnids/libnids-1.16.ebuild,v 1.11 2003/07/26 11:24:18 hanno Exp $ S=${WORKDIR}/${P} DESCRIPTION="Libnids is an implementation of an E-component of Network Intrusion Detection System. It emulates the IP stack of Linux 2.0.x. Libnids offers IP defragmentation, TCP stream assembly and TCP port scan detection." @@ -14,8 +14,13 @@ SLOT="0" LICENSE="LGPL-2.1" KEYWORDS="x86 sparc ~alpha" +src_unpack () { + unpack ${A} + cd ${S} + zcat ${FILESDIR}/libnids_gcc33_fix.gz | patch -p1 +} + src_compile() { - econf || die make || die } |