blob: fe82606e22ac1c8f58b27272c5dc2bd5e7c70225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# bsd.pyqt.mk - Global definitions for PyQt related ports
#
# $FreeBSD$
#
# Port variables:
# PYQT4_DIST - This port is part of PyQt4 itself. Variables and
# targets are then set assuming a certain tarball and
# port layout.
#
PYQT_MAINTAINER= kde@FreeBSD.org
MASTER_SITE_RIVERBANK= http://www.riverbankcomputing.com/static/Downloads/%SUBDIR%/
MASTER_SITES_SIP= SF/pyqt/sip/sip-${PORTVERSION} \
${MASTER_SITE_GENTOO:S,%SUBDIR%,distfiles,}
MASTER_SITES_PYQT4= SF/pyqt/PyQt4/PyQt-${PORTVERSION} \
${MASTER_SITE_GENTOO:S,%SUBDIR%,distfiles,}
MASTER_SITES_QSCI2= SF/pyqt/QScintilla2/QScintilla-${PORTVERSION} \
${MASTER_SITE_GENTOO:S,%SUBDIR%,distfiles,}
SIP_VERSION= 4.16.2
PYQT4_VERSION= 4.11.1
QSCI2_VERSION= 2.8.3
SIP_DISTNAME= sip-${SIP_VERSION}
PYQT4_DISTNAME= PyQt-x11-gpl-${PYQT4_VERSION}
PYQT4_DISTINFO_FILE= ${.CURDIR}/../../devel/py-qt4/distinfo
QSCI2_DISTNAME= QScintilla-gpl-${QSCI2_VERSION}
QSCI2_DISTINFO_FILE= ${.CURDIR}/../../devel/qscintilla2/distinfo
PYQT4_COMPONENTS= assistant core dbus dbussupport declarative \
demo designer designerplugin doc gui help \
multimedia network opengl phonon qscintilla2 \
script scripttools sql svg test webkit xml \
xmlpatterns
assistant_PORT= devel/py-qt4-assistant
core_PORT= devel/py-qt4-core
dbus_PORT= devel/py-qt4-dbus
dbussupport_PORT= devel/py-qt4-dbussupport
declarative_PORT= devel/py-qt4-declarative
demo_PORT= misc/py-qt4-demo
designer_PORT= devel/py-qt4-designer
designerplugin_PORT= devel/py-qt4-designerplugin
doc_PORT= misc/py-qt4-doc
gui_PORT= x11-toolkits/py-qt4-gui
help_PORT= devel/py-qt4-help
multimedia_PORT= multimedia/py-qt4-multimedia
network_PORT= net/py-qt4-network
opengl_PORT= x11/py-qt4-opengl
phonon_PORT= multimedia/py-qt4-phonon
qscintilla2_PORT= devel/py-qt4-qscintilla2
script_PORT= devel/py-qt4-script
scripttools_PORT= devel/py-qt4-scripttools
sql_PORT= databases/py-qt4-sql
svg_PORT= graphics/py-qt4-svg
test_PORT= devel/py-qt4-test
webkit_PORT= www/py-qt4-webkit
xml_PORT= textproc/py-qt4-xml
xmlpatterns_PORT= textproc/py-qt4-xmlpatterns
assistant_DESC= Python bindings for QtAssistant module
core_DESC= Python bindings for QtCore module
dbus_DESC= Python bindings for QtDBus module
dbussupport_DESC= Python bindings for D-Bus
declarative_DESC= Python bindings for QtDeclarative module
demo_DESC= PyQt4 demo and examples
designer_DESC= Python bindings for QtDesigner module
designerplugin_DESC= Python bindings for QtDesigner plugin
doc_DESC= PyQt4 documentation
gui_DESC= Python bindings for QtGui module
help_DESC= Python bindings for QtHelp module
multimedia_DESC= Python bindings for Multimedia module
network_DESC= Python bindings for QtNetwork module
opengl_DESC= Python bindings for QtOpenGL module
phonon_DESC= Python bindings for Phonon module
qscintilla2_DESC= Python bindings for QScintilla2
script_DESC= Python bindings for QtScript module
scripttools_DESC= Python bindings for QtScriptTools module
sql_DESC= Python bindings for QtSql module
svg_DESC= Python bindings for QtSvg module
test_DESC= Python bindings for QtTest module
webkit_DESC= Python bindings for QtWebKit module
xml_DESC= Python bindings for QtXml module
xmlpatterns_DESC= Python bindings for QtXmlPatterns module
.if defined(PYQT4_DIST)
PORTVERSION= ${PYQT4_VERSION}
MASTER_SITES= ${MASTER_SITES_PYQT4}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt4-
DISTNAME= ${PYQT4_DISTNAME}
DISTINFO_FILE= ${PYQT4_DISTINFO_FILE}
HAS_CONFIGURE= yes
USE_PYTHON= yes
QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS.
PATCHDIR= ${.CURDIR}/../../devel/py-qt4-core/files
OPTIONSFILE?= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options
SIPDIR= ${PREFIX}/share/py-sip
QSCIDIR= ${PREFIX}/share/qt4/qsci
CONFIGURE_ARGS+=-b ${PREFIX}/bin \
-d ${PYTHONPREFIX_SITELIBDIR} \
-q ${QMAKE} \
--confirm-license \
--sipdir ${SIPDIR}
# One of the things PyQt4 looks for to determine whether to build the Qt DBus
# main loop module (py-qt4-dbussupport) is whether the dbus/ directory is
# present. Only extract it for that port then.
.if ${PORTNAME} != "dbussupport"
EXTRACT_AFTER_ARGS+= --exclude "${DISTNAME}/dbus"
.endif # ${PORTNAME} != "dbussupport"
.if !target(do-configure)
do-configure:
cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
${PYTHON_CMD} configure.py ${CONFIGURE_ARGS}
.endif # !target(do-configure)
.endif # defined(PYQT4_DIST)
|