mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
bd3f7f6193
New package building process disallows additional fetching of any additional files during port build process. Due to permanent changes in routing registry databases, it's wise for me to simply force to build package without possibly stale AS-numbers info. PR: ports/48632 Submitted by: Dmitry Morozovsky <marck@rinet.ru> -- MAINTAINER
40 lines
958 B
Makefile
40 lines
958 B
Makefile
# New ports collection makefile for: ehnt
|
|
# Date created: 2 August 2001
|
|
# Whom: marck@rinet.ru
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ehnt
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= marck@rinet.ru
|
|
COMMENT= A simple Cisco NetFlow data collector
|
|
|
|
USE_PERL5= yes
|
|
|
|
MAN1= ehnt.1
|
|
MAN8= ehntserv.8
|
|
|
|
post-extract:
|
|
${TOUCH} ${WRKSRC}/asnc.txt
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ehnt ${PREFIX}/bin/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ehntserv ${PREFIX}/sbin/
|
|
${INSTALL_SCRIPT} ${FILESDIR}/ehntserv.sh.sample ${PREFIX}/etc/rc.d/
|
|
${INSTALL_MAN} ${WRKSRC}/ehnt.1 ${PREFIX}/man/man1/
|
|
${INSTALL_MAN} ${WRKSRC}/ehntserv.8 ${PREFIX}/man/man8/
|
|
${MKDIR} ${PREFIX}/share/ehnt
|
|
${INSTALL_DATA} ${WRKSRC}/asnc.txt ${PREFIX}/share/ehnt/
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/ehnt
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/ehnt/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|