With the release of BIND9 9.20.1, the 9.20 branch is out of "dev" status, so switch bind-tools to it. PR: 281007
19 lines
333 B
Makefile
19 lines
333 B
Makefile
# Define PORTREVISION in ${MASTERDIR}
|
|
|
|
.ifdef BIND_TOOLS_DEVEL
|
|
MASTERDIR= ${.CURDIR}/../../dns/bind9-devel
|
|
|
|
PLIST= ${.CURDIR}/pkg-plist-devel
|
|
.else
|
|
MASTERDIR= ${.CURDIR}/../../dns/bind920
|
|
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
.endif
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
|
|
BIND_TOOLS_SLAVE= YES
|
|
|
|
PORTSCOUT= ignore:1
|
|
|
|
.include "${MASTERDIR}/Makefile"
|