diff options
Diffstat (limited to 'app-forensics/yara/yara-4.2.0_rc1.ebuild')
-rw-r--r-- | app-forensics/yara/yara-4.2.0_rc1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-forensics/yara/yara-4.2.0_rc1.ebuild b/app-forensics/yara/yara-4.2.0_rc1.ebuild new file mode 100644 index 000000000000..38659ddcaa36 --- /dev/null +++ b/app-forensics/yara/yara-4.2.0_rc1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="A malware identification and classification tool" +HOMEPAGE="http://virustotal.github.io/yara/" +SRC_URI="https://github.com/virustotal/yara/archive/v${PV/_/-}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="" +IUSE="+dex +dotnet +cuckoo +macho +magic profiling" + +DEPEND=" + dev-libs/openssl:0= + cuckoo? ( dev-libs/jansson:= ) + magic? ( sys-apps/file:0= ) +" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}-${PV/_/-}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable profiling) \ + $(use_enable cuckoo) \ + $(use_enable magic) \ + $(use_enable dotnet) \ + $(use_enable macho) \ + $(use_enable dex) +} |