mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
c2dd4d2e2d
The area51 repository features commits by Alonso Schaich, avilla, fluffy, jhale, makc and rakuco. Common changes: - Trim Makefile header - Convert to new option framework - Add/improve desktop entries - Remove upstreamed patches Mk/bsd.qt.mk: - Set QMAKESPEC at late stage (to fix potential problem if USE_GCC is used) [1] devel/qmake: - Fix crash due to off-by one error [2] multimedia/qt4-phonon*: - Deprecate in favour of multimedia/phonon* www/qt4-webkit: - Make dependence on GStreamer optional [3] devel/qtcreator: - Enable qml-designer in devel/qtcreator (requires privite Qt headers) [4] Reported by: avg via irc [1] Submitted by: avg via maillist [2] PR: ports/175644 [3] Submitted by: danfe [3] PR: ports/169809 [4] Reported by: tcb <tcberner at gmail.com> [4]
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
# Created by: lofi@freebsd.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= iconengines
|
|
DISTVERSION= ${QT4_VERSION}
|
|
CATEGORIES?= graphics
|
|
PKGNAMEPREFIX= qt4-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt SVG icon engine plugin
|
|
|
|
USE_QT4= qmake_build moc_build corelib gui svg xml
|
|
QT_NONSTANDARD= yes
|
|
QT_DIST= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
ALL_TARGET= first
|
|
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
|
|
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib:$$LD_LIBRARY_PATH \
|
|
PATH=${WRKSRC}/bin:$$PATH
|
|
|
|
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
|
|
src/activeqt src/dbus src/multimedia src/network src/opengl \
|
|
src/openvg src/phonon src/qt3support src/s60installs \
|
|
src/s60main src/script src/scripttools src/sql src/testlib \
|
|
src/tools src/winmain src/xml src/xmlpatterns \
|
|
src/3rdparty/clucene src/3rdparty/freetype \
|
|
src/3rdparty/libjpeg src/3rdparty/libmng src/3rdparty/libpng \
|
|
src/3rdparty/libtiff src/3rdparty/phonon src/3rdparty/webkit
|
|
EXTRACT_AFTER_ARGS= | ${TAR} -xf -
|
|
.for dne in ${DO_NOT_EXTRACT}
|
|
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
|
|
.endfor
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}/svgiconengine
|
|
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
|
|
|
EXTRA_PATCHES= ${.CURDIR}/../../devel/qt4/files/patch-configure
|
|
|
|
pre-configure:
|
|
${MKDIR} ${WRKSRC}/mkspecs
|
|
${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/bin/qmake
|
|
${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/bin/moc
|
|
|
|
.include <bsd.port.mk>
|