diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2005-04-17 20:28:28 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2005-04-17 20:28:28 +0000 |
commit | 43b1877c6adc28068b09ae9b5a13e7315edc26e0 (patch) | |
tree | 45d615b3d8a00919b8e4f42aad938ad6ae6503c0 /net-analyzer | |
parent | Stable on SPARC wrt security bug #89305. (diff) | |
download | gentoo-2-43b1877c6adc28068b09ae9b5a13e7315edc26e0.tar.gz gentoo-2-43b1877c6adc28068b09ae9b5a13e7315edc26e0.tar.bz2 gentoo-2-43b1877c6adc28068b09ae9b5a13e7315edc26e0.zip |
compile fixes
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/quidscor/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/quidscor/Manifest | 2 | ||||
-rw-r--r-- | net-analyzer/quidscor/quidscor-1.2.48.ebuild | 9 |
3 files changed, 13 insertions, 6 deletions
diff --git a/net-analyzer/quidscor/ChangeLog b/net-analyzer/quidscor/ChangeLog index 4ca5a29fef63..284d394aa871 100644 --- a/net-analyzer/quidscor/ChangeLog +++ b/net-analyzer/quidscor/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/quidscor -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/quidscor/ChangeLog,v 1.3 2004/07/10 11:41:29 eldad Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/quidscor/ChangeLog,v 1.4 2005/04/17 20:28:28 vanquirius Exp $ + + 17 Apr 2005; Marcelo Goes <vanquirius@gentoo.org> quidscor-1.2.48.ebuild: + Fix broken sed line, add fix for lacking TRUE and FALSE definitions. Thanks to + soulse for testing. 10 Jul 2004; Eldad Zack <eldad@gentoo.org> +metadata.xml, quidscor-1.2.48.ebuild: diff --git a/net-analyzer/quidscor/Manifest b/net-analyzer/quidscor/Manifest index 28e7cddcd926..7a842aa6ea6d 100644 --- a/net-analyzer/quidscor/Manifest +++ b/net-analyzer/quidscor/Manifest @@ -1,4 +1,4 @@ -MD5 2643f75abfc8a50e7aa9626992e1446b quidscor-1.2.48.ebuild 793 +MD5 65fc7862524db58595e2a6b17ef9eee3 quidscor-1.2.48.ebuild 944 MD5 fbe51198deb64448b75ea66737d2b468 ChangeLog 489 MD5 2146518fc3400951414b44a3e54b83b3 metadata.xml 220 MD5 38ebaecd2721233b80b3680fcf5a6b67 files/digest-quidscor-1.2.48 70 diff --git a/net-analyzer/quidscor/quidscor-1.2.48.ebuild b/net-analyzer/quidscor/quidscor-1.2.48.ebuild index fccb95ff5532..8ab0bd1eca60 100644 --- a/net-analyzer/quidscor/quidscor-1.2.48.ebuild +++ b/net-analyzer/quidscor/quidscor-1.2.48.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/quidscor/quidscor-1.2.48.ebuild,v 1.4 2004/07/10 11:41:29 eldad Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/quidscor/quidscor-1.2.48.ebuild,v 1.5 2005/04/17 20:28:28 vanquirius Exp $ DESCRIPTION="IDS/VA Correlation engine" HOMEPAGE="http://quidscor.sourceforge.net/" @@ -17,7 +17,10 @@ DEPEND=">=dev-libs/libxml2-2.4 src_unpack() { unpack ${A} - sed -i '/^CFLAGS=/s: -g : :' Makefile + sed -i '/^CFLAGS=/s: -g : :' ${S}/Makefile || die + #yes, the fix below is as pathetic as it seems + echo "#define FALSE 0" >> ${S}/libqg/libqg.h + echo "#define TRUE 1" >> ${S}/libqg/libqg.h } src_compile() { |