mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
29747f458a
new freetype2 where needed. Submitted by: mezz, ahze, pav, and many others Approved by: portmgr (implicit, kris)
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
# New ports collection makefile for: yersinia
|
|
# Date created: Sun Jul 24 10:43:13 CEST 2005
|
|
# Whom: se
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= yersinia
|
|
PORTVERSION= 0.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.yersinia.net/download/
|
|
|
|
MAINTAINER= se@FreeBSD.org
|
|
COMMENT= Layer 2 vulnerability scanner (switches, spanning tree, 802.1q ...)
|
|
|
|
BUILD_DEPENDS= libnet*>=1.1.2,1:${PORTSDIR}/net/libnet
|
|
|
|
.if !defined(WITHOUT_GTK)
|
|
.if exists(${LOCALBASE}/include/gtk-2.0/gtk/gtk.h)
|
|
WITH_GTK= true
|
|
.endif
|
|
.endif
|
|
.if defined(WITH_GTK)
|
|
USE_GNOME+= pkgconfig gtk20
|
|
PKGNAMESUFFIX= -gtk
|
|
CONFLICTS= yersinia-[0-9]*
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gtk
|
|
CONFLICTS= yersinia-gtk-[0-9]*
|
|
.endif
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libpcap.a:${PORTSDIR}/net/libpcap
|
|
.endif
|
|
|
|
#NOT_FOR_ARCHS= ia64 sparc64
|
|
MAN8= yersinia.8
|
|
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>
|