fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / scp2 / source / ooo / module_pdfimport.scp
blob3c6add511935c037d87ec3237c77e2896b37ee0e
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
17 // /org.openoffice.TypeDetection.Types/Types/pdf_Portable_Document_Format
18 // configuration node contained in pdfimport.xcd needs to override a
19 // node with the same name but which lacks import functionality and
20 // which is duplicated across calc, draw, impress, math, writer .xcd
21 // files.  For this to work, there is a hack in
22 // postprocess/packregistry/makefile.mk to make pdfimport.xcd depend
23 // on all those other .xcd files (optinally, as not all of the other
24 // .xcd files need to be present in a given installation).
26 #include "macros.inc"
28 #include "AutoInstall/pdfimport"
30 Module gid_Module_Pdfimport
31     Name = "PDF Import";
32     Description = "PDF Import";
33     PackageInfo = "packinfo_office.txt";
34     ParentID = gid_Module_Root_Brand;
35     Styles = (HIDDEN_ROOT);
36     Dirs = (gid_Dir_Share_Xpdfimport);
37     Files = (auto_pdfimport_ALL,
38         gid_File_Dat_XpdfimportErrPdf,
39         gid_File_Xcd_Pdfimport);
40 End
42 Directory gid_Dir_Share_Xpdfimport
43     ParentID = gid_Brand_Dir_Share;
44     DosName = "xpdfimport";
45 End
47 File gid_File_Dat_XpdfimportErrPdf
48     TXT_FILE_BODY;
49     Dir = gid_Dir_Share_Xpdfimport;
50     Name = "xpdfimport_err.pdf";
51     Styles = (PACKED);
52 End
54 File gid_File_Xcd_Pdfimport
55     TXT_FILE_BODY;
56     Dir = gid_Brand_Dir_Share_Registry;
57     Name = "pdfimport.xcd";
58     Styles = (PACKED);
59 End
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */