Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / scp2 / source / ooo / module_pdfimport.scp
blob25e0a92d4fcb51307b58e531c0e0675e3290a380
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
10 // This module is normally included unconditionally in the core installation, it
11 // provides various import filters for both plain PDF and hybrid PDF/ODF.  For
12 // --with-system-poppler builds it can be advantageous though to package this
13 // module as an individual, optional part, so that the core installation does
14 // not feature a dependency on a poppler package.
16 // The /org.openoffice.TypeDetection.Types/Types/pdf_Portable_Document_Format
17 // configuration node contained in pdfimport.xcd needs to override a
18 // node with the same name but which lacks import functionality and
19 // which is duplicated across calc, draw, impress, math, writer .xcd
20 // files.  For this to work, there is a hack in
21 // postprocess/packregistry/makefile.mk to make pdfimport.xcd depend
22 // on all those other .xcd files (optionally, as not all of the other
23 // .xcd files need to be present in a given installation).
25 #include "macros.inc"
27 #include "AutoInstall/pdfimport"
29 Module gid_Module_Pdfimport
30     Name = "PDF Import";
31     Description = "PDF Import";
32     PackageInfo = "packinfo_office.txt";
33     ParentID = gid_Module_Root_Brand;
34     Styles = (HIDDEN_ROOT);
35     Dirs = (gid_Dir_Share_Xpdfimport);
36     Files = (auto_pdfimport_ALL,
37         gid_File_Xcd_Pdfimport);
38 End
40 Directory gid_Dir_Share_Xpdfimport
41     ParentID = gid_Brand_Dir_Share;
42     DosName = "xpdfimport";
43 End
45 File gid_File_Xcd_Pdfimport
46     TXT_FILE_BODY;
47     Dir = gid_Brand_Dir_Share_Registry;
48     Name = "pdfimport.xcd";
49     Styles = (PACKED);
50 End
52 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */