summaryrefslogtreecommitdiff
path: root/scp2
AgeCommit message (Collapse)Author
2015-09-28One more GUIBASE -> USING_X11Samuel Mehrbrodt
Change-Id: I383b83b3778b11a012a931c19a2be85445af29c5 Reviewed-on: https://gerrit.libreoffice.org/18900 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2015-09-25Replace GUIBASE with USING_X11Samuel Mehrbrodt
That's what it actually means. Also make it a boolean Change-Id: I249e18351253b34b5dada28e2a9c6bc0c06b730c Reviewed-on: https://gerrit.libreoffice.org/18688 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2015-09-03remove KDE3 support, --enable-kde and --enable-kdeabMichael Stahl
With the new RHEL6-era baseline TDF can finally ship KDE4 support. Change-Id: I227278b576a3ed2f2aaa751d41b469ca92dc78b3 Reviewed-on: https://gerrit.libreoffice.org/18267 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-09-02ditch gnome-vfs2 supportCaolán McNamara
Change-Id: I882c04fd3a255f55511b1884157de26e7574e6db Reviewed-on: https://gerrit.libreoffice.org/18262 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-09-01Support modification write-back to other than registrymodifications.xcuStephan Bergmann
...to eventually support writing to dconf (see TODO). Even when writing somewhere else, it may still be useful to read from the current "user:" location, so a new convention was introduced to CONFIGURATION_LAYERS types that support write-back: - A leading "!" indicates that the layer is indeed used for write-back (probably in addition to reading from it). For backwards compatibility (when users use own settings of CONFIGURATION_LAYERS, instead of depending on the value in the shipped fundamental ini-file), no prefix on the "user:" is now interpreted the same as a "!" prefix. - A leading "*" indicates that the layer is not used for write-back (but only for reading from it). Change-Id: I399cc7bfe927db50586834f9630c184aaa2153f2
2015-08-21Missing #undefStephan Bergmann
Change-Id: Ifd546c3dbc383fd6234c5a1b9ddce7701038823f
2015-08-21Use CONFIGURATION_LAYERS_DCONFStephan Bergmann
...missing from ecc617e797aa5ed329668114e54ec7ffa5c0e87b "configmgr: support reading from a dconf layer (WIP)" Change-Id: I4e9f2fd216a3ef49d0cadb6d5fa6b2517a6bcdb6
2015-08-21Generalize CONFIGURATION_LAYERS "winreg:" notationStephan Bergmann
...after 097292feab4fc3c064983e1dd08ac4bebe1fe216 "Add HKEY_CURRENT_USER registry integration" added "winuserreg:". Even though changing from the exisiting "winreg:" to "winreg:LOCAL_MACHINE" should be compatible, as it only ends up in fundamental.ini included in the LO inst set, play it safe it keep treating "winreg" the same as "winreg:LOCAL_MACHINE". ("url" is a misnomer now in configmgr's Components ctor, and should eventually be renamed to something more accurate.) Change-Id: Ifbcf3284d904490891642599468470d03547f92a Reviewed-on: https://gerrit.libreoffice.org/17891 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2015-07-27inline a bunch of use-once macrosNoel Grandin
no point in having a macro unless it's actually going to reduce the number of lines of code Change-Id: Ic8760d6506cf272d7bd088f7b3b4dcbf288099fc
2015-07-27remove some unused definesNoel Grandin
Change-Id: Ib2d50e8c29ccbc5ffcb52cdff4ae3eaae9a62188 Reviewed-on: https://gerrit.libreoffice.org/17332 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2015-07-24Add "styles" template folder + content to installationTomaž Vajngerl
Change-Id: Ibb674e17eedfc325d3e335aa074391ad7b2b2aa2
2015-07-14Add HKEY_CURRENT_USER registry integration.Michael Meeks
It seems rather odd that we dump this to a file and parse again to me. Change-Id: Ia32ba9ff3e7878d40032bd7d10fba2c143d11757 Reviewed-on: https://gerrit.libreoffice.org/17033 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2015-07-08configmgr: support reading from a dconf layer (WIP)Stephan Bergmann
Work in progress to allow integration of LO with <https://wiki.gnome.org/Projects/FleetCommander>. During configuration, dconf support is implicitly enabled when available on the host (which is presumably only available on Linux). It is explicitly disabled for TDF Linux builds for now, though, to avoid accidental dependencies of the distributed installation sets on system dconf libraries. A dconf layer is represented in the CONFIGURATION_LAYERS bootstrap variable with type "dconf" and an empty URL. See the comment at the top of configmgr/source/readdconflayer.cxx for the encoding of component-data in dconf. All of this is still subject to change. Change-Id: I2d08d81c8ea43ba4a99040a8882ae75b91bcfdb9 Reviewed-on: https://gerrit.libreoffice.org/16848 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2015-07-02Move winreg layer past res layer, and also include it in instdir/ instsetStephan Bergmann
* Looks more logical to keep share/registry/'s xcscxu and res layers together. * Lets the winreg code actually get executed by developers using the instdir/ instset. (Though it doesn't enable it during in-build tests, which typically use their own CONFIGURATION_LAYERS settings.) Change-Id: I49dd3a16773047f7d4dc372c60a58ada1970970a
2015-06-25Avoid errors with stuff not build on --without-xRiccardo Magliocchetti
Reported by by Abhimanyu Singh Change-Id: I02bd2a2b85b9d55f0b237d3a1141801245473cd2 Reviewed-on: https://gerrit.libreoffice.org/16453 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2015-06-22scp2: add AutoInstall support for executables with COMPONENTCONDITIONMichael Stahl
Change-Id: I36f14d9ba08ab2473a555681b934b8b35cfa06b2
2015-06-06Remove WITH_AGFA_MONOTYPE_FONTSAdolfo Jayme Barrientos
Undefined since 62bf424fa84b0ccd0828a474a1351b0134f27eab and 0789ee23ae6a417d141098c411224a8af9f626d0. We’ve never bundled these proprietary fonts. Change-Id: I6ad6e7294504093cd0d64755ec72decf2bacc3f0 Reviewed-on: https://gerrit.libreoffice.org/16125 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2015-06-03Build time option --disable-extension-updateKatarina Behrens
to disable the possibility to update installed extensions Change-Id: Ifdee0f3b13ee3e2bcb288c8ded98cb9805a6e55a
2015-05-19upload libwps 0.4.0osnola
Change-Id: I9da61333b7c46d20cf7010553929b141ec011d84
2015-05-18scp2: fix --disable-pythonAndras Timar
Change-Id: Iec27f9d9efb506d67de6bc20eb0a8eef46a58ebf Reviewed-on: https://gerrit.libreoffice.org/15778 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2015-05-14do not set unix executable bit for CREDITS.fodt, LICENSE.fodt and NOTICEAndras Timar
Change-Id: Iab15ca1479d39e480369a18a7b043675d319f2ca
2015-05-01scp2: add scanner ui files to language pack templateAndras Timar
Change-Id: I10105770a119db8a21a3d09642f99b556440a57d
2015-04-30tdf#89152 add missing .ui localizations to install scriptAndras Timar
Change-Id: I32368329edfff18ea2a73de9a4cf60b2f734a54d
2015-04-20scp2: remove unused gidsMatúš Kukan
Change-Id: I723e752ff4bab9e36b3f3a08fc1fe8d10511d774
2015-03-05add country to strings refering to Brazilian PortugueseStanislav Horacek
Change-Id: If4487d7157adb949aca9ed0ca0739a00152e6955 Reviewed-on: https://gerrit.libreoffice.org/14747 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2015-02-28scp2: remove now unused variableMichael Stahl
Change-Id: I85c0db36709f545bf2d4eaba9b458e4741b7879b
2015-02-28scp2: move some ooo packages to AutoInstallMichael Stahl
Change-Id: I1c99cd2c8a392bf2a775eeb2c3acd4474aa2b0fb
2015-02-28scp2: move reportbuilder packages to AutoInstallMichael Stahl
Change-Id: I81778d452b548a0205db2e8bd30bcfed37becfcd
2015-02-28scp2: move xsltfilter packages to AutoInstallMichael Stahl
Change-Id: I2ae844d43a875ea0b4eb9dd445e483a36a90f73d
2015-02-28scp2: move python librelogo packages to AutoInstallMichael Stahl
Change-Id: Ib70d1510bac2eb6bd5491f3177191ad5a8aebe2d
2015-02-28scp2: move python packages to AutoInstallMichael Stahl
Change-Id: I1444e114e5cdbe794d79f40edebc32cb0229a4b5
2015-02-28scp2: move python scriptprovider package to AutoInstallMichael Stahl
Change-Id: I7e7f74ffbfd9edc4d8d4b3ca13d9a2f0d97dcbf4
2015-02-28scp2: move gallery packages to AutoInstallMichael Stahl
Change-Id: I56a89b8785d7ac9f959ed43be26302540332e7ee
2015-02-28scp2: remove obsolete mkopenwith.btmMichael Stahl
Change-Id: I409a505ad61f99e56081a9a05ec49284564fd568
2015-02-18Package 64bit dist runtime DLLs in 64bit msiDavid Ostrovsky
Change-Id: I0c8b7a8b2903d83eb37beb6b54f89dbcda8fba9c Reviewed-on: https://gerrit.libreoffice.org/14527 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2015-02-09On Mac OS X, directly name the executable "unopkg"Stephan Bergmann
Change-Id: I5f846d7f7c5ed54179504f551e19227f7283bda2
2015-02-08scp2: 'Minimal' key is unused, let's remove it from everywhereAndras Timar
Change-Id: I2c0d9c6870c52de85e288f4f70bc4d7c492e9987 Reviewed-on: https://gerrit.libreoffice.org/14361 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2015-02-08tdf#89135 install OpenGL slide transitions unconditionally on WindowsAndras Timar
Change-Id: I6efaaf56d56f27159f39046bdf2112ff2b9ed082 Reviewed-on: https://gerrit.libreoffice.org/14360 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2015-02-03fdo#67534 Fix "Property Handler" shared lockMaxime de Roucy
As explained in the following link, access mode should be set to "EnableShareDenyNone" to avoid blocking others process to access the file opened by the Property Handler. http://msdn.microsoft.com/en-us/library/windows/desktop/dd894084%28v=vs.85%29.aspx Change-Id: I61cc251078c20f6a8cf7fa052c222a86e4e383b3 Reviewed-on: https://gerrit.libreoffice.org/13596 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
2015-01-25add Guarani (gug) languageAndras Timar
Change-Id: Icf1612f88447e9ae348ef9ad333607a3f6dc8d32
2015-01-08install the new templates tooDavid Tardon
Change-Id: I503d2cf750f844999635c517b33788ba5f186788
2015-01-07drop crashrep unused since start of LibreOfficeCaolán McNamara
Change-Id: I3df1216054c133314b2317849744a0a37e9fbc8f Reviewed-on: https://gerrit.libreoffice.org/13733 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-12-22scp2: typo in source/impress/module_ogltrans.ulfAndras Timar
Change-Id: I3f2849784107a046bcf05e6cfb3b0b8d2f535912
2014-12-10scp2: move numbertext to AutoInstallDavid Ostrovsky
Change-Id: Idf9ea17b485ab07323a895e7e3f1eca1e198747c Reviewed-on: https://gerrit.libreoffice.org/13047 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-12-10extensions_ct2n: Add dependency in scp2/InstallModule_extensions.mkDavid Ostrovsky
9df0e4a709735e5fb5c0e87779b0694c512f0de7 moved ct2n to AutoInstall, but missed to add dependency in scp2/InstallModule_extensions.mk. Change-Id: Ibfc30f1efa494996e832c8039fde69420f0ad5ee Reviewed-on: https://gerrit.libreoffice.org/13398 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-12-03Fold URE: WindowsStephan Bergmann
...assuming the delayLoadHook in cli_ure/source/native/native_bootstrap.cxx is no longer necessary and loading of cppuhelper from the program dir cannot fail regardless in whatever scenario the cli_cppuhelper library itself is loaded. Change-Id: I13f32b327bca4cce9780864f5e57cdad3860afe5
2014-12-01Fold URE: Linux ure/share/misc/* -> program/Stephan Bergmann
...and remove now unused ure-link symlink Change-Id: Ic958432c1dad4fae213982d0af072187f151620b
2014-11-28Fold URE: Linux ure/share/java/* -> program/classes/Stephan Bergmann
Change-Id: I86864f832c0377d307cfa0b2c137f452e43797eb
2014-11-28Fold URE: Linux ure/lib/* -> program/Stephan Bergmann
The ../../../program/ links in the URE jar Class-Paths are a temporary kludge (and juh.jar had lacked adaption for Mac OS X). Change-Id: I2542d8a582866485dd61c05df3fc6b4b39a8403d
2014-11-28Fold URE: Linux ure/bin/* -> program/Stephan Bergmann
Change-Id: Id6cab518329829c22600f2a68b6b59abd04a564c