7676a611d6
2.24.0 ====== Fixes - Fix pokit-policy-file-validate check (Saleem Abdulrasool) Translation updates (ar, bg, cs, da, de, en_GB, et, fr, gu, hr, hu, it, kn, lt, mai, or, pt, pt_BR, ro, ru, sr, ta, te, tr, uk, vi 2.23.2 ====== Fixes - cleanups (Kjartan) Features - stop using /tmp for the IOR, instead use the DBus session bus (Ray Strode) - optionally install a DBus service for system-wide settings (Matthias Clasen, Behdad Esfahbod) 2.23.1 ====== Fixes - Fix the build. (Kjartan) 2.23.0 ====== Fixes - stop spamming syslog (David Förster) - signal handling fixes (Javier Uruen Val) - use AC_HELP_STRINGS for nice formatting (Sven Herzberg) - timeout batching work (Matthias Clasen) - remove syslog spamming code (from Debian) - fix a crash when unsetting a key with no writable source (Richard Hult) - allow overriding $TMPDIR (Frederic Crozat) - integration with D-BUS (Ray Strode) - translation updates (ar, da, es, gl, he, nb, nl, sq, sk, th, vi)
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
# $NetBSD: buildlink3.mk,v 1.15 2008/10/09 20:53:48 wiz Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
GCONF_BUILDLINK3_MK:= ${GCONF_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= GConf
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:NGConf}
|
|
BUILDLINK_PACKAGES+= GConf
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}GConf
|
|
|
|
.if !empty(GCONF_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.GConf+= GConf>=2.8.0.1
|
|
BUILDLINK_ABI_DEPENDS.GConf?= GConf>=2.12.1nb1
|
|
BUILDLINK_PKGSRCDIR.GConf?= ../../devel/GConf
|
|
.endif # GCONF_BUILDLINK3_MK
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../net/ORBit2/buildlink3.mk"
|
|
.include "../../sysutils/dbus/buildlink3.mk"
|
|
.include "../../sysutils/dbus-glib/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../textproc/xmlcatmgr/buildlink3.mk"
|
|
|
|
.if !empty(GCONF_BUILDLINK3_MK:M+)
|
|
BUILDLINK_TARGETS+= GConf-buildlink-fake
|
|
_GCONF_FAKE= ${BUILDLINK_DIR}/bin/gconftool-2
|
|
|
|
.PHONY: GConf-buildlink-fake
|
|
GConf-buildlink-fake:
|
|
${_PKG_SILENT}${_PKG_DEBUG} \
|
|
if [ ! -f ${_GCONF_FAKE} ]; then \
|
|
${ECHO_BUILDLINK_MSG} "Creating ${_GCONF_FAKE}"; \
|
|
${MKDIR} ${_GCONF_FAKE:H}; \
|
|
${ECHO} "#!${SH}" > ${_GCONF_FAKE}; \
|
|
${CHMOD} +x ${_GCONF_FAKE}; \
|
|
fi
|
|
.endif # GCONF_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|