mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
e9424863a5
The KDE FreeBSD team would like to say thanks to all the helpers and submitters. Tested by: pointyhat-exp-run (myself)
57 lines
1.6 KiB
Makefile
57 lines
1.6 KiB
Makefile
# -*-mode: makefile-*-
|
|
# New ports collection makefile for: qt40
|
|
# Date created: Wed Jun 29 11:49:42 CEST 2005
|
|
# Whom: lofi@freebsd.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= imageformats
|
|
PORTVERSION= ${QT4_VERSION}
|
|
PORTREVISION= 0
|
|
CATEGORIES?= graphics
|
|
PKGNAMEPREFIX= qt4-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt imageformat plugins for GIF, JPEG, MNG and SVG
|
|
|
|
LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \
|
|
mng:${PORTSDIR}/graphics/libmng \
|
|
png:${PORTSDIR}/graphics/png \
|
|
tiff:${PORTSDIR}/graphics/tiff
|
|
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= qmake_build moc_build rcc_build corelib gui svg xml
|
|
QT_NONSTANDARD= yes
|
|
QT_DIST= yes
|
|
MAKE_JOBS_SAFE= true
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
ALL_TARGET= first
|
|
CONFIGURE_ENV?= QTDIR=${WRKSRC} PATH=${WRKSRC}/bin:$$PATH
|
|
MAKE_ENV?= QTDIR=${WRKSRC} LD_LIBRARY_PATH=${WRKSRC}/lib \
|
|
PATH=${WRKSRC}/bin:$$PATH
|
|
|
|
DO_NOT_EXTRACT= demos doc examples mkspecs qmake tools translations \
|
|
src/dbus src/network src/opengl src/phonon \
|
|
src/qt3support src/script src/sql src/testlib \
|
|
src/tools src/xmlpatterns src/3rdparty/clucene \
|
|
src/3rdparty/kdebase src/3rdparty/kdelibs src/3rdparty/webkit
|
|
EXTRACT_AFTER_ARGS= |${TAR} -xf -
|
|
.for dne in ${DO_NOT_EXTRACT}
|
|
EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/${dne}'
|
|
.endfor
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src/plugins/${PORTNAME}
|
|
CONFIGURE_WRKSRC=${WRKSRC}/../../..
|
|
|
|
pre-configure:
|
|
${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC}
|
|
${MKDIR} ${WRKSRC}/../../../mkspecs
|
|
${LN} -sf ${LOCALBASE}/bin/qmake-qt4 ${WRKSRC}/../../../bin/qmake
|
|
${LN} -sf ${LOCALBASE}/bin/moc-qt4 ${WRKSRC}/../../../bin/moc
|
|
${LN} -sf ${LOCALBASE}/bin/rcc ${WRKSRC}/../../../bin/rcc
|
|
|
|
.include <bsd.port.mk>
|