mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
85 lines
2.3 KiB
Makefile
85 lines
2.3 KiB
Makefile
# New ports collection makefile for: py-qt4-designer
|
|
# Date created: 2007-02-20
|
|
# Whom: Danny Pansters <danny@ricin.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= designer
|
|
PORTVERSION= ${PYQT4_VERSION}
|
|
PORTREVISION= 2
|
|
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITES_PYQT4}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt4-
|
|
DISTNAME= ${PYQT4_DISTNAME}
|
|
|
|
MAINTAINER= ${PYQT_MAINTAINER}
|
|
COMMENT= Python bindings for the Qt4 toolkit, QtDesigner 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}xml>=${PYQT4_VERSION}:${PORTSDIR}/textproc/py-qt4-xml \
|
|
${PKGNAMEPREFIX}script>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-script
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_PYTHON= 2.5+
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= designer moc gui xml qmake
|
|
|
|
OPTIONS= API "Install QtDesigner API for QScintilla2" on \
|
|
DEBUG "Enable debugging in generated code" off \
|
|
SIPFILES "Install the QtDesigner SIP files" on \
|
|
TRACING "Enable tracing in generated code" off
|
|
|
|
PATCHDIR= ${PORTSDIR}/devel/py-qt4-core/files
|
|
OPTIONSFILE= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options
|
|
SIPDIR= ${PREFIX}/share/py-sip
|
|
CONFIGURE_ENV+= PYQT4_COMPONENT="${PORTNAME}"
|
|
ARGS= -b ${PREFIX}/bin\
|
|
-d ${PYTHON_SITELIBDIR}\
|
|
-q ${QT_PREFIX}/bin/qmake-qt4\
|
|
--confirm-license
|
|
|
|
.include "../py-sip/files/bsd.pyqt.mk"
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_DEBUG)
|
|
ARGS+= --debug
|
|
.endif
|
|
.if defined(WITHOUT_API)
|
|
ARGS+= --no-qsci-api
|
|
PLIST_SUB+= API="@comment "
|
|
PLIST_SUB+= APIFILE="@comment "
|
|
.else
|
|
LIB_DEPENDS+= qscintilla2.3:${PORTSDIR}/devel/qscintilla2
|
|
ARGS+= --qsci-api
|
|
PLIST_SUB+= API=""
|
|
PLIST_SUB+= APIFILE="share/qt4/qsci/api/python/QtDesigner.api"
|
|
.endif
|
|
.if defined(WITHOUT_SIPFILES)
|
|
ARGS+= --no-sip-files
|
|
PLIST_SUB+= SIPFILES="@comment "
|
|
PLIST_SUB+= SIPDIR="@comment "
|
|
.else
|
|
ARGS+= --sipdir ${SIPDIR}
|
|
PLIST_SUB+= SIPFILES=""
|
|
PLIST_SUB+= SIPDIR="share/py-sip"
|
|
.endif
|
|
.if defined(WITH_TRACING)
|
|
ARGS+= --trace
|
|
.endif
|
|
ARGS+= --enable QtDesigner
|
|
|
|
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}/QtDesigner/Makefile
|
|
|
|
.include <bsd.port.post.mk>
|