090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
64 lines
2.1 KiB
Makefile
64 lines
2.1 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= 1
|
|
CATEGORIES?= graphics
|
|
MASTER_SITES= ${MASTER_SITE_QT}
|
|
PKGNAMEPREFIX= qt4-
|
|
DISTNAME= qt-x11-opensource-src-${PORTVERSION}
|
|
DIST_SUBDIR= KDE
|
|
|
|
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
|
|
|
|
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
|
|
EXTRACT_AFTER_ARGS=| ${TAR} -xf - \
|
|
--exclude '${DISTNAME}/mkspecs' --exclude '${DISTNAME}/qmake' \
|
|
--exclude '${DISTNAME}/demos' --exclude '${DISTNAME}/examples' \
|
|
--exclude '${DISTNAME}/src/network' --exclude '${DISTNAME}/src/xml' \
|
|
--exclude '${DISTNAME}/src/opengl' --exclude '${DISTNAME}/src/qt3support' \
|
|
--exclude '${DISTNAME}/src/sql' \
|
|
--exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/uic' \
|
|
--exclude '${DISTNAME}/src/tools/rcc' --exclude '${DISTNAME}/src/tools/uic3' \
|
|
--exclude '${DISTNAME}/tools/assistant' \
|
|
--exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \
|
|
--exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb'
|
|
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
|
|
|
|
post-build:
|
|
cd ${WRKSRC}/gif; qmake-qt4; make -f Makefile
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/gif; make -f Makefile install
|
|
|
|
.include <bsd.port.mk>
|