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 | c4048fd43a2f822b4f50b9bbb7c169902e4e3741 (patch) | |
tree | 21647c2a549fd9354f9a848260c83a0423e0f8e7 /net-analyzer/quidscor | |
parent | Stable on SPARC wrt security bug #89305. (diff) | |
download | historical-c4048fd43a2f822b4f50b9bbb7c169902e4e3741.tar.gz historical-c4048fd43a2f822b4f50b9bbb7c169902e4e3741.tar.bz2 historical-c4048fd43a2f822b4f50b9bbb7c169902e4e3741.zip |
compile fixes
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'net-analyzer/quidscor')
-rw-r--r-- | net-analyzer/quidscor/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/quidscor/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/quidscor/quidscor-1.2.48.ebuild | 9 |
3 files changed, 14 insertions, 7 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..0c5612374712 100644 --- a/net-analyzer/quidscor/Manifest +++ b/net-analyzer/quidscor/Manifest @@ -1,4 +1,4 @@ -MD5 2643f75abfc8a50e7aa9626992e1446b quidscor-1.2.48.ebuild 793 -MD5 fbe51198deb64448b75ea66737d2b468 ChangeLog 489 +MD5 66ce483ce7b109d03f0aa0f81bb3090c quidscor-1.2.48.ebuild 949 +MD5 313628db95ac601f26bcdc1ae0b65188 ChangeLog 674 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() { |