diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2015-10-12 10:43:48 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2015-10-12 18:20:58 +0200 |
commit | a9e7645cb96135609016533793580d1a94158af7 (patch) | |
tree | 65e6cc8383c9edd90ae1c715ab68863bddca04d5 /scp2 | |
parent | 4d4835cc55561b7ccdd628fa3a40d71fc9e9ff9e (diff) |
TDE: move stuff into the tde-integration package
Currently the package just contains the TDE shell backend library.
This moves the URL handler tde-url-open and the vcl plugin into
the integration package, like the KDE3 based kde-integration.
The TDE address book driver is left in the core package.
Change-Id: I2687b313d7f106bb344c65c50ae0a07b0140def0
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/AutoInstall.mk | 2 | ||||
-rw-r--r-- | scp2/source/ooo/file_ooo.scp | 7 | ||||
-rw-r--r-- | scp2/source/tde/module_tde.scp | 4 |
3 files changed, 11 insertions, 2 deletions
diff --git a/scp2/AutoInstall.mk b/scp2/AutoInstall.mk index 7d2a3472fe57..3f6de8c6f8da 100644 --- a/scp2/AutoInstall.mk +++ b/scp2/AutoInstall.mk @@ -42,7 +42,7 @@ $(eval $(call gb_AutoInstall_add_module,pdfimport,LIBO_LIB_FILE,LIBO_EXECUTABLE) $(eval $(call gb_AutoInstall_add_module,quickstart,,LIBO_EXECUTABLE)) $(eval $(call gb_AutoInstall_add_module,reportbuilder,LIBO_LIB_FILE,,LIBO_JAR_FILE)) $(eval $(call gb_AutoInstall_add_module,sdk,,SDK_EXECUTABLE)) -$(eval $(call gb_AutoInstall_add_module,tde,LIBO_LIB_FILE)) +$(eval $(call gb_AutoInstall_add_module,tde,LIBO_LIB_FILE,LIBO_EXECUTABLE)) $(eval $(call gb_AutoInstall_add_module,ure,URE_PRIVATE_LIB,URE_EXECUTABLE,URE_JAR_FILE)) $(eval $(call gb_AutoInstall_add_module,winexplorerextbinarytable,LIBO_LIB_FILE_BINARYTABLE)) $(eval $(call gb_AutoInstall_add_module,winexplorerext,SHLXTHDL_LIB_FILE)) diff --git a/scp2/source/ooo/file_ooo.scp b/scp2/source/ooo/file_ooo.scp index b0f338290b94..ab8daafa16f1 100644 --- a/scp2/source/ooo/file_ooo.scp +++ b/scp2/source/ooo/file_ooo.scp @@ -82,6 +82,13 @@ File gid_File_Bin_Kde_Open_Url Styles = (FILELIST, PACKED); End +File gid_File_Bin_Tde_Open_Url + BIN_FILE_BODY; + Dir = FILELIST_DIR; + Name = "shell_scripts_tde.filelist"; + Styles = (FILELIST, PACKED); +End + #endif #if defined UNX diff --git a/scp2/source/tde/module_tde.scp b/scp2/source/tde/module_tde.scp index 24725de25303..8e273ab9385a 100644 --- a/scp2/source/tde/module_tde.scp +++ b/scp2/source/tde/module_tde.scp @@ -19,6 +19,8 @@ Module gid_Module_Optional_Tde PackageInfo = "packinfo_office.txt"; MOD_NAME_DESC(MODULE_OPTIONAL_TDE); Styles = (); - Files = (auto_tde_ALL); + Files = (auto_tde_ALL, + gid_File_Bin_Tde_Open_Url + ); End |