summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-12-01 07:03:48 +0000
committerMike Frysinger <vapier@gentoo.org>2003-12-01 07:03:48 +0000
commitb4dff0e4585b65d40132215c9fe87c4f0205d58a (patch)
treee8dfdc3860eb1b18b6b868b316c355c02dc370e6 /net-analyzer/quidscor
parentFixing X support (diff)
downloadgentoo-2-b4dff0e4585b65d40132215c9fe87c4f0205d58a.tar.gz
gentoo-2-b4dff0e4585b65d40132215c9fe87c4f0205d58a.tar.bz2
gentoo-2-b4dff0e4585b65d40132215c9fe87c4f0205d58a.zip
initial ebuild
Diffstat (limited to 'net-analyzer/quidscor')
-rw-r--r--net-analyzer/quidscor/ChangeLog8
-rw-r--r--net-analyzer/quidscor/files/digest-quidscor-1.2.481
-rw-r--r--net-analyzer/quidscor/quidscor-1.2.48.ebuild33
3 files changed, 42 insertions, 0 deletions
diff --git a/net-analyzer/quidscor/ChangeLog b/net-analyzer/quidscor/ChangeLog
new file mode 100644
index 000000000000..968f8a13c95a
--- /dev/null
+++ b/net-analyzer/quidscor/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for net-analyzer/quidscor
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/quidscor/ChangeLog,v 1.1 2003/12/01 07:03:48 vapier Exp $
+
+*quidscor-1.2.48 (01 Dec 2003)
+
+ 01 Dec 2003; Mike Frysinger <vapier@gentoo.org> :
+ Initial import. Ebuild submitted by Laurent Demailly <gbugs@demailly.com> #32688.
diff --git a/net-analyzer/quidscor/files/digest-quidscor-1.2.48 b/net-analyzer/quidscor/files/digest-quidscor-1.2.48
new file mode 100644
index 000000000000..4807fcefca24
--- /dev/null
+++ b/net-analyzer/quidscor/files/digest-quidscor-1.2.48
@@ -0,0 +1 @@
+MD5 ae34fd5ed8c04bd7b87f54fa5846acbe quidscor-1.2.48-src.tar.gz 77843
diff --git a/net-analyzer/quidscor/quidscor-1.2.48.ebuild b/net-analyzer/quidscor/quidscor-1.2.48.ebuild
new file mode 100644
index 000000000000..53b7abc42956
--- /dev/null
+++ b/net-analyzer/quidscor/quidscor-1.2.48.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# 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.1 2003/12/01 07:03:48 vapier Exp $
+
+DESCRIPTION="IDS/VA Correlation engine"
+HOMEPAGE="http://quidscor.sourceforge.net/"
+SRC_URI="mirror://sourceforge/quidscor/${P}-src.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND=">=dev-libs/libxml2-2.4
+ >=net-ftp/curl-7.10
+ >=net-analyzer/snort-2.0"
+
+src_unpack() {
+ unpack ${A}
+ sed -i '/^CFLAGS=/s: -g : :' Makefile
+}
+
+src_compile() {
+ emake EXTRA_CFLAGS="${CFLAGS}" || die
+}
+
+src_install() {
+ emake PREFIX=/usr STAGING_PREFIX=${D} install || die
+ dodoc ChangeLog FAQ MANIFEST README TODO
+ # fix ugly install
+ cd ${D}/usr
+ mv etc ..
+ rm -rf doc
+}