mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
5b3f3dd953
Add the required bits to Uses/pyqt.mk along with all the PyQt5 ports. Thankfully this commit is mostly adding new ports, as the hard work was already done in r403297 and r403662. Huge kudos to Tobias Berner <tcberner@gmail.com> and, most importantly, Guido Falsi (madpilot@) for their initial work on these ports (see D2910 in Phabricator for an earlier version of the PyQt5 patch set). PR: 204672
25 lines
610 B
Makefile
25 lines
610 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= qt5
|
|
PORTVERSION= ${PYQT5_VERSION}
|
|
CATEGORIES= devel python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Python bindings for the Qt 5 toolkit (meta port)
|
|
|
|
USES= metaport python pyqt:5
|
|
|
|
OPTIONS_DEFINE= core dbus dbussupport demo designer doc gui multimedia \
|
|
multimediawidgets network opengl printsupport qml qscintilla2 \
|
|
sql serialport svg test webkit webkitwidgets widgets \
|
|
xml xmlpatterns
|
|
OPTIONS_DEFAULT=${OPTIONS_DEFINE}
|
|
|
|
.for opt in ${OPTIONS_DEFINE}
|
|
${opt}_USE= PYQT=${opt}_run
|
|
${opt}_DESC= ${py-${opt}_DESC}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|