diff options
author | David Tardon <dtardon@redhat.com> | 2013-11-26 19:34:46 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-11-26 19:40:32 +0100 |
commit | 9ce3e2ae14ecd2a0acd9e63818c1bd82c7a3fc52 (patch) | |
tree | b4aafda5a0a0ebe84f806a6796a6ed3594d2049e /instsetoo_native | |
parent | f89712a13119e935dd96f38097ee746b15bb7ccb (diff) |
generate sofficerc for instdir
Change-Id: I06ddbc89c58384ce757ac809788f9d978677cb9c
Diffstat (limited to 'instsetoo_native')
-rw-r--r-- | instsetoo_native/CustomTarget_setup.mk | 17 | ||||
-rw-r--r-- | instsetoo_native/Package_setup.mk | 1 |
2 files changed, 18 insertions, 0 deletions
diff --git a/instsetoo_native/CustomTarget_setup.mk b/instsetoo_native/CustomTarget_setup.mk index 47a52f1d6082..5d3c55e83607 100644 --- a/instsetoo_native/CustomTarget_setup.mk +++ b/instsetoo_native/CustomTarget_setup.mk @@ -16,6 +16,7 @@ $(eval $(call gb_CustomTarget_register_targets,instsetoo_native/setup,\ $(if $(filter TRUE,$(DISABLE_PYTHON)),,$(call gb_Helper_get_rcfile,pythonloader.uno)) \ $(if $(filter DESKTOP,$(BUILD_TYPE)),$(if $(filter-out MACOSX,$(OS)), \ $(call gb_Helper_get_rcfile,redirect))) \ + $(call gb_Helper_get_rcfile,soffice) \ $(call gb_Helper_get_rcfile,uno) \ $(call gb_Helper_get_rcfile,version) \ )) @@ -110,6 +111,22 @@ $(call gb_CustomTarget_get_workdir,instsetoo_native/setup)/$(call gb_Helper_get_ && echo 'URE_BOOTSTRAP=$${ORIGIN}/$(call gb_Helper_get_rcfile,fundamental)' \ ) > $@ +$(call gb_CustomTarget_get_workdir,instsetoo_native/setup)/$(call gb_Helper_get_rcfile,soffice) : + $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1) + ( \ + echo '[Bootstrap]' \ + && echo 'HideEula=1' \ + && echo 'Logo=1' \ + && echo 'NativeProgress=false' \ + && echo 'ProgressBarColor=128,128,128' \ + && echo 'ProgressFrameColor=245,245,245' \ + && echo 'ProgressPosition=72,189' \ + && echo 'ProgressSize=409,8' \ + && echo 'ProgressTextBaseline=170' \ + && echo 'ProgressTextColor=255,255,255' \ + && echo 'URE_BOOTSTRAP=$${ORIGIN}/$(call gb_Helper_get_rcfile,fundamental)' \ + ) > $@ + $(call gb_CustomTarget_get_workdir,instsetoo_native/setup)/$(call gb_Helper_get_rcfile,uno) : $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1) ( \ diff --git a/instsetoo_native/Package_setup.mk b/instsetoo_native/Package_setup.mk index 72016152f48b..fd057725e57d 100644 --- a/instsetoo_native/Package_setup.mk +++ b/instsetoo_native/Package_setup.mk @@ -16,6 +16,7 @@ $(eval $(call gb_Package_add_files,instsetoo_native_setup,$(LIBO_ETC_FOLDER),\ $(if $(filter TRUE,$(DISABLE_PYTHON)),,$(call gb_Helper_get_rcfile,pythonloader.uno)) \ $(if $(filter DESKTOP,$(BUILD_TYPE)),$(if $(filter-out MACOSX,$(OS)), \ $(call gb_Helper_get_rcfile,redirect))) \ + $(call gb_Helper_get_rcfile,soffice) \ $(call gb_Helper_get_rcfile,uno) \ $(call gb_Helper_get_rcfile,version) \ )) |