- Clarify LICENSE
- Add LICENSE_FILE - Switch to options helpers - Simplify installation
This commit is contained in:
parent
43d7a1fbbb
commit
b280128e69
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=405437
1 changed files with 17 additions and 30 deletions
|
@ -10,7 +10,8 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Fork of the Python MPD client library
|
||||
|
||||
LICENSE= LGPL3
|
||||
LICENSE= LGPL3 # or later
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= Mic92
|
||||
|
@ -22,37 +23,23 @@ USE_PYTHON= autoplist concurrent distutils
|
|||
|
||||
NO_ARCH= yes
|
||||
|
||||
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
|
||||
PORTDOCS= *
|
||||
EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
|
||||
PORTEXAMPLES= *
|
||||
|
||||
OPTIONS_DEFINE= DOCS EXAMPLES
|
||||
|
||||
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
|
||||
PORTDOCS_1= commands_header.txt index.rst changes.rst
|
||||
PORTDOCS_2= topics/advanced.rst topics/commands.rst \
|
||||
topics/getting-started.rst topics/logging.rst
|
||||
PORTDOCS_3= generate_command_reference.py
|
||||
PORTDOCS= ${PORTDOCS_1} ${PORTDOCS_2} ${PORTDOCS_3}
|
||||
EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME}
|
||||
PORTEXAMPLES_1= errorhandling.py helloworld.py idle.py locking.py logger.py \
|
||||
multitags.py randomqueue.py stats.py stickers.py
|
||||
PORTEXAMPLES_2= summary.txt
|
||||
PORTEXAMPLES= ${PORTEXAMPLES_1} ${PORTEXAMPLES_2}
|
||||
post-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}/topics
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/commands_header.txt ${STAGEDIR}${DOCSDIR}/
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/*.rst ${STAGEDIR}${DOCSDIR}/
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/topics/*.rst ${STAGEDIR}${DOCSDIR}/topics/
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/doc/generate_command_reference.py ${STAGEDIR}${DOCSDIR}/
|
||||
|
||||
post-install:
|
||||
${MKDIR} ${STAGEDIR}${DOCSDIR}/topics
|
||||
.for f in ${PORTDOCS_1}
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
|
||||
.endfor
|
||||
.for f in ${PORTDOCS_2}
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}/topics
|
||||
.endfor
|
||||
.for f in ${PORTDOCS_3}
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
|
||||
.endfor
|
||||
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
.for f in ${PORTEXAMPLES_1}
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR}
|
||||
.endfor
|
||||
.for f in ${PORTEXAMPLES_2}
|
||||
${INSTALL_DATA} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR}
|
||||
.endfor
|
||||
post-install-EXAMPLES-on:
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.py ${STAGEDIR}${EXAMPLESDIR}/
|
||||
${INSTALL_DATA} ${WRKSRC}/examples/summary.txt ${STAGEDIR}${EXAMPLESDIR}/
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
Loading…
Reference in a new issue