.if ${PKGPATH} == "x11/xlockmore-lite" CONFIGURE_ARGS+= --enable-syslog .endif
One small fix:
.if "${PKGPATH}" == "x11/xlockmore-lite"
CONFIGURE_ARGS+= --enable-syslog
.endif
The quotes are needed around ${PKGPATH} to avoid a syntax
error should mk.conf be used in an environment where PKGPATH
is not defined, such as while rebuilding a kernel. Ask me
how I know. ;-)
Anne.