diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-11-12 17:21:43 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-11-12 17:21:43 +0000 |
commit | 2b747066c195cbca9bca02bb532c0e6aeb9f50a3 (patch) | |
tree | 95d97d878167da5e8b4cd0d2af9089202cadb6c2 /textproc/yould | |
parent | 6a3f296f6815a3c6a18d0c5df4d4d063f45efcb8 (diff) |
Notes
Diffstat (limited to 'textproc/yould')
-rw-r--r-- | textproc/yould/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/textproc/yould/Makefile b/textproc/yould/Makefile index 540a719e0a94..7d63b0043922 100644 --- a/textproc/yould/Makefile +++ b/textproc/yould/Makefile @@ -10,12 +10,19 @@ MASTER_SITES= CHEESESHOP/source/y/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Pronounceable word generator +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING + USES= python USE_PYTHON= distutils autoplist +NO_ARCH= yes + PORTDOCS= NEWS.txt README.txt -post-install: - @${INSTALL} -d ${STAGEDIR}${DOCSDIR}/ - @cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR}/ + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ .include <bsd.port.mk> |