diff options
author | makc <makc@FreeBSD.org> | 2013-02-04 02:16:07 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2013-02-04 02:16:07 +0800 |
commit | 7ab84c06519afffae15f6c14b92743f8991311de (patch) | |
tree | 2cb4abebbb7836188618ba34b415099af9acc1de /x11/py-qt4-opengl | |
parent | b35e2d02eb79155967699a2df3d74240374730cd (diff) | |
download | freebsd-ports-gnome-7ab84c06519afffae15f6c14b92743f8991311de.tar.gz freebsd-ports-gnome-7ab84c06519afffae15f6c14b92743f8991311de.tar.zst freebsd-ports-gnome-7ab84c06519afffae15f6c14b92743f8991311de.zip |
KDE/FreeBSD team presents:
SIP 4.14.3
QScintilla 2.7
PyQt 4.9.6
The area51 repository features commits by jhale and myself.
Changes:
- Trim Makefile header
- Convert to new option framework
Diffstat (limited to 'x11/py-qt4-opengl')
-rw-r--r-- | x11/py-qt4-opengl/Makefile | 41 | ||||
-rw-r--r-- | x11/py-qt4-opengl/pkg-descr | 2 |
2 files changed, 21 insertions, 22 deletions
diff --git a/x11/py-qt4-opengl/Makefile b/x11/py-qt4-opengl/Makefile index b9241083e5e4..8c146a881a50 100644 --- a/x11/py-qt4-opengl/Makefile +++ b/x11/py-qt4-opengl/Makefile @@ -1,12 +1,8 @@ -# New ports collection makefile for: py-qt4-opengl -# Date created: 2007-02-20 -# Whom: Danny Pansters <danny@ricin.com> -# +# Created by: Danny Pansters <danny@ricin.com> # $FreeBSD$ PORTNAME= opengl PORTVERSION= ${PYQT4_VERSION} -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 devel python MASTER_SITES= ${MASTER_SITES_PYQT4} @@ -24,46 +20,49 @@ HAS_CONFIGURE= yes USE_PYTHON= 2.5+ USE_QT4= opengl qmake_build -OPTIONS= API "Install QtOpenGL API for QScintilla2" on +OPTIONS_DEFINE= API +OPTIONS_DEFAULT=API +API_DESC= Install QtOpenGL API for QScintilla2 -PATCHDIR= ${PORTSDIR}/devel/py-qt4-core/files +PATCHDIR= ${.CURDIR}/../../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 QtOpenGL + --enable QtOpenGL \ + CC="${CC}" CXX="${CXX}" LINK="${CXX}" LINK_SHLIB="${CXX}" \ + CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" -.if defined(WITH_DEBUG) -ARGS+= --debug --trace -.endif - -.include "../../devel/py-sip/files/bsd.pyqt.mk" +.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" .include <bsd.port.options.mk> -.if defined(WITHOUT_API) +.if empty(PORT_OPTIONS:MAPI) ARGS+= --no-qsci-api PLIST_SUB+= API="@comment " .else -LIB_DEPENDS+= qscintilla2.8:${PORTSDIR}/devel/qscintilla2 +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} 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}/QtOpenGL/Makefile + ${REINPLACE_CMD} -e 's|^CC.*|CC = ${CC}|' \ + -e 's|^CXX.*|CXX = ${CXX}|' \ + -e 's|^LINK.*|LINK = ${CXX}|' \ + -e 's|^CFLAGS|CXXFLAGS|' \ + ${WRKSRC}/qpy/QtOpenGL/Makefile .include <bsd.port.mk> diff --git a/x11/py-qt4-opengl/pkg-descr b/x11/py-qt4-opengl/pkg-descr index 5b825f579a8e..94c501ddb72c 100644 --- a/x11/py-qt4-opengl/pkg-descr +++ b/x11/py-qt4-opengl/pkg-descr @@ -1,4 +1,4 @@ -PyQt4 is a set of Python bindings for Trolltech's Qt4 application framework. +PyQt4 is a set of Python bindings for Digia's Qt4 application framework. This package provides the QtOpenGL module. WWW: http://www.riverbankcomputing.co.uk/software/pyqt/ |