1763bdd243
Changes: PyQt v3.17.6 has been released. This fixes a Windows compilation bug. PyQt v3.17.5 has been released. This is mainly to be compatible with SIP v4.7.8 but also adds a couple of new methods. * Added the missing QRegion.rects() (based on a patch from Hans-Peter Jansen). * Added the missing QWidget.stackUnder() slot.
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
# $NetBSD: Makefile.common,v 1.11 2008/12/21 17:14:17 wiz 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.17.6
|
|
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"
|