mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
5ead0a2f78
- Update py-sip to 4.19.21 - Update qscintilla2 to 2.11.4 - Replace MASTER_SITE_RIVERBANK with https versions - Replace QSCI2_DISTNAME to match with the new one PR: 245308 Approved by: tcberner (mentor) Exp-run by: antoine
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= demo
|
|
PORTVERSION= ${PYQT5_VERSION}
|
|
PORTREVISION= 1
|
|
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, Qt demo and examples
|
|
|
|
DISTINFO_FILE= ${PYQT_DISTINFO_FILE}
|
|
NO_BUILD= yes
|
|
|
|
PORTSCOUT= limit:^${PYQT5_VERSION}
|
|
|
|
USES= python pyqt:5
|
|
USE_PYQT= core_run dbus_run designer_run \
|
|
designerplugin_run gui_run multimedia_run \
|
|
multimediawidgets_run network_run opengl_run qscintilla2_run \
|
|
sql_run svg_run test_run webkit_run xml_run \
|
|
xmlpatterns_run sip_run qscintilla2_run \
|
|
printsupport_run serialport_run webkitwidgets_run widgets_run
|
|
USE_PYTHON= concurrent flavors py3kplist
|
|
NO_ARCH= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PYQT_EXAMPLEDIR}
|
|
cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${PYQT_EXAMPLEDIR}
|
|
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \
|
|
-f -d ${PYTHONPREFIX_SITELIBDIR} \
|
|
${STAGEDIR}${PYQT_EXAMPLEDIR}
|
|
${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \
|
|
-f -d ${PYTHONPREFIX_SITELIBDIR} \
|
|
${STAGEDIR}${PYQT_EXAMPLEDIR}
|
|
|
|
.include <bsd.port.mk>
|