blob: e41b627832c9cb7e2688cc9b0f35c0f008c69755 (
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
34
35
36
37
38
39
40
41
|
# New ports collection makefile for: yersinia
# Date created: Sun Jul 24 10:43:13 CEST 2005
# Whom: se
#
# $FreeBSD$
#
PORTNAME= yersinia
PORTVERSION= 0.5.4
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= se@FreeBSD.org
COMMENT= Layer 2 vulnerability scanner (switches, spanning tree, 802.1q ...)
USE_GETOPT_LONG= yes
.include <bsd.port.pre.mk>
BUILD_DEPENDS= libnet*>=1.1.2,1:${PORTSDIR}/net/libnet
.if ${OSVERSION} < 500000
BUILD_DEPENDS+= ${LOCALBASE}/lib/libpcap.a:${PORTSDIR}/net/libpcap
.endif
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
NOT_FOR_ARCHS= ia64 sparc64
MAN8= yersinia.8
CFLAGS+= -DNEED_GETOPT_H
PLIST_FILES= sbin/yersinia
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/yersinia ${PREFIX}/sbin/
${INSTALL_MAN} ${WRKSRC}/yersinia.8 ${PREFIX}/man/man8/
.include <bsd.port.post.mk>
|