Ignore:
Timestamp:
05/30/2014 08:42:32 PM (10 years ago)
Author:
Fernando de Oliveira <fernando@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 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, 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/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
870e4acf
Parents:
4ad620bd
Message:

xscreensaver-5.27, gedit-3.12.2, gnome-calculator-3.12.2, exim-4.82.1, inputproto-2.3.1 and harfbuzz-0.9.29.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@13190 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/genutils/xscreensaver.xml

    r4ad620bd rcacdba3a  
    77  <!ENTITY xscreensaver-download-http "http://www.jwz.org/xscreensaver/xscreensaver-&xscreensaver-version;.tar.gz">
    88  <!ENTITY xscreensaver-download-ftp  " ">
    9   <!ENTITY xscreensaver-md5sum        "dd4390f36b9c9d79b66d18b145ca62ad">
     9  <!ENTITY xscreensaver-md5sum        "42582268cf7db0a12836a3240c83726e">
    1010  <!ENTITY xscreensaver-size          "8.4 MB">
    11   <!ENTITY xscreensaver-buildsize     "174 MB">
    12   <!ENTITY xscreensaver-time          "0.9 SBU">
     11  <!ENTITY xscreensaver-buildsize     "165 MB">
     12  <!ENTITY xscreensaver-time          "0.8 SBU">
    1313]>
    1414
     
    107107
    108108    <para>
     109      Due to a problem in the code, <application>XScreenSaver</application>
     110      fails to install, because cannot find a desktop file used for configuring
     111      the application, in a DE menu. Following command creates the file:
     112    </para>
     113
     114<screen><userinput>cat &gt; driver/screensaver-properties.desktop  &lt;&lt; "EOF"
     115[Desktop Entry]
     116Exec=xscreensaver-demo
     117Icon=xscreensaver
     118Terminal=false
     119Name=Screensaver
     120Name[pt_BR]=Protetor de tela
     121Comment=Change screensaver properties
     122Comment[pt_BR]=Modificar as propriedades do protetor de tela
     123Type=Application
     124Categories=Settings;DesktopSettings;Security;X-XFCE;
     125EOF</userinput></screen>
     126
     127    <para>
     128      Above, we chose to include pt_BR string, and respective "Name" and
     129      "Comment" values, as just an example. Those lines might either be
     130      deleted or replaced to fit the user's locale string and values.
     131    </para>
     132
     133    <para>
    109134      Install <application>XScreenSaver</application> by running the following
    110135      commands:
    111136    </para>
    112137
    113 <screen><userinput>./configure --prefix=/usr &amp;&amp;
     138<screen><userinput>LIBS=-lpthread ./configure --prefix=/usr &amp;&amp;
     139sed -i 's/-std=c89//' hacks/Makefile     &amp;&amp;
    114140make</userinput></screen>
    115141
     
    128154  <sect2 role="commands">
    129155    <title>Command Explanations</title>
     156
     157    <para>
     158      <command>LIBS=-lpthread ...</command>: This switch helps
     159      <command>make</command> to find the library.
     160    </para>
     161
     162    <para>
     163      <command>sed -i ...</command>: This switch allows the correct
     164      interpretation of some parts of the code as comments.
     165    </para>
    130166
    131167    <para>
Note: See TracChangeset for help on using the changeset viewer.