blob: 078283021bdba1e06bf6bcbf79013a24563f790f (
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
|
# Ports collection makefile for: xprobe
# Date created: 23 Aug 2001
# Whom: Kris Kennaway <kris@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= xprobe2
PORTVERSION= 0.3
CATEGORIES= net
MASTER_SITES= SF/xprobe/${PORTNAME}/Xprobe2%20${PORTVERSION}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= ICMP active OS fingerprint scanner
GNU_CONFIGURE= yes
CONFIGURE_ENV= INSTALL=${INSTALL}
MAN1= xprobe2.1
post-install: .SILENT
if [ ! -f ${ETCDIR}/${PORTNAME}.conf ]; then \
${INSTALL_DATA} ${ETCDIR}/${PORTNAME}.conf.sample \
${ETCDIR}/${PORTNAME}.conf; \
fi
.include <bsd.port.mk>
|