d6119cb107
This commit also adds proper staging support to all the ports being updated. In collaboration with Schaich Alonso <alonsoschaich@fastmail.fm> and Tomasz Kowalczyk <kowalczfbsd@gmail.com>.
61 lines
1.6 KiB
Makefile
61 lines
1.6 KiB
Makefile
# Created by: Danny Pansters <danny@ricin.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= svg
|
|
PORTVERSION= ${PYQT4_VERSION}
|
|
PORTEPOCH= 1
|
|
CATEGORIES= graphics 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, QtSvg module
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=${SIP_VERSION}:${PORTSDIR}/devel/py-sip
|
|
RUN_DEPENDS= ${PKGNAMEPREFIX}gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui
|
|
|
|
DISTINFO_FILE= ${PYQT4_DISTINFO_FILE}
|
|
HAS_CONFIGURE= yes
|
|
USE_PYTHON= 2.5+
|
|
USE_QT4= moc_build svg qmake_build
|
|
|
|
OPTIONS_DEFINE= API
|
|
OPTIONS_DEFAULT=API
|
|
API_DESC= Install QtSvg API for QScintilla2
|
|
|
|
PATCHDIR= ${.CURDIR}/../../devel/py-qt4-core/files
|
|
OPTIONSFILE?= ${PORT_DBDIR}/py-qt4-${PORTNAME}/options
|
|
SIPDIR= ${PREFIX}/share/py-sip
|
|
QSCIDIR= ${PREFIX}/share/qt4/qsci
|
|
ARGS= -b ${PREFIX}/bin \
|
|
-d ${PYTHONPREFIX_SITELIBDIR} \
|
|
-p ${PREFIX}/${QT_PLUGINDIR_REL} \
|
|
-q ${QMAKE} \
|
|
--confirm-license \
|
|
--sipdir ${SIPDIR} \
|
|
--enable QtSvg \
|
|
CC="${CC}" CXX="${CXX}" LINK="${CXX}" LINK_SHLIB="${CXX}" \
|
|
CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
|
|
|
|
.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk"
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if empty(PORT_OPTIONS:MAPI)
|
|
ARGS+= --no-qsci-api
|
|
PLIST_SUB+= API="@comment "
|
|
.else
|
|
LIB_DEPENDS+= qscintilla2:${PORTSDIR}/devel/qscintilla2
|
|
ARGS+= --qsci-api --qsci-api-destdir=${QSCIDIR}
|
|
PLIST_SUB+= API=""
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG)
|
|
ARGS+= --debug --trace
|
|
.endif
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV}\
|
|
${PYTHON_CMD} configure.py ${ARGS}
|
|
|
|
.include <bsd.port.mk>
|