blob: 9f12ffde5ad267901654b80cd839a44156563aa4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= echolot
PORTVERSION= 0.1.0
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= SF \
http://benjamin-schweizer.de/files/echolot/
MAINTAINER= ports@FreeBSD.org
COMMENT= Packet sniffer that grabs ARP packets on any ethernet devices
LICENSE= BSD
LICENSE_FILE= ${WRKSRC}/COPYING
USE_GMAKE= yes
GNU_CONFIGURE= yes
MAKE_JOBS_SAFE= yes
MAN1= echolot.1
PORTDOCS= *
PLIST_FILES= bin/echolot
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR}
.endif
.include <bsd.port.mk>
|