Changeset ed2cf3c
- Timestamp:
- 08/16/2013 06:31:45 PM (11 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 056cbec
- Parents:
- e1b2c0e
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
re1b2c0e red2cf3c 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "1 4"> <!-- Always 2 digits -->3 <!ENTITY day "16"> <!-- Always 2 digits --> 4 4 <!ENTITY month "08"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2013"> -
introduction/welcome/changelog.xml
re1b2c0e red2cf3c 45 45 --> 46 46 <listitem> 47 <para>August 16th, 2013</para> 48 <itemizedlist> 49 <listitem> 50 <para>[fernando] LibreOffice: fixes to build dictionaries, help and languages support. Thanks to David B.</para> 51 </listitem> 52 </itemizedlist> 53 </listitem> 54 55 <listitem> 47 56 <para>August 14th, 2013</para> 48 57 <itemizedlist> -
xsoft/office/libreoffice.xml
re1b2c0e red2cf3c 244 244 245 245 <para> 246 Unpack the dictionaries and help files and create symlinks to tarballs from the source 247 directory so they won't get downloaded again: 246 Unpack the dictionaries file and create symlinks to tarballs from the 247 source directory so they won't get downloaded again (it is not necessary 248 to unpack the help nor the translations tarballs): 248 249 </para> 249 250 … … 251 252 252 253 tar -xf ../libreoffice-dictionaries-&libreoffice-dlversion;.tar.xz --no-overwrite-dir --strip-components=1 && 253 tar -xf ../libreoffice-help-&libreoffice-dlversion;.tar.xz --no-overwrite-dir --strip-components=1 && 254 254 <!-- Not necessary for this version 255 tar -xf ../libreoffice-help-&libreoffice-dlversion;.tar.xz -\-no-overwrite-dir -\-strip-components=1 && 256 --> 255 257 ln -sv ../../libreoffice-dictionaries-&libreoffice-dlversion;.tar.xz src/ && 256 258 ln -sv ../../libreoffice-help-&libreoffice-dlversion;.tar.xz src/</userinput></screen> 257 259 260 <!-- Not necessary for this version 258 261 <para> 259 262 If you have downloaded the translations tarball, unpack it: 260 263 </para> 261 264 262 <screen><userinput>tar -xf ../libreoffice-translations-&libreoffice-dlversion;.tar.xz - -no-overwrite-dir --strip-components=1 &&265 <screen><userinput>tar -xf ../libreoffice-translations-&libreoffice-dlversion;.tar.xz -\-no-overwrite-dir -\-strip-components=1 && 263 266 ln -sv ../../libreoffice-translations-&libreoffice-dlversion;.tar.xz src/</userinput></screen> 267 --> 268 <para> 269 If you have downloaded the translations tarball, create a symlink: 270 </para> 271 272 <screen><userinput>ln -sv ../../libreoffice-translations-&libreoffice-dlversion;.tar.xz src/</userinput></screen> 264 273 265 274 <note> … … 273 282 274 283 <para> 275 Prepare <application>LibreOffice</application> for compilation by 276 running the following commands: 284 In the rest of the page, locales "en-US" and "pt-BR" are examples; the 285 user will change them to suit his needs - you might want to read the 286 "Command Explanations", further below, before proceeding. Prepare 287 <application>LibreOffice</application> for compilation by running the 288 following commands: 277 289 </para> 278 290 … … 281 293 -i bin/distro-install-desktop-integration && 282 294 sed -e "/distro-install-file-lists/d" -i Makefile.in && 295 296 chmod +x bin/unpack-sources && 297 sed -e "s/target\.mk/langlist\.mk/" \ 298 -e "s/tar -xf/tar -x --strip-components=1 -f/" \ 299 -e "/tar -x/s/lo_src_dir/start_dir/" \ 300 -i bin/unpack-sources && 301 283 302 patch -Np1 -i ../libreoffice-&libreoffice-dlversion;-system_poppler-1.patch && 284 303 ./autogen.sh --prefix=/usr \ 285 304 --sysconfdir=/etc \ 286 305 --with-vendor="BLFS" \ 287 --with-lang="" \ 306 --with-lang="en-US pt-BR" \ 307 --with-help \ 288 308 --with-alloc=system \ 289 309 --without-java \ … … 331 351 <screen role="root"><userinput>make distro-pack-install</userinput></screen> 332 352 353 <para> 354 If the dictionaries have been built, again as 355 <systemitem class="username">root</systemitem> user: 356 </para> 357 358 <screen role="root"><userinput>chown -cR 0:0 dictionaries/ && 359 mkdir -pv /usr/lib/libreoffice/share/extensions/dict-en && 360 cp -vR dictionaries/en/* /usr/lib/libreoffice/share/extensions/dict-en && 361 mkdir -pv /usr/lib/libreoffice/share/extensions/dict-pt-BR && 362 cp -vR dictionaries/en/* /usr/lib/libreoffice/share/extensions/dict-pt-BR</userinput></screen> 363 333 364 </sect2> 334 365 … … 338 369 <para> 339 370 <command>sed -e ...</command>: First sed prevents compression of the 340 manual pages and the second one prevents a script that causes 341 install to fail from running. 342 </para> 343 344 <para> 345 <parameter>--with-vendor=BLFS</parameter>: This switchs sets BLFS as 371 manual pages, the second one prevents a script that causes install to 372 fail from running and the third one fixes the unpack script. 373 </para> 374 375 <para> 376 <command>chmod +x ...</command>: Fix the unpack script's permissions. 377 </para> 378 379 <para> 380 <parameter>--with-vendor=BLFS</parameter>: This switch sets BLFS as 346 381 the vendor which is mentioned when you click "About" on the toolbar. 347 382 </para> … … 352 387 languages, separate them with a space. For all languages, use 353 388 <parameter>--with-lang=ALL</parameter> 389 </para> 390 391 <para> 392 <parameter>--with-help</parameter>: Without this switch, the help files 393 are not built. 354 394 </para> 355 395
Note:
See TracChangeset
for help on using the changeset viewer.