mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
99b882c241
- Remove SIPFILES option, some ports (e.g., pykde4) require the files to be installed. - Remove DEBUG and TRACING options, and merge them under WITH_DEBUG.
71 lines
1.9 KiB
Makefile
71 lines
1.9 KiB
Makefile
# New ports collection makefile for: py-qt4-assistant
|
|
# Date created: 2007-02-20
|
|
# Whom: Danny Pansters <danny@ricin.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= assistant
|
|
PORTVERSION= ${PYQT4_VERSION}
|
|
PORTREVISION= 1
|
|
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, QtAssistant module
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip
|
|
RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui \
|
|
${PKGNAMEPREFIX}network>=${PYQT4_VERSION}:${PORTSDIR}/net/py-qt4-network
|
|
|
|
DISTINFO_FILE= ${PYQT4_DISTINFO_FILE}
|
|
HAS_CONFIGURE= yes
|
|
USE_PYTHON= 2.5+
|
|
USE_QT4= assistantclient qmake_build
|
|
|
|
OPTIONS= API "Install QtAssistant API for QScintilla2" on
|
|
|
|
PATCHDIR= ${PORTSDIR}/devel/py-qt4-core/files
|
|
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 \
|
|
--sipdir ${SIPDIR} \
|
|
--enable QtAssistant
|
|
|
|
.if defined(WITH_DEBUG)
|
|
ARGS+= --debug --trace
|
|
.endif
|
|
|
|
.include "../py-sip/files/bsd.pyqt.mk"
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITHOUT_API)
|
|
ARGS+= --no-qsci-api
|
|
PLIST_SUB+= API="@comment "
|
|
.else
|
|
LIB_DEPENDS+= qscintilla2.8:${PORTSDIR}/devel/qscintilla2
|
|
ARGS+= --qsci-api --qsci-api-destdir=${QSCIDIR}
|
|
PLIST_SUB+= API=""
|
|
.endif
|
|
|
|
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}/QtAssistant/Makefile
|
|
|
|
.include <bsd.port.mk>
|