suricata: added

This commit is contained in:
jensp 2010-05-19 17:24:23 +00:00
parent ca76c8291d
commit ef8ebf7695
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST suricata-0.9.0.tar.gz 1409166 RMD160 1e85cec9af3a18382ad6f5bc1fb08682bfebcff2 SHA1 adb45087a38a00983fc26afd5d84e9c3b4f286b1 SHA256 c0a57492bf7f6fcdd32a24167ac7c78d7c04df8e1435faf2cb8a9147ddc94e0e
EBUILD suricata-0.9.0.ebuild 839 RMD160 a1e3205ee742b93477abf6299801a8c8b34eac09 SHA1 8407cd08c6ebc6da56f3bddaeb06f50243d4491f SHA256 58eb840be5f2fb425ba89ab42d42e753a6024012195ea4691b0d7789a917786f

View file

@ -0,0 +1,39 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
DESCRIPTION="next generation intrusion detection and prevention engine"
HOMEPAGE="http://www.openinfosecfoundation.org"
SRC_URI="http://www.openinfosecfoundation.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="cuda hardened caps"
RDEPEND="dev-libs/libyaml
dev-libs/libpcre
net-libs/libpcap
net-libs/libnet
cuda? ( dev-util/nvidia-cuda-toolkit )
sys-libs/libcap-ng"
DEPEND="dev-libs/libyaml
dev-libs/libpcre
net-libs/libpcap
net-libs/libnet
cuda? ( dev-util/nvidia-cuda-sdk )
sys-libs/libcap-ng"
src_configure() {
econf \
$(use_enable hardened gccprotect) \
$(use_enable cuda)
}
src_install() {
DESTDIR="${D}" emake install || die
dodoc doc/* || die
}