mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
49fc80810d
- Use EXAMPLESDIR macro Submitted by: Olli Hauer <ohauer@gmx.de> (on freebsd-ports) [1]
34 lines
860 B
Makefile
34 lines
860 B
Makefile
# New ports collection makefile for: snort-rep
|
|
# Date created: Jul 19, 2001
|
|
# Whom: Mark Pulford <mark@kyne.com.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= snort-rep
|
|
PORTVERSION= 1.10
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://david.schweikert.ch/software/snort-rep/pub/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A Snort reporting tool that can produce text or HTML from logs
|
|
|
|
USE_PERL5= yes
|
|
MAN1= snort-rep.1
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e "s|#!/usr/bin/perl|#!${PERL}|" \
|
|
${WRKSRC}/snort-rep ${WRKSRC}/snort-rep-mail
|
|
|
|
do-build:
|
|
cd ${BUILD_WRKSRC} ; pod2man --lax snort-rep > snort-rep.1
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/snort-rep ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/snort-rep.1 ${MAN1PREFIX}/man/man1
|
|
${MKDIR} ${PREFIX}/share/examples/snort-rep
|
|
${INSTALL_SCRIPT} ${WRKSRC}/snort-rep-mail \
|
|
${PREFIX}/share/examples/snort-rep
|
|
|
|
.include <bsd.port.mk>
|