29 lines
465 B
Makefile
29 lines
465 B
Makefile
# $OpenBSD: Makefile,v 1.17 2019/07/12 20:48:34 sthen Exp $
|
|
|
|
COMMENT= performs consistency checks on BIND files
|
|
|
|
DISTNAME= nslint-2.0.2
|
|
REVISION= 2
|
|
CATEGORIES= net
|
|
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.ee.lbl.gov/old/
|
|
|
|
FLAVORS= static
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR} == "static"
|
|
CONFIGURE_ENV+= LDFLAGS="${STATIC}"
|
|
.else
|
|
WANTLIB= c
|
|
.endif
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
ALL_TARGET= nslint
|
|
INSTALL_TARGET= install install-man
|
|
|
|
NO_TEST= Yes
|
|
|
|
.include <bsd.port.mk>
|