diff options
author | bapt <bapt@FreeBSD.org> | 2014-05-06 17:27:10 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-05-06 17:27:10 +0800 |
commit | 09258502e2be3179a61a03a1f42c26cb52f2f3e2 (patch) | |
tree | 9c1b83cce385791d28c444243ace7215292313d2 /comms | |
parent | a4d873adcdb36ccd1a429f0ac347bca910a02dda (diff) | |
download | freebsd-ports-graphics-09258502e2be3179a61a03a1f42c26cb52f2f3e2.tar.gz freebsd-ports-graphics-09258502e2be3179a61a03a1f42c26cb52f2f3e2.tar.zst freebsd-ports-graphics-09258502e2be3179a61a03a1f42c26cb52f2f3e2.zip |
Support stage
PR: ports/188593
Submitted by: Bartek Rutkowski <ports@robakdesign.com>
Diffstat (limited to 'comms')
-rw-r--r-- | comms/py-serial/Makefile | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/comms/py-serial/Makefile b/comms/py-serial/Makefile index b4eba8b8fcc..0d1889cea0d 100644 --- a/comms/py-serial/Makefile +++ b/comms/py-serial/Makefile @@ -19,20 +19,12 @@ PYDISTUTILS_PKGNAME= py${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} -NO_STAGE= yes - OPTIONS_DEFINE= DOCS EXAMPLES -.include <bsd.port.options.mk> - post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/*.txt ${DOCSDIR} -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/*.txt ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR} .include <bsd.port.mk> |