diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2015-12-11 23:08:23 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2015-12-11 23:08:23 +0000 |
commit | 7737a9434c24c84011db6162330a7ed3fc21eac0 (patch) | |
tree | 7297d27dd04336040900031c1a9a0959cb3db30d | |
parent | Switch to options helper (diff) |
Switch to options helper
Notes
Notes:
svn path=/head/; revision=403573
-rw-r--r-- | x11-fonts/freefont-ttf/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/x11-fonts/freefont-ttf/Makefile b/x11-fonts/freefont-ttf/Makefile index dab0ae91bff3..38652c8c2618 100644 --- a/x11-fonts/freefont-ttf/Makefile +++ b/x11-fonts/freefont-ttf/Makefile @@ -21,10 +21,12 @@ NO_BUILD= yes OPTIONS_DEFINE= DOCS do-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} @${MKDIR} ${STAGEDIR}${FONTSDIR} cd ${WRKSRC} && \ ${INSTALL_DATA} *.ttf ${STAGEDIR}${FONTSDIR} +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + .include <bsd.port.mk> |