d01b2ac801
Changes in dconf 0.20.0 ======================== Czech translation updated. Changes in dconf 0.19.92 ========================= - depend on automake 1.11.2 - stop using ACLOCAL_FLAGS - depend on released version of Vala (0.18.0) Changes in dconf 0.19.91 ========================= - fix an unlikely failure in the fuzz testing of gvdb - fix a thread safety issue with file-db Changes in dconf 0.19.90 ========================= - dconf compile: always write little endian - file-db: don't install match rules on no bus (fixes gdbus assertion) - update dconf(1) manpage for 'dconf compile' - fix 'make clean' on FreeBSD - editor: provide appdata Translations updates: Ukrainian translation Aragonese translation Chinese Changes in dconf 0.19.3 ======================== - quite a lot of test coverage improvements - Add a proper DCONF_ERROR error domain - suppress GLib deprecation warnings during build - engine: issue warnings about missing files only once per source - engine: grok the WritabilityNotify signal from D-Bus - gsettings: handle writability changes correctly - engine: assorted fixes for issues found during testing - portability: only link to -ldl if it is required - add support for 'file-db' to profiles: this is an absolute path to a immutable dconf database file - add support for finding profiles in XDG_DATA_DIRS if they are not in /etc - add 'dconf compile' command for building dconf databases from keyfiles in arbitrary locations (like from the build system of a project that may want to install a file-db) - editor: add a section separator to the app menu for consistency Changes in dconf 0.19.2 ======================== - Add support for the new GSettingsBackend.read_user_value() API - bump GLib version depend accordingly (2.39.1) Translations updates: Greek Catalan (Valencian) Simplified Chinese Persian
34 lines
1,012 B
Makefile
34 lines
1,012 B
Makefile
# $NetBSD: Makefile,v 1.28 2014/09/10 10:54:46 prlw1 Exp $
|
|
|
|
.include "../../devel/dconf/Makefile.common"
|
|
|
|
PKGNAME= ${DISTNAME:S/dconf/dconf-editor/}
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/dconf/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../devel/dconf/patches
|
|
|
|
CONFIGURE_ARGS+= --enable-editor
|
|
CONFIGURE_ARGS+= --disable-man
|
|
|
|
BUILD_DIRS= editor
|
|
INSTALL_DIRS= editor
|
|
|
|
SUBST_CLASSES+= prefix
|
|
SUBST_STAGE.prefix= pre-configure
|
|
SUBST_FILES.prefix= editor/dconf-model.vala
|
|
SUBST_VARS.prefix= PREFIX
|
|
|
|
# SUBST doesn't touch - force rebuild
|
|
pre-build:
|
|
${RM} ${WRKSRC}/editor/dconf-model.c
|
|
|
|
.include "../../devel/glib2/schemas.mk"
|
|
BUILDLINK_DEPMETHOD.vala= build
|
|
.include "../../lang/vala018/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.dconf+= dconf>=${PKGVERSION_NOREV}
|
|
.include "../../devel/dconf/buildlink3.mk"
|
|
.include "../../sysutils/dbus/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../x11/gtk3/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|