1*cdf0e10cSrcweir/************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir#include "macros.inc" 29*cdf0e10cSrcweir 30*cdf0e10cSrcweirInstallation gid_Installation_Ure 31*cdf0e10cSrcweir ProductName = "${PRODUCTNAME}"; 32*cdf0e10cSrcweir ProductVersion = "${PRODUCTVERSION}"; 33*cdf0e10cSrcweir ProductExtension = "${PRODUCTEXTENSION}"; 34*cdf0e10cSrcweir OOoBaseVersion = "${OOOBASEVERSION}"; 35*cdf0e10cSrcweir#if defined WNT 36*cdf0e10cSrcweir DefaultDestPath = "<winprogpath>\%PRODUCTNAME"; 37*cdf0e10cSrcweir#else 38*cdf0e10cSrcweir DefaultDestPath = "/opt/%PRODUCTNAME"; 39*cdf0e10cSrcweir#endif 40*cdf0e10cSrcweirEnd 41*cdf0e10cSrcweir 42*cdf0e10cSrcweirDirectory gid_Dir_Ooo_Openofficeorg 43*cdf0e10cSrcweir ParentID = PREDEFINED_PROGDIR; 44*cdf0e10cSrcweir #ifdef WNT 45*cdf0e10cSrcweir HostName = "OpenOffice.org"; 46*cdf0e10cSrcweir #else 47*cdf0e10cSrcweir HostName = "openoffice.org"; 48*cdf0e10cSrcweir #endif 49*cdf0e10cSrcweir Styles = (ISINSTALLLOCATION); 50*cdf0e10cSrcweirEnd 51*cdf0e10cSrcweir 52*cdf0e10cSrcweirDirectory gid_Dir_Common_Ure 53*cdf0e10cSrcweir ParentID = gid_Dir_Ooo_Openofficeorg; 54*cdf0e10cSrcweir #ifdef WNT 55*cdf0e10cSrcweir HostName = "URE"; 56*cdf0e10cSrcweir #else 57*cdf0e10cSrcweir HostName = "ure"; 58*cdf0e10cSrcweir #endif 59*cdf0e10cSrcweir Styles = (UREDIRECTORY); 60*cdf0e10cSrcweirEnd 61*cdf0e10cSrcweir 62*cdf0e10cSrcweirFile gid_File_License_Ure 63*cdf0e10cSrcweir TXT_FILE_BODY; 64*cdf0e10cSrcweir Dir = gid_Dir_Common_Ure; 65*cdf0e10cSrcweir Name = "LICENSE"; 66*cdf0e10cSrcweir Styles = (PACKED); 67*cdf0e10cSrcweirEnd 68*cdf0e10cSrcweir 69*cdf0e10cSrcweirFile gid_File_ThirdpartylicensereadmeHtml_Ure 70*cdf0e10cSrcweir TXT_FILE_BODY; 71*cdf0e10cSrcweir Dir = gid_Dir_Common_Ure; 72*cdf0e10cSrcweir Name = "THIRDPARTYLICENSEREADME.html"; 73*cdf0e10cSrcweir Styles = (PACKED); 74*cdf0e10cSrcweirEnd 75*cdf0e10cSrcweir 76*cdf0e10cSrcweirFile gid_File_Readme_Ure 77*cdf0e10cSrcweir TXT_FILE_BODY; 78*cdf0e10cSrcweir Dir = gid_Dir_Common_Ure; 79*cdf0e10cSrcweir Name = "README"; 80*cdf0e10cSrcweir Styles = (PACKED); 81*cdf0e10cSrcweirEnd 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir// Module 84*cdf0e10cSrcweir 85*cdf0e10cSrcweirModule gid_Module_Root 86*cdf0e10cSrcweir Name = "ure"; 87*cdf0e10cSrcweir Description = "ure"; 88*cdf0e10cSrcweirEnd 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir// Windows Registry: 91*cdf0e10cSrcweirRegistryItem gid_Regitem_Ure_Software_Manufacturer_Productname_Productversion_Productcode_Install 92*cdf0e10cSrcweir ParentID = PREDEFINED_HKEY_LOCAL_MACHINE; 93*cdf0e10cSrcweir Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\%PRODUCTCODE"; 94*cdf0e10cSrcweir ModuleID = gid_Module_Root; 95*cdf0e10cSrcweir Name = "INSTALLLOCATION"; 96*cdf0e10cSrcweir Value = "[INSTALLLOCATION]"; 97*cdf0e10cSrcweir Styles = (ALWAYS_REQUIRED); 98*cdf0e10cSrcweirEnd 99*cdf0e10cSrcweir 100*cdf0e10cSrcweirRegistryItem gid_Regitem_Ure_Software_Manufacturer_Productname_Productversion_Upgradecode_Install 101*cdf0e10cSrcweir ParentID = PREDEFINED_HKEY_LOCAL_MACHINE; 102*cdf0e10cSrcweir Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\%UPGRADECODE"; 103*cdf0e10cSrcweir ModuleID = gid_Module_Root; 104*cdf0e10cSrcweir Name = "INSTALLLOCATION"; 105*cdf0e10cSrcweir Value = "[INSTALLLOCATION]"; 106*cdf0e10cSrcweir Styles = (ALWAYS_REQUIRED); 107*cdf0e10cSrcweirEnd 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir 110