mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-25 16:48:11 +00:00
m4: Update gsettings m4 macros
This commit is contained in:
parent
c719e01e3b
commit
f364279fb5
1 changed files with 8 additions and 18 deletions
|
@ -37,7 +37,7 @@ mostlyclean-am: clean-gsettings-schemas
|
||||||
gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE))
|
gsettings__enum_file = $(addsuffix .enums.xml,$(gsettings_ENUM_NAMESPACE))
|
||||||
|
|
||||||
%.gschema.valid: %.gschema.xml $(gsettings__enum_file)
|
%.gschema.valid: %.gschema.xml $(gsettings__enum_file)
|
||||||
$(AM_V_GEN) if test -f "$<"; then d=; else d="$(srcdir)/"; fi; $(GLIB_COMPILE_SCHEMAS) --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$${d}$< && touch [$]@
|
$(AM_V_GEN) if test -f "$<"; then d=; else d="$(srcdir)/"; fi; $(GLIB_COMPILE_SCHEMAS) --strict --dry-run $(addprefix --schema-file=,$(gsettings__enum_file)) --schema-file=$${d}$< && touch [$]@
|
||||||
|
|
||||||
all-am: $(gsettings_SCHEMAS:.xml=.valid)
|
all-am: $(gsettings_SCHEMAS:.xml=.valid)
|
||||||
uninstall-am: uninstall-gsettings-schemas
|
uninstall-am: uninstall-gsettings-schemas
|
||||||
|
@ -45,23 +45,13 @@ install-data-am: install-gsettings-schemas
|
||||||
|
|
||||||
.SECONDARY: $(gsettings_SCHEMAS)
|
.SECONDARY: $(gsettings_SCHEMAS)
|
||||||
|
|
||||||
gsettings__base_list = \
|
install-gsettings-schemas: $(gsettings_SCHEMAS) $(gsettings__enum_file)
|
||||||
sed "$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g" | \
|
|
||||||
sed "$$!N;$$!N;$$!N;$$!N;s/\n/ /g"
|
|
||||||
|
|
||||||
install-gsettings-schemas: $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file)
|
|
||||||
@$(NORMAL_INSTALL)
|
@$(NORMAL_INSTALL)
|
||||||
test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"
|
if test -n "$^"; then \
|
||||||
@list='\''$(gsettings__enum_file) $(gsettings_SCHEMAS)'\''; test -n "$(gsettingsschemadir)" || list=; \
|
test -z "$(gsettingsschemadir)" || $(MKDIR_P) "$(DESTDIR)$(gsettingsschemadir)"; \
|
||||||
for p in $$list; do \
|
$(INSTALL_DATA) $^ "$(DESTDIR)$(gsettingsschemadir)"; \
|
||||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); \
|
||||||
echo "$$d$$p"; \
|
fi
|
||||||
done | $(gsettings__base_list) | \
|
|
||||||
while read files; do \
|
|
||||||
echo " $(INSTALL_DATA) $$files '\''$(DESTDIR)$(gsettingsschemadir)'\''"; \
|
|
||||||
$(INSTALL_DATA) $$files "$(DESTDIR)$(gsettingsschemadir)" || exit $$?; \
|
|
||||||
done
|
|
||||||
test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir)
|
|
||||||
|
|
||||||
uninstall-gsettings-schemas:
|
uninstall-gsettings-schemas:
|
||||||
@$(NORMAL_UNINSTALL)
|
@$(NORMAL_UNINSTALL)
|
||||||
|
@ -77,7 +67,7 @@ clean-gsettings-schemas:
|
||||||
|
|
||||||
ifdef gsettings_ENUM_NAMESPACE
|
ifdef gsettings_ENUM_NAMESPACE
|
||||||
$(gsettings__enum_file): $(gsettings_ENUM_FILES)
|
$(gsettings__enum_file): $(gsettings_ENUM_FILES)
|
||||||
$(AM_V_GEN) glib-mkenums --comments '\''<!-- @comment@ -->'\'' --fhead "<schemalist>" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " <value nick='\''@valuenick@'\'' value='\''@valuenum@'\''/>" --vtail " </@type@>" --ftail "</schemalist>" $(gsettings_ENUM_FILES) > [$]@.tmp && mv [$]@.tmp [$]@
|
$(AM_V_GEN) glib-mkenums --comments '\''<!-- @comment@ -->'\'' --fhead "<schemalist>" --vhead " <@type@ id='\''$(gsettings_ENUM_NAMESPACE).@EnumName@'\''>" --vprod " <value nick='\''@valuenick@'\'' value='\''@valuenum@'\''/>" --vtail " </@type@>" --ftail "</schemalist>" [$]^ > [$]@.tmp && mv [$]@.tmp [$]@
|
||||||
endif
|
endif
|
||||||
'
|
'
|
||||||
_GSETTINGS_SUBST(GSETTINGS_RULES)
|
_GSETTINGS_SUBST(GSETTINGS_RULES)
|
||||||
|
|
Loading…
Reference in a new issue