mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
New port: security/razorback-fileInject
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. File Inject is a command-line file submission tool for the razorback framework. WWW: http://razorbacktm.sourceforge.net/ PR: ports/167746 Submitted by: Tom Judge <tom@tomjudge.com>
This commit is contained in:
parent
6856e0897c
commit
1f28c441ca
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=297121
5 changed files with 61 additions and 0 deletions
|
@ -783,6 +783,7 @@
|
||||||
SUBDIR += ratproxy
|
SUBDIR += ratproxy
|
||||||
SUBDIR += rats
|
SUBDIR += rats
|
||||||
SUBDIR += razorback-api
|
SUBDIR += razorback-api
|
||||||
|
SUBDIR += razorback-fileInject
|
||||||
SUBDIR += rdigest
|
SUBDIR += rdigest
|
||||||
SUBDIR += retranslator
|
SUBDIR += retranslator
|
||||||
SUBDIR += revelation
|
SUBDIR += revelation
|
||||||
|
|
44
security/razorback-fileInject/Makefile
Normal file
44
security/razorback-fileInject/Makefile
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
# New ports collection makefile for: razorback-fileInject
|
||||||
|
# Date created: 2011/06/8
|
||||||
|
# Whom: Tom Judge <tom@tomjudge.com>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= fileInject
|
||||||
|
PORTVERSION= 0.5.0
|
||||||
|
CATEGORIES= security
|
||||||
|
MASTER_SITES= SF/razorbacktm/Nuggets
|
||||||
|
PKGNAMEPREFIX= razorback-
|
||||||
|
DIST_SUBDIR= razorback
|
||||||
|
|
||||||
|
MAINTAINER= tom@tomjudge.com
|
||||||
|
COMMENT= Framework for an intelligence driven security - File Injector
|
||||||
|
|
||||||
|
LICENSE= GPLv2
|
||||||
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||||
|
|
||||||
|
LIB_DEPENDS= razorback_api.2:${PORTSDIR}/security/razorback-api
|
||||||
|
|
||||||
|
OPTIONS= DEBUG "Enable Debug" off \
|
||||||
|
ASSERT "Enable Asserts" off
|
||||||
|
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
|
USE_AUTOTOOLS= libtool
|
||||||
|
CPPFLAGS+= -I${LOCALBASE}/include
|
||||||
|
LDFLAGS+= -L${LOCALBASE}/lib
|
||||||
|
|
||||||
|
.if defined(WITH_DEBUG)
|
||||||
|
CONFIGURE_ARGS+=--enable-debug
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.if defined(WITH_ASSERT)
|
||||||
|
CONFIGURE_ARGS+=--enable-assert
|
||||||
|
.endif
|
||||||
|
|
||||||
|
post-install:
|
||||||
|
@if [ ! -f ${PREFIX}/etc/razorback/fileInject.conf ]; then \
|
||||||
|
${CP} -p ${PREFIX}/etc/razorback/fileInject.conf.sample ${PREFIX}/etc/razorback/fileInject.conf ; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
2
security/razorback-fileInject/distinfo
Normal file
2
security/razorback-fileInject/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
SHA256 (razorback/fileInject-0.5.0.tar.gz) = aef94c80e3adf299f4a3f70c3d9ad796273bcddfab8f8e30308630c13e0da4c1
|
||||||
|
SIZE (razorback/fileInject-0.5.0.tar.gz) = 315157
|
8
security/razorback-fileInject/pkg-descr
Normal file
8
security/razorback-fileInject/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
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.
|
||||||
|
|
||||||
|
File Inject is a command-line file submission tool for the razorback
|
||||||
|
framework.
|
||||||
|
|
||||||
|
WWW: http://razorbacktm.sourceforge.net/
|
6
security/razorback-fileInject/pkg-plist
Normal file
6
security/razorback-fileInject/pkg-plist
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
@comment $FreeBSD$
|
||||||
|
bin/fileInject
|
||||||
|
@unexec if cmp -s %D/etc/razorback/fileInject.conf %D/etc/razorback/fileInject.conf.sample; then rm -f %D/etc/razorback/fileInject.conf; fi
|
||||||
|
etc/razorback/fileInject.conf.sample
|
||||||
|
@exec if [ ! -f %D/etc/razorback/fileInject.conf ]; then cp -p %D/%F %B/fileInject.conf; fi
|
||||||
|
@dirrmtry etc/razorback
|
Loading…
Add table
Reference in a new issue