mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
8bd00266dc
Approved by: portmgr (bsd.port.mk changes)
58 lines
1.8 KiB
Makefile
58 lines
1.8 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= qdbusviewer
|
|
PORTVERSION= ${QT4_VERSION}
|
|
PORTREVISION=0
|
|
CATEGORIES?= devel
|
|
MASTER_SITES= ${MASTER_SITE_QT}
|
|
PKGNAMEPREFIX= qt4-
|
|
DISTNAME= qt-x11-opensource-src-${PORTVERSION}
|
|
DIST_SUBDIR= KDE
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt4 D-BUS viewer
|
|
|
|
LIB_DEPENDS= dbus-1.3:${PORTSDIR}/devel/dbus
|
|
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= qmake moc rcc corelib dbus gui xml
|
|
QT_NONSTANDARD= yes
|
|
QT_DIST= yes
|
|
|
|
HAS_CONFIGURE= yes
|
|
USE_LDCONFIG= 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/opengl' --exclude '${DISTNAME}/src/sql' \
|
|
--exclude '${DISTNAME}/src/tools/moc' --exclude '${DISTNAME}/src/tools/rcc' \
|
|
--exclude '${DISTNAME}/src/tools/uic3' --exclude '${DISTNAME}/tools/designer' \
|
|
--exclude '${DISTNAME}/tools/linguist' --exclude '${DISTNAME}/tools/porting' \
|
|
--exclude '${DISTNAME}/tools/qtconfig' --exclude '${DISTNAME}/tools/qvfb'
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/tools/qdbus/tools/qdbusviewer
|
|
CONFIGURE_WRKSRC=${WRKSRC}/../../../..
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-configure:
|
|
${CP} ${.CURDIR}/../../devel/qt4/files/configure ${CONFIGURE_WRKSRC}
|
|
${REINPLACE_CMD} -e 's|target.path.*|target.path=${PREFIX}/bin|g' \
|
|
${WRKSRC}/qdbusviewer.pro
|
|
${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.post.mk>
|