added malheur, malware analysis tool

This commit is contained in:
jensp 2010-01-06 00:22:00 +00:00
parent 6116d7a8b6
commit d8fc23d698
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST malheur-0.4.5.tar.gz 501515 RMD160 a58421da3015310883c6fb8353eb29a863c5c0f6 SHA1 5d69884b1769b131d036205ca17ef8b02a9f9ab1 SHA256 34da6bbc102ec549b6563c26b7f089d8f10c631825aacf6478c54cae6e058c02
EBUILD malheur-0.4.5.ebuild 636 RMD160 681785d0bdb6de7d705396be386f74ccfafb53b4 SHA1 543c2338e5ec335b452210e32950ba48375c523e SHA256 e048157bc69fb29f4361fd08334fb2134896b3027efcb0fbeccbac24662b13fc

View file

@ -0,0 +1,29 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
DESCRIPTION="malware analysis tool"
HOMEPAGE="http://www.mlsec.org/malheur/"
SRC_URI="http://www.mlsec.org/malheur/files/$PN-$PV.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="openmp"
DEPEND=""
RDEPEND=">=dev-libs/libconfig-1.3.2
>=app-arch/libarchive-2.7.0
openmp? ( sys-devel/gcc[openmp] )"
src_configure() {
econf\
$(use_enable openmp)
# we also have optional matlab support, but thats proprietary afaik
}
src_install() {
DESTDIR="${D}" emake install || die "install failed"
}