blob: d01f314dac871ac2fbd36445c8f5c5e72c1e0082 (
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
|
# $NetBSD: buildlink3.mk,v 1.12 2009/02/23 11:00:01 wiz Exp $
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
DBUS_BUILDLINK3_MK:= ${DBUS_BUILDLINK3_MK}+
.if !empty(BUILDLINK_DEPTH:M+)
BUILDLINK_DEPENDS+= dbus
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Ndbus}
BUILDLINK_PACKAGES+= dbus
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}dbus
.if !empty(DBUS_BUILDLINK3_MK:M+)
BUILDLINK_API_DEPENDS.dbus+= dbus>=0.91
BUILDLINK_PKGSRCDIR.dbus?= ../../sysutils/dbus
PRINT_PLIST_AWK+= /^@dirrm include\/dbus-1.0\/dbus$$/ \
{ print "@comment in dbus: " $$0; next; }
PRINT_PLIST_AWK+= /^@exec ..MKDIR. %D\/share\/dbus-1\/services/ { next; }
PRINT_PLIST_AWK+= /^@dirrm share\/dbus-1\/services/ \
{ print "@comment in dbus: " $$0; next }
PRINT_PLIST_AWK+= /^@dirrm share\/dbus-1/ \
{ print "@comment in dbus: " $$0; next }
.endif # DBUS_BUILDLINK3_MK
.include "../../textproc/expat/buildlink3.mk"
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|