diff options
author | vs <vs@FreeBSD.org> | 2005-12-02 18:51:31 +0800 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2005-12-02 18:51:31 +0800 |
commit | f9d5f7cb8f5141bd8ec05ee8fb5647fa389f7512 (patch) | |
tree | 5b424e3f848b550db9e895edb23f845e89ae0f08 /mail | |
parent | 04a7e4e908b5f5ab3c954b34e9f1cec7b0efc8ff (diff) | |
download | freebsd-ports-gnome-f9d5f7cb8f5141bd8ec05ee8fb5647fa389f7512.tar.gz freebsd-ports-gnome-f9d5f7cb8f5141bd8ec05ee8fb5647fa389f7512.tar.zst freebsd-ports-gnome-f9d5f7cb8f5141bd8ec05ee8fb5647fa389f7512.zip |
Unbreak exim-doc-info: Use 'makeinfo' from ports
Diffstat (limited to 'mail')
-rw-r--r-- | mail/exim-doc-html/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mail/exim-doc-html/Makefile b/mail/exim-doc-html/Makefile index 1be31dc864f1..37e089ebb1d2 100644 --- a/mail/exim-doc-html/Makefile +++ b/mail/exim-doc-html/Makefile @@ -19,6 +19,11 @@ COMMENT= Documentation for the Exim MTA in multiple formats USE_BZIP2= yes +.if ${DOCFORMAT} == "info" +BUILD_DEPENDS+= ${LOCALBASE}/bin/makeinfo:${PORTSDIR}/print/texinfo +MAKEINFO= ${LOCALBASE}/bin/makeinfo +.endif + DOCFORMAT?= html DISTDOCFORMAT?= ${DOCFORMAT} @@ -42,8 +47,8 @@ pre-everything:: do-build: .if ${DOCFORMAT} == "info" @ cd ${WRKSRC}/doc; \ - makeinfo --no-split --output exim.info spec.texinfo; \ - makeinfo --no-split --output exim_filter.info filter.texinfo + ${MAKEINFO} --no-split --output exim.info spec.texinfo; \ + ${MAKEINFO} --no-split --output exim_filter.info filter.texinfo .else @ ${DO_NADA} .endif |