freebsd-ports/devel/py-qt4-core/Makefile
Alberto Villa cd3fe9e9f2 - Pet Tinderbox and friends.
OPTIONSFILE must be set using ?= to allow overriding.

PR:		163743
PR:		163744
PR:		163745
PR:		163746
Submitted by:	A.J. Kehoe IV (Nanoman) <vOo4vyPj@nanoman.ca>
2012-01-24 23:40:21 +00:00

90 lines
2.3 KiB
Makefile

# New ports collection makefile for: py-qt4-core
# Date created: 2007-02-19
# Whom: Danny Pansters <danny@ricin.com>
#
# $FreeBSD$
PORTNAME= core
PORTVERSION= ${PYQT4_VERSION}
PORTEPOCH= 1
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITES_PYQT4}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt4-
DISTNAME= ${PYQT4_DISTNAME}
MAINTAINER= kde@FreeBSD.org
COMMENT= Python bindings for the Qt4 toolkit, QtCore module
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip
RUN_DEPENDS:= ${BUILD_DEPENDS}
DISTINFO_FILE= ${PYQT4_DISTINFO_FILE}
HAS_CONFIGURE= yes
USE_PYTHON= 2.5+
USE_QT_VER= 4
QT_COMPONENTS= corelib qmake_build moc_build
OPTIONS= API "Install QtCore API for QScintilla2" on \
DEBUG "Enable debugging in generated code" off \
SIPFILES "Install the QtCore SIP files" on \
TRACING "Enable tracing in generated code" off
OPTIONSFILE?= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options
SIPDIR= ${PREFIX}/share/py-sip
QSCIDIR= ${PREFIX}/share/qt4/qsci
CONFIGURE_ENV+= PYQT4_COMPONENT="${PORTNAME}"
ARGS= -b ${PREFIX}/bin\
-d ${PYTHONPREFIX_SITELIBDIR}\
-p ${PREFIX}/${QT_PLUGINDIR_REL}\
-q ${QMAKE}\
--confirm-license\
--enable QtCore
.include "../py-sip/files/bsd.pyqt.mk"
.include <bsd.port.options.mk>
.if defined(WITH_DEBUG)
ARGS+= --debug
.endif
.if defined(WITHOUT_API)
ARGS+= --no-qsci-api
PLIST_SUB+= API="@comment "
.else
LIB_DEPENDS+= qscintilla2.5:${PORTSDIR}/devel/qscintilla2
ARGS+= --qsci-api --qsci-api-destdir=${QSCIDIR}
PLIST_SUB+= API=""
.endif
.if defined(WITHOUT_SIPFILES)
ARGS+= --no-sip-files
PLIST_SUB+= SIP="@comment "
.else
ARGS+= --sipdir ${SIPDIR}
PLIST_SUB+= SIP=""
.endif
.if defined(WITH_TRACING)
ARGS+= --trace
.endif
post-extract:
rm -rf ${WRKSRC}/pyuic/uic/port_v3
do-configure:
cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV}\
${PYTHON_CMD} configure.py ${ARGS}
post-configure:
${REINPLACE_CMD} -e 's|mkspecs/freebsd-g++|share/qt4/mkspecs/freebsd-g++|'\
-e 's|CC = cc|CC = ${CC}|'\
-e 's|CXX = c++|CXX = ${CXX}|'\
-e 's|LINK = c++|LINK = ${CXX}|'\
${WRKSRC}/QtCore/Makefile
post-install:
${INSTALL_DATA} ${FILESDIR}/Qt.py ${PYTHONPREFIX_SITELIBDIR}/PyQt4 &&\
cd ${PYTHONPREFIX_SITELIBDIR}/PyQt4 &&\
${PYTHON_CMD} ${PYTHON_LIBDIR}/py_compile.py\
`ls *.py */*.py */*/*.py` &&\
${PYTHON_CMD} -O ${PYTHON_LIBDIR}/py_compile.py\
`ls *.py */*.py */*/*.py`
.include <bsd.port.mk>