blob: 799b8a364b8e28b1c4ead420975f42b5ccf49986 (
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
|
# New ports collection makefile for: dhcdrop
# Date created: Aug 9 2009
# Whom: Nick F
#
# $FreeBSD$
#
PORTNAME= dhcdrop
PORTVERSION= 0.5
CATEGORIES= net-mgmt sysutils
MASTER_SITES= http://www.netpatch.ru/projects/dhcdrop/
MAINTAINER= ffault@gmail.com
COMMENT= Tool for searching and suppressing false DHCP servers
USE_BZIP2= yes
GNU_CONFIGURE= yes
MAN8= ${PORTNAME}.8
MANLANG= "" ru
PLIST_FILES= sbin/dhcdrop
OPTIONS= STATIC "Build a static version of dhcdrop" off
.include <bsd.port.options.mk>
.if defined(WITH_STATIC)
CONFIGURE_ARGS+=--enable-static-build
.endif
.include <bsd.port.mk>
|