diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-10-28 22:11:00 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-10-29 11:37:48 +0100 |
commit | 7c898c933cb5c4baa7315bb5547a1b53cb12ea61 (patch) | |
tree | 0022d8dea8ccb320374ffe0a44a960ee7d4fbaed /scp2 | |
parent | 0183dc88e25b30725c118fd5b515e739d717b6be (diff) |
scp2: move brand executables to AutoInstall
... except for soffice.exe which is referenced by some FolderItem.
Change-Id: Ie5788aa950f0b8526220fb2c8b9281ce934b8a5d
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/AutoInstall.mk | 1 | ||||
-rw-r--r-- | scp2/InstallModule_ooo.mk | 1 | ||||
-rw-r--r-- | scp2/source/ooo/common_brand.scp | 60 |
3 files changed, 9 insertions, 53 deletions
diff --git a/scp2/AutoInstall.mk b/scp2/AutoInstall.mk index 1a61765ef4de..78879ce278fe 100644 --- a/scp2/AutoInstall.mk +++ b/scp2/AutoInstall.mk @@ -13,6 +13,7 @@ $(eval $(call gb_AutoInstall_add_module,activexbinarytable,LIBO_LIB_FILE_BINARYT $(eval $(call gb_AutoInstall_add_module,activex,LIBO_LIB_FILE)) $(eval $(call gb_AutoInstall_add_module,activexwin64,LIBO_LIB_FILE_COMPONENTCONDITION,,,"VersionNT64")) $(eval $(call gb_AutoInstall_add_module,base,LIBO_LIB_FILE)) +$(eval $(call gb_AutoInstall_add_module,brand,,LIBO_EXECUTABLE)) $(eval $(call gb_AutoInstall_add_module,calc,LIBO_LIB_FILE)) $(eval $(call gb_AutoInstall_add_module,crashrep,,LIBO_EXECUTABLE)) $(eval $(call gb_AutoInstall_add_module,extensions_bsh,,,LIBO_JAR_FILE)) diff --git a/scp2/InstallModule_ooo.mk b/scp2/InstallModule_ooo.mk index df767a1f4620..d2ef3f5f5a34 100644 --- a/scp2/InstallModule_ooo.mk +++ b/scp2/InstallModule_ooo.mk @@ -10,6 +10,7 @@ $(eval $(call gb_InstallModule_InstallModule,scp2/ooo)) $(eval $(call gb_InstallModule_use_auto_install_libs,scp2/ooo,\ + brand \ ooo \ ooobinarytable \ reportbuilder \ diff --git a/scp2/source/ooo/common_brand.scp b/scp2/source/ooo/common_brand.scp index ce5dcbc03619..314dd87cf3f5 100644 --- a/scp2/source/ooo/common_brand.scp +++ b/scp2/source/ooo/common_brand.scp @@ -27,6 +27,7 @@ #include "macros.inc" +#include "AutoInstall/brand" #include "AutoInstall/crashrep" #include "config_folders.h" @@ -54,15 +55,12 @@ Module gid_Module_Root_Brand gid_Brand_Dir_Share_Registry, gid_Brand_Dir_Share_Xdg); Files = (auto_crashrep_ALL, + auto_brand_ALL, gid_Brand_File_Bin_Crashreport_Script, gid_Brand_File_Gdb_Trace, gid_Brand_File_Bin_Soffice, - gid_Brand_File_Bin_Soffice_Bin, gid_Brand_File_Bin_Soffice_Bin_Manifest, gid_Brand_File_Bin_Unoinfo, - gid_Brand_File_Bin_Unopkgcom, - gid_Brand_File_Bin_Unopkgexe, - gid_Brand_File_Bin_Unopkg, gid_Brand_File_Bmp_IntroAboutShell, gid_Brand_File_Bmp_IntroAboutShell_custom, gid_Brand_File_Desktophelper_Txt, @@ -504,35 +502,16 @@ File gid_Brand_File_Bin_Soffice Styles = (FILELIST, PACKED); End -#else +#endif +#ifdef WNT +// TODO: some FolderItem reference this? File gid_Brand_File_Bin_Soffice BIN_FILE_BODY; Dir = gid_Brand_Dir_Program; Name = EXENAME(soffice); Styles = (PACKED); End - -#endif - -#ifndef MACOSX -File gid_Brand_File_Bin_Soffice_Bin - BIN_FILE_BODY; - Dir = gid_Brand_Dir_Program; - Styles = (PACKED); - Name = "soffice.bin"; -End -#endif - -#if defined UNX && ! defined MACOSX - -File gid_File_Bin_QStart_Bin - BIN_FILE_BODY; - Dir = gid_Brand_Dir_Program; - Styles = (PACKED); - Name = "oosplash"; -End - #endif #ifdef WNT @@ -545,30 +524,12 @@ File gid_Brand_File_Desktophelper_Txt End #endif -#if !defined MACOSX +#if !defined MACOSX && !defined WNT File gid_Brand_File_Bin_Unoinfo BIN_FILE_BODY; Dir = gid_Brand_Dir_Program; - Name = EXENAME(unoinfo); - Styles = (PACKED); -End -#endif - -#ifdef WNT -File gid_Brand_File_Bin_Unopkgcom - BIN_FILE_BODY; - Dir = gid_Brand_Dir_Program; - Styles = (PACKED); - Name = "unopkg.com"; -End -#endif - -#ifdef WNT -File gid_Brand_File_Bin_Unopkgexe - BIN_FILE_BODY; - Dir = gid_Brand_Dir_Program; + Name = "unoinfo"; Styles = (PACKED); - Name = "unopkg.exe"; End #endif @@ -581,13 +542,6 @@ File gid_Brand_File_Script_Unopkg End #endif -File gid_Brand_File_Bin_Unopkg - BIN_FILE_BODY; - Dir = gid_Brand_Dir_Program; - Styles = (PACKED); - Name = "unopkg.bin"; -End - File gid_Brand_File_Bmp_IntroAboutShell TXT_FILE_BODY; Dir = FILELIST_DIR; |