mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
6cca510e9b
- Claim maintainership PR: ports/91031 Submitted by: Frank Laszlo <laszlof@vonostingroup.com>
41 lines
870 B
Makefile
41 lines
870 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: netspoc
|
|
# Date created: Nov 3, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= netspoc
|
|
PORTVERSION= 3.0
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://download.berlios.de/netspoc/
|
|
|
|
MAINTAINER= laszlof@vonostingroup.com
|
|
COMMENT= A Network Security Policy Compiler
|
|
|
|
USE_PERL5= yes
|
|
NO_BUILD= yes
|
|
|
|
MAN1= netspoc.1
|
|
DOCS= CSPM.html NEWS.html index.html language.html netspoc.html
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500600
|
|
IGNORE= "This port needs Perl 5.6.0 or greater"
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/netspoc ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/Netspoc.pm ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/netspoc.man ${MANPREFIX}/man/man1/netspoc.1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|