summaryrefslogtreecommitdiff
path: root/editors/openoffice-devel/files/patch-solenv_bin_modules_ExtensionsLst.pm
diff options
context:
space:
mode:
authorDon Lewis <truckman@FreeBSD.org>2015-11-06 15:50:39 +0000
committerDon Lewis <truckman@FreeBSD.org>2015-11-06 15:50:39 +0000
commit747c0e2492bb3b5da558adf825b1e89032ba84be (patch)
treeea00b55590c62cad2050543c7fdd65888db9f5b2 /editors/openoffice-devel/files/patch-solenv_bin_modules_ExtensionsLst.pm
parent- Clarify LICENSE (diff)
Switch back to tracking the upstream trunk instead of OpenOffice 4.1.2
release candidates. Upgrade to SVN revision r1712473. Add an option to build and install the PDF Import extension and enable it by default. Patch the extensions.lst file so that it points to the locations of the extension files rather than passing that information as a configure option. Add a patch to enable enable the use of file:// in extensions.lst for local integrated extensions as is documented in the comments in this file. Nuke the patches that have been committed upstream. Don't try to run the create_tree.sh script with "sh -c" since this script is not marked executable. MFH: 2015Q4
Diffstat (limited to 'editors/openoffice-devel/files/patch-solenv_bin_modules_ExtensionsLst.pm')
-rw-r--r--editors/openoffice-devel/files/patch-solenv_bin_modules_ExtensionsLst.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/editors/openoffice-devel/files/patch-solenv_bin_modules_ExtensionsLst.pm b/editors/openoffice-devel/files/patch-solenv_bin_modules_ExtensionsLst.pm
new file mode 100644
index 000000000000..0d322a721f21
--- /dev/null
+++ b/editors/openoffice-devel/files/patch-solenv_bin_modules_ExtensionsLst.pm
@@ -0,0 +1,13 @@
+--- solenv/bin/modules/ExtensionsLst.pm.orig 2014-02-25 08:33:31 UTC
++++ solenv/bin/modules/ExtensionsLst.pm
+@@ -592,8 +592,9 @@ sub GetExtensionList ($@)
+ my $protocol_selector = shift;
+ my @language_list = @_;
+
+- if (defined $ENV{'ENABLE_BUNDLED_DICTIONARIES'}
++ if ((defined $ENV{'ENABLE_BUNDLED_DICTIONARIES'}
+ && $ENV{'ENABLE_BUNDLED_DICTIONARIES'} eq "YES")
++ || $protocol_selector eq "file")
+ {
+ my $full_file_name = Prepare();
+ my @urls = ParseExtensionsLst($full_file_name, \@language_list);