mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
807e80ff77
* Bind the verson portscout uses for its lookup to ${PYQT5_VERSION}. Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D10593
31 lines
663 B
Makefile
31 lines
663 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= doc
|
|
PORTVERSION= ${PYQT5_VERSION}
|
|
CATEGORIES= misc devel python
|
|
MASTER_SITES= ${MASTER_SITES_PYQT5}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5-
|
|
DISTNAME= ${PYQT_DISTNAME}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Python bindings for the Qt5 toolkit, documentation
|
|
|
|
DISTINFO_FILE= ${PYQT_DISTINFO_FILE}
|
|
NO_BUILD= yes
|
|
|
|
PORTSCOUT= limit:^${PYQT5_VERSION}
|
|
|
|
USES= python pyqt:5
|
|
USE_PYQT= #
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/py-qt5
|
|
|
|
do-install:
|
|
cd ${WRKSRC} &&\
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR} &&\
|
|
${INSTALL_DATA} NEWS LICENSE README\
|
|
${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|