[Libreoffice-commits] core.git: scp2/source shell/Module_shell.mk shell/Package_scripts_kde.mk shell/Package_scripts.mk shell/Package_scripts_tde.mk
Michael Stahl
mstahl at redhat.com
Wed Mar 2 16:32:32 UTC 2016
scp2/source/kde/module_kde.scp | 4 +---
scp2/source/ooo/file_ooo.scp | 25 -------------------------
scp2/source/ooo/module_ooo.scp | 3 +--
scp2/source/tde/module_tde.scp | 4 +---
shell/Module_shell.mk | 3 ---
shell/Package_scripts.mk | 12 ------------
shell/Package_scripts_kde.mk | 12 ------------
shell/Package_scripts_tde.mk | 12 ------------
8 files changed, 3 insertions(+), 72 deletions(-)
New commits:
commit 16a87cb29ec007ae7bed8d4116f1d6e3dd36a175
Author: Michael Stahl <mstahl at redhat.com>
Date: Wed Mar 2 17:28:43 2016 +0100
shell, scp2: clean up empty script packages
Change-Id: I93abddac491578d470f85bf3e814a0d7a91f0351
diff --git a/scp2/source/kde/module_kde.scp b/scp2/source/kde/module_kde.scp
index 2bf6ac5..6fa6155 100644
--- a/scp2/source/kde/module_kde.scp
+++ b/scp2/source/kde/module_kde.scp
@@ -26,7 +26,5 @@ Module gid_Module_Optional_Kde
PackageInfo = "packinfo_office.txt";
MOD_NAME_DESC(MODULE_OPTIONAL_KDE);
Styles = ();
- Files = (auto_kde_ALL,
- gid_File_Bin_Kde_Open_Url
- );
+ Files = (auto_kde_ALL);
End
diff --git a/scp2/source/ooo/file_ooo.scp b/scp2/source/ooo/file_ooo.scp
index b98ed64..ce009dd 100644
--- a/scp2/source/ooo/file_ooo.scp
+++ b/scp2/source/ooo/file_ooo.scp
@@ -59,31 +59,6 @@ End
#endif
-#if defined UNX && ! defined MACOSX && ! defined LIBO_HEADLESS
-
-File gid_File_shell_scripts
- BIN_FILE_BODY;
- Dir = FILELIST_DIR;
- Name = "shell_scripts.filelist";
- Styles = (FILELIST, PACKED);
-End
-
-File gid_File_Bin_Kde_Open_Url
- BIN_FILE_BODY;
- Dir = FILELIST_DIR;
- Name = "shell_scripts_kde.filelist";
- 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
File gid_File_Bin_Senddoc
BIN_FILE_BODY;
diff --git a/scp2/source/ooo/module_ooo.scp b/scp2/source/ooo/module_ooo.scp
index e975fe8..35fd16c 100644
--- a/scp2/source/ooo/module_ooo.scp
+++ b/scp2/source/ooo/module_ooo.scp
@@ -23,8 +23,7 @@ Module gid_Module_Root
PackageInfo = "packinfo_office.txt";
InstallOrder = "20";
MOD_NAME_DESC(MODULE_ROOT_OSL);
- Files = (gid_File_shell_scripts,
- gid_File_Bin_Senddoc,
+ Files = (gid_File_Bin_Senddoc,
gid_File_Script_Gengal,
gid_File_Txt_Pagein_Common,
gid_File_Txt_Pagein_Calc,
diff --git a/scp2/source/tde/module_tde.scp b/scp2/source/tde/module_tde.scp
index 8e273ab..24725de 100644
--- a/scp2/source/tde/module_tde.scp
+++ b/scp2/source/tde/module_tde.scp
@@ -19,8 +19,6 @@ Module gid_Module_Optional_Tde
PackageInfo = "packinfo_office.txt";
MOD_NAME_DESC(MODULE_OPTIONAL_TDE);
Styles = ();
- Files = (auto_tde_ALL,
- gid_File_Bin_Tde_Open_Url
- );
+ Files = (auto_tde_ALL);
End
diff --git a/shell/Module_shell.mk b/shell/Module_shell.mk
index d0a3318..17661e9 100644
--- a/shell/Module_shell.mk
+++ b/shell/Module_shell.mk
@@ -105,9 +105,6 @@ endif
ifeq ($(USING_X11),TRUE)
$(eval $(call gb_Module_add_targets,shell,\
Library_recentfile \
- Package_scripts \
- Package_scripts_kde \
- Package_scripts_tde \
))
endif
diff --git a/shell/Package_scripts.mk b/shell/Package_scripts.mk
deleted file mode 100644
index 6962fe5..0000000
--- a/shell/Package_scripts.mk
+++ /dev/null
@@ -1,12 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-
-$(eval $(call gb_Package_Package,shell_scripts,$(SRCDIR)/shell/source/unix/misc))
-
-# vim: set shiftwidth=4 tabstop=4 noexpandtab:
diff --git a/shell/Package_scripts_kde.mk b/shell/Package_scripts_kde.mk
deleted file mode 100644
index 4dc1cf5..0000000
--- a/shell/Package_scripts_kde.mk
+++ /dev/null
@@ -1,12 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-
-$(eval $(call gb_Package_Package,shell_scripts_kde,$(SRCDIR)/shell/source/unix/misc))
-
-# vim: set shiftwidth=4 tabstop=4 noexpandtab:
diff --git a/shell/Package_scripts_tde.mk b/shell/Package_scripts_tde.mk
deleted file mode 100644
index d73d824..0000000
--- a/shell/Package_scripts_tde.mk
+++ /dev/null
@@ -1,12 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-
-$(eval $(call gb_Package_Package,shell_scripts_tde,$(SRCDIR)/shell/source/unix/misc))
-
-# vim: set shiftwidth=4 tabstop=4 noexpandtab:
More information about the Libreoffice-commits
mailing list