69e93a38ef
Changes in 3.18.1 since 3.18: * Fixed the handwritten code for all QDomDocument.setContent() overloads which was using deprecated (and now removed) sipBuildResult() format characters. * Fixed a build problem that affected Python v2.5 and earlier. Changes in 3.18 since 3.17.6: * Removed some compiler warning messages. * Reverted the changes that removed the use of sipSelfWasArg in handwritten code. * Tweaked configure.py so that Python3 can run just enough of it to display an error message. * Fixed a regression in emitting Python signals to Qt signals. * Handwritten code changes for the removal of the sipProtectVirt_*() methods. * Fixed a build problem with the GPL version. * Refactored the signla/slot support. * Safety checking of latest signal/slot refactoring. * Safety commit of the PyQt3-specific meta-type and super-type (just stubs at the moment). * Use the %Plugin directive to enable PyQt3 signal support. * More changes to the QObject.sender() support. * Updated the QObject::sender() support in response to sip changes. * Moved the last of the type parsing from sip. * The type parsing now uses sipResolveTypedef(). * Added the type parsing support from the sip module as PyQt4 no longer uses it. * Replaced sipFindConnection() with sipFindSlot(). * Replaced sipFreeConnection() with sipFreeSipslot(). * Changes required by recent changes to the Qt support API. * Compatibility changes needed for SIP v4.8. * Merged the v3.17 maintenance branch into the trunk. * Made some char* in handwritten code const needed by SIP v4.8.
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
# $NetBSD: Makefile.common,v 1.12 2009/06/17 07:11:03 hasso Exp $
|
|
#
|
|
# used by x11/py-qt3-base/Makefile
|
|
# used by x11/py-qt3-modules/Makefile
|
|
# used by x11/py-qt3-qscintilla/Makefile
|
|
#
|
|
# XXX: when updating version, be sure to update distinfo for both
|
|
# XXX: PyQt-mac-gpl and PyQt-x11-gpl in py-qt3-qscintilla,
|
|
# XXX: py-qt3-base, and py-qt3-modules.
|
|
|
|
PYQT_VERSION= 3.18.1
|
|
CATEGORIES= x11 python
|
|
MASTER_SITES= http://www.riverbankcomputing.com/static/Downloads/PyQt3/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.riverbankcomputing.com/software/pyqt/intro
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 25 24 23
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "Darwin"
|
|
DISTNAME= PyQt-mac-gpl-${PYQT_VERSION}
|
|
.else
|
|
DISTNAME= PyQt-x11-gpl-${PYQT_VERSION}
|
|
.endif
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
USE_LANGUAGES= c c++
|
|
|
|
CONFIGURE_ARGS+= -b ${PREFIX}/bin
|
|
CONFIGURE_ARGS+= -d ${PREFIX}/${PYSITELIB}
|
|
CONFIGURE_ARGS+= -v ${PREFIX}/share/sip${PYVERSSUFFIX}
|
|
|
|
PY_PATCHPLIST= yes
|
|
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX:Q}
|
|
|
|
do-configure:
|
|
(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \
|
|
${PYTHONBIN} configure.py ${CONFIGURE_ARGS})
|
|
|
|
.include "../../lang/python/extension.mk"
|