16c8d52e52
Razorback is a framework for an intelligence driven security solution. It consists of a Dispatcher at the core of the system, surrounded by Nuggets of varying types. The Yara nugget allows modified Yara rules to dictate which flags are set when they alert. WWW: http://razorbacktm.sourceforge.net/ PR: ports/167756 Submitted by: Tom Judge <tom@tomjudge.com>
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# New ports collection makefile for: razorback-yaraNugget
|
|
# Date created: 2011/06/8
|
|
# Whom: Tom Judge <tom@tomjudge.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= yaraNugget
|
|
PORTVERSION= 0.5.0
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/razorbacktm/Nuggets
|
|
PKGNAMEPREFIX= razorback-
|
|
DIST_SUBDIR= razorback
|
|
|
|
MAINTAINER= tj@FreeBSD.org
|
|
COMMENT= Framework for an intelligence driven security - Yara Detection
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= razorback_api:${PORTSDIR}/security/razorback-api \
|
|
pcre:${PORTSDIR}/devel/pcre
|
|
BUILD_DEPENDS= razorback-masterNugget>=0.5.0:${PORTSDIR}/security/razorback-masterNugget
|
|
RUN_DEPENDS= razorback-masterNugget>=0.5.0:${PORTSDIR}/security/razorback-masterNugget
|
|
|
|
OPTIONS_DEFINE= DEBUG ASSERT
|
|
ASSERT_DESC= Enable Asserts
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
RB_LIBDIR?= ${PREFIX}/lib/razorback
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= libtool
|
|
USE_LDCONFIG= ${RB_LIBDIR}
|
|
|
|
.if ${PORT_OPTIONS:MDEBUG}
|
|
CONFIGURE_ARGS+=--enable-debug
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MASSERT}
|
|
CONFIGURE_ARGS+=--enable-assert
|
|
.endif
|
|
|
|
post-install:
|
|
${LN} -sf ${RB_LIBDIR}/yaraNugget.so.2 ${RB_LIBDIR}/yaraNugget.so.2.0.0
|
|
@if [ ! -f ${PREFIX}/etc/razorback/yara.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/razorback/yara.conf.sample ${PREFIX}/etc/razorback/yara.conf ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|