Anne Bennett schrieb:
.if ${PKGPATH} == "x11/xlockmore-lite" CONFIGURE_ARGS+= --enable-syslog .endifOne 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. ;-)
I assumed that you would put the above lines between the ".ifdef BSD_PKG_MK" and the corresponding ".endif", as it is generated by the pkgsrc bootstrap program. Apparently you didn't. :)
Roland