aceb14ba8c
- Use new-ish options framework - Add license - Take maintainership
38 lines
708 B
Makefile
38 lines
708 B
Makefile
# Created by: Kirill Ponomarew <ponomarew@oberon.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= packit
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= net-mgmt
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Network auditing tool
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libnet.so:net/libnet
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= eribertomota
|
|
|
|
USES= autoreconf
|
|
GNU_CONFIGURE= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= sbin/packit \
|
|
man/man8/packit.8.gz
|
|
|
|
OPTIONS_DEFINE= CAPTURE INJECTION
|
|
|
|
CAPTURE_DESC= Capture support
|
|
INJECTION_DESC= Injection support
|
|
|
|
OPTIONS_DEFAULT=CAPTURE INJECTION
|
|
|
|
CAPTURE_CONFIGURE_OFF= --without-capture
|
|
INJECTION_CONFIGURE_OFF= --without-injection
|
|
|
|
.include <bsd.port.mk>
|