summaryrefslogtreecommitdiff
path: root/x11/qt5-dbus/Makefile
blob: 75279e10d79f5cf61599783c2875f9f5bd95d756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# $NetBSD: Makefile,v 1.9 2014/10/07 16:47:16 adam Exp $

PKGNAME=	qt5-dbus-${QTVERSION}
PKGREVISION=	2
COMMENT=	Qt5 DBus support plugin

.include "../../x11/qt5-qtbase/Makefile.common"

BUILD_DIRS=		qtbase/src/dbus

CFLAGS+=		-I${BUILDLINK_PREFIX.dbus}/include/dbus-1.0
CFLAGS+=		-I${BUILDLINK_PREFIX.dbus}/lib/dbus-1.0/include/dbus
CFLAGS+=		-I${BUILDLINK_PREFIX.qt5-qtbase}/qt5/include

INSTALL_ENV+=		INSTALL_ROOT=${DESTDIR}

INSTALLATION_DIRS=	${QTPREFIX}/bin lib/pkgconfig

PC_FILES=		Qt5DBus.pc

# XXX: this is an ugly hack
# qdbuscpp2xml and qdbusxml2cpp should be built and installed, because
# they are referenced from Qt5DBusConfigExtras.cmake, and cmake
# fails to find qtdbus if they are not installed
# I didn't manage to build them though, and the only customers so far
# didn't need their functionality -- wiz 20140501
post-build:
	${ECHO} '#!/bin/sh' > ${WRKSRC}/dummy
	${ECHO} 'false' >> ${WRKSRC}/dummy

post-install:
.for i in ${PC_FILES}
	${RM} -f ${DESTDIR}${PREFIX}/lib/pkgconfig/${i} && \
		cd ${DESTDIR}${PREFIX}/lib/pkgconfig && \
		${LN} -s ${QTPREFIX}/lib/pkgconfig/${i} ${i}
.endfor
	${INSTALL_SCRIPT} ${WRKSRC}/dummy ${DESTDIR}${PREFIX}/qt5/bin/qdbuscpp2xml
	${INSTALL_SCRIPT} ${WRKSRC}/dummy ${DESTDIR}${PREFIX}/qt5/bin/qdbusxml2cpp

.include "../../devel/gettext-lib/buildlink3.mk"
# Use lib/dbus-1.0/include/dbus/dbus-arch-deps.h from sysutils/dbus
USE_DBUS-ARCH-DEPS_H=	yes
.include "../../sysutils/dbus/buildlink3.mk"
.include "../../x11/qt5-qtbase/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"