1808f72dc4
The GIF handler is part of qt{4,5}-imageformats, not qt{4,5}-gui. Big pointy hat to me. I've chosen not to force users to rebuild the -gui ports yet again with a PORTREVISION bump since the code built in those ports is the same regardless of whether the patch is applied or not. Submitted by: RyoTa SimaMoto <liangtai.s16@gmail.com> MFH: 2014Q3 Security: 904d78b8-0f7e-11e4-8b71-5453ed2e2b49
50 lines
1.5 KiB
Makefile
50 lines
1.5 KiB
Makefile
# Created by: lofi@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= imageformats
|
|
DISTVERSION= ${QT4_VERSION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
PKGNAMEPREFIX= qt4-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt plugins for several image formats
|
|
|
|
LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \
|
|
libmng.so:${PORTSDIR}/graphics/libmng \
|
|
libpng15.so:${PORTSDIR}/graphics/png \
|
|
libtiff.so:${PORTSDIR}/graphics/tiff
|
|
|
|
USES= pkgconfig
|
|
USE_QT4= qmake_build moc_build rcc_build corelib gui svg xml
|
|
QT_DIST= 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
|
|
.for dne in ${DO_NOT_EXTRACT}
|
|
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
|
|
.endfor
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/src/plugins/${PORTNAME}
|
|
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
|
|
|
pre-configure:
|
|
${MKDIR} ${WRKSRC}/mkspecs
|
|
${LN} -sf ${QMAKE} ${WRKSRC}/bin/qmake
|
|
${LN} -sf ${MOC} ${WRKSRC}/bin/moc
|
|
${LN} -sf ${RCC} ${WRKSRC}/bin/rcc
|
|
|
|
.include <bsd.port.mk>
|