Changeset a6d9935c


Ignore:
Timestamp:
06/21/2013 11:53:30 AM (11 years ago)
Author:
Krejzi <krejzi@…>
Branches:
systemd-11177
Children:
08bb8d2c
Parents:
c67fbf64
Message:

Sync systemd and main branches.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@11311 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
1 added
17 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rc67fbf64 ra6d9935c  
    44-->
    55
    6 <!ENTITY day          "16">                   <!-- Always 2 digits -->
     6<!ENTITY day          "21">                   <!-- Always 2 digits -->
    77<!ENTITY month        "06">                   <!-- Always 2 digits -->
    88<!ENTITY year         "2013">
     
    1010<!ENTITY copyholder   "The BLFS Development Team">
    1111<!ENTITY version      "SYSTEMD-&year;-&month;-&day;">
    12 <!ENTITY releasedate  "June 16th, &year;">
     12<!ENTITY releasedate  "June 21st, &year;">
    1313<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1414<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
     
    381381<!ENTITY librep-version               "0.92.2.1">
    382382<!ENTITY llvm-version                 "3.2">
     383<!ENTITY lua-version                  "5.2.2">
    383384<!ENTITY mercurial-version            "2.6.2">
    384385<!ENTITY NASM-version                 "2.10.07">
  • general/genlib/ptlib.xml

    rc67fbf64 ra6d9935c  
    8787      <ulink url="http://sourceforge.net/projects/libdc1394/">libdc1394</ulink>,
    8888      <ulink url="http://www.linux1394.org/">libraw1394</ulink>,
    89       <ulink url="http://www.lua.org/">Lua</ulink>,
     89      <xref linkend="lua"/>,
    9090      <xref linkend="openldap"/>,
    9191      <xref linkend="pulseaudio"/>,
  • general/genutils/graphviz.xml

    rc67fbf64 ra6d9935c  
    111111      <xref linkend="openjdk"/>,
    112112      <ulink url="http://www.iolanguage.com/about/">Io</ulink>,
    113       <ulink url="http://www.lua.org/">Lua</ulink>,
     113      <xref linkend="lua"/> (version 5.1),
    114114      <ulink url="http://www.mono-project.com/Main_Page">Mono</ulink>,
    115115      <ulink url="http://ocaml.org/">OCaml</ulink>,
  • general/graphlib/gegl.xml

    rc67fbf64 ra6d9935c  
    9595      <xref linkend="librsvg"/>,
    9696      <ulink url="http://libspiro.sourceforge.net/">libspiro</ulink>,
    97       <ulink url="http://www.lua.org/">Lua</ulink>,
     97      <xref linkend="lua"/>,
    9898      <ulink url="http://www.openexr.org">OpenEXR</ulink>,
    9999      <xref linkend="pango"/>,
  • general/graphlib/jasper.xml

    rc67fbf64 ra6d9935c  
    9191
    9292<screen><userinput>patch -Np1 -i ../jasper-&jasper-version;-security_fixes-1.patch &amp;&amp;
    93 ./configure --prefix=/usr --enable-shared &amp;&amp;
     93./configure --prefix=/usr --enable-shared --disable-static &amp;&amp;
    9494make</userinput></screen>
    9595
     
    112112    <title>Command Explanations</title>
    113113
    114     <para><command>--enable-shared</command>: This command
     114    <para><option>--enable-shared</option>: This command
    115115    causes the shared library to be built.</para>
    116116
    117     <para><option>--disable-static</option>: This causes the
    118     static library to not be built.</para>
     117    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     118      href="../../xincludes/static-libraries.xml"/>
    119119
    120120    <para><option>--x-includes=DIR --x-libraries=DIR</option>: These tell the
     
    151151      <seglistitem>
    152152        <seg>imgcmp, imginfo, jasper, jiv, and tmrdemo</seg>
    153         <seg>libjasper.{so,a}</seg>
     153        <seg>libjasper.so</seg>
    154154        <seg>/usr/include/jasper and /usr/share/doc/jasper-&jasper-version;</seg>
    155155      </seglistitem>
     
    213213
    214214      <varlistentry id="jasper-lib">
    215         <term><filename class='libraryfile'>libjasper.{so,a}</filename></term>
     215        <term><filename class='libraryfile'>libjasper.so</filename></term>
    216216        <listitem>
    217217          <para>a library used by programs for reading and writing
    218218          JPEG2000 format files.</para>
    219219          <indexterm zone="jasper jasper-lib">
    220             <primary sortas="c-libjasper">libjasper.{so,a}</primary>
     220            <primary sortas="c-libjasper">libjasper.so</primary>
    221221          </indexterm>
    222222        </listitem>
  • general/prog/mercurial.xml

    rc67fbf64 ra6d9935c  
    123123  </sect2>
    124124
     125  <sect2 role="configuration">
     126    <title>Configuring Mercurial</title>
     127
     128    <sect3 id="mercurial-config">
     129      <title>Config Files</title>
     130
     131      <para>
     132        <filename>/etc/mercurial/hgrc</filename>
     133      </para>
     134
     135      <indexterm zone="mercurial mercurial-config">
     136        <primary sortas="e-etc-mercurial-hgrc">/etc/mercurial/hgrc</primary>
     137      </indexterm>
     138
     139      <para>
     140        If you have installed the <xref linkend="cacerts"/> and you want
     141        <application>Mercurial</application> to use them, as the
     142        <systemitem class="username">root</systemitem> user:
     143      </para>
     144
     145<screen role="root"><userinput>install -v -d -m755 /etc/mercurial &amp;&amp;
     146cat &gt; /etc/mercurial/hgrc &lt;&lt; "EOF"
     147<literal>[web]
     148cacerts = /etc/ssl/ca-bundle.crt</literal>
     149EOF</userinput></screen>
     150
     151    </sect3>
     152
     153  </sect2>
     154
    125155  <sect2 role="content">
    126156    <title>Contents</title>
     
    134164        <seg>hg</seg>
    135165        <seg>none</seg>
    136         <seg>/usr/lib/python2.7/site-packages/hgext and
     166        <seg>/etc/mercurial, /usr/lib/python2.7/site-packages/hgext and
    137167        /usr/lib/python2.7/site-packages/mercurial</seg>
    138168      </seglistitem>
  • general/prog/other-tools.xml

    rc67fbf64 ra6d9935c  
    10641064
    10651065    <sect3 role="package">
    1066       <title>Lua</title>
    1067 
    1068       <para><application>Lua</application> is a powerful light-weight
    1069       programming language designed for extending applications. It is also
    1070       frequently used as a general-purpose, stand-alone language. It is free
    1071       software. <application>Lua</application> combines simple procedural
    1072       syntax with powerful data description constructs based on associative
    1073       arrays and extensible semantics. It is dynamically typed, interpreted
    1074       from bytecodes, and has automatic memory management with garbage
    1075       collection, making it ideal for configuration, scripting, and rapid
    1076       prototyping. A fundamental concept in the design of
    1077       <application>Lua</application> is to provide meta-mechanisms for
    1078       implementing features, instead of providing a host of features directly
    1079       in the language. For example, although <application>Lua</application> is
    1080       not a pure object-oriented language, it does provide meta-mechanisms for
    1081       implementing classes and inheritance. <application>Lua</application>'s
    1082       meta-mechanisms bring an economy of concepts and keep the language small,
    1083       while allowing the semantics to be extended in unconventional ways.
    1084       Extensible semantics is a distinguishing feature of
    1085       <application>Lua</application>. <application>Lua</application> is a
    1086       language engine that you can embed into your application. This means
    1087       that, besides syntax and semantics, it has an API that allows the
    1088       application to exchange data with <application>Lua</application> programs
    1089       and also to extend <application>Lua</application> with C functions. In
    1090       this sense, it can be regarded as a language framework for building
    1091       domain-specific languages. <application>Lua</application> is implemented
    1092       as a small library of C functions, written in ANSI C, and compiles
    1093       unmodified in all known platforms. The implementation goals are
    1094       simplicity, efficiency, portability, and low embedding cost. The result
    1095       is a fast language engine with small footprint, making it ideal in
    1096       embedded systems too.</para>
    1097 
    1098       <itemizedlist spacing="compact">
    1099         <listitem>
    1100           <para>Project Home Page: <ulink
    1101           url="http://www.lua.org/"/></para>
    1102         </listitem>
    1103         <listitem>
    1104           <para>Download Location: <ulink
    1105           url="http://www.lua.org/download.html"/></para>
    1106         </listitem>
    1107       </itemizedlist>
    1108 
    1109     </sect3>
    1110 
    1111     <sect3 role="package">
    11121066      <title>Mercury</title>
    11131067
  • general/prog/prog.xml

    rc67fbf64 ra6d9935c  
    4040  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="librep.xml"/>
    4141  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="llvm.xml"/>
     42  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="lua.xml"/>
    4243  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="mercurial.xml"/>
    4344  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="nasm.xml"/>
  • introduction/welcome/changelog.xml

    rc67fbf64 ra6d9935c  
    4545-->
    4646    <listitem>
     47      <para>June 19th, 2013</para>
     48      <itemizedlist>
     49        <listitem>
     50          <para>[igor] - Added Lua-5.2.2.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55    <listitem>
     56      <para>June 18th, 2013</para>
     57      <itemizedlist>
     58        <listitem>
     59          <para>[ken] - patch openssl-1.0.1e and wget-1.14 for perl-5.18.</para>
     60        </listitem>
     61      </itemizedlist>
     62    </listitem>
     63    <listitem>
    4764      <para>June 16th, 2013</para>
    4865      <itemizedlist>
  • multimedia/videoutils/vlc.xml

    rc67fbf64 ra6d9935c  
    205205      <ulink url="http://sourceforge.net/projects/medialibrary/">MediaLibrary</ulink>
    206206      (requires <xref linkend="sqlite"/>) and
    207       <ulink url="http://www.lua.org/">Lua (version 5.1)</ulink>
     207      <xref linkend="lua"/> (version 5.1)
    208208    </para>
    209209
     
    256256
    257257    <para>
    258       <parameter>--disable-dbus</parameter>: The package fails to install if
     258      <option>--disable-dbus</option>: The package fails to install if
    259259      <application>D-Bus</application> is missing. Use this switch if you don't
    260260      have <application>D-Bus</application> installed.
  • networking/netprogs/wget.xml

    rc67fbf64 ra6d9935c  
    7373    </itemizedlist>
    7474
     75    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     76    <itemizedlist spacing="compact">
     77      <listitem>
     78        <para>
     79          Required patch:
     80          <ulink url="&patch-root;/wget-&wget-version;-texi2pod-1.patch"/>
     81        </para>
     82      </listitem>
     83    </itemizedlist>
     84
    7585    <bridgehead renderas="sect3">Wget Dependencies</bridgehead>
    7686
     
    100110    </para>
    101111
    102 <screen><userinput>./configure --prefix=/usr      \
     112<screen><userinput>patch -Np1 -i ../wget-&wget-version;-texi2pod-1.patch &amp;&amp;
     113
     114./configure --prefix=/usr      \
    103115            --sysconfdir=/etc  \
    104116            --with-ssl=openssl &amp;&amp;
    105117make</userinput></screen>
    106 
    107     <note>
    108       <para><command>make</command> will fail if you have installed Perl version
    109       5.18.0 or later as the <command>pod2man</command> script was changed. This
    110       is actually only a warning, and not a fatal error. Running
    111       <command>make</command> a second time will terminate correctly.</para>
    112     </note>
    113118
    114119    <para>
  • networking/netutils/nmap.xml

    rc67fbf64 ra6d9935c  
    7171    <para role="recommended">
    7272      <xref linkend="libpcap"/>,
    73       <xref linkend="pcre"/>,
     73      <xref linkend="lua"/>,
     74      <xref linkend="pcre"/> and
     75      <ulink url="http://www.csie.ntu.edu.tw/~cjlin/liblinear/">liblinear</ulink>
    7476<!-- This is not recommended, see: http://nmap.org/svn/libdnet-stripped/NMAP_MODIFICATIONS
    75       <ulink url="http://code.google.com/p/libdnet/">libdnet</ulink>,
     77      <ulink url="http://code.google.com/p/libdnet/">libdnet</ulink>
    7678-->
    77       <ulink url="http://www.csie.ntu.edu.tw/~cjlin/liblinear/">liblinear</ulink> and
    78       <ulink url="http://www.lua.org/">Lua</ulink>
    7979    </para>
    8080
  • networking/netutils/wireshark.xml

    rc67fbf64 ra6d9935c  
    102102      <!-- <ulink url="http://www.net-snmp.org/">Net-SNMP</ulink>, -->
    103103      <ulink url="http://www.gnu.org/software/adns/adns.html">adns</ulink>, and
    104       <ulink url="http://www.lua.org/">Lua</ulink>
     104      <xref linkend="lua"/>
    105105    </para>
    106106
  • postlfs/security/openssl.xml

    rc67fbf64 ra6d9935c  
    8080      <listitem>
    8181        <para>
    82           Required patch:
     82          Required patches:
    8383          <ulink url="&patch-root;/openssl-&openssl-version;-fix_parallel_build-1.patch"/>
     84          and
     85          <ulink url="&patch-root;/openssl-&openssl-version;-fix_pod_syntax-1.patch"/>
    8486        </para>
    8587      </listitem>
     
    108110
    109111<screen><userinput>patch -Np1 -i ../openssl-&openssl-version;-fix_parallel_build-1.patch &amp;&amp;
     112patch -Np1 -i ../openssl-&openssl-version;-fix_pod_syntax-1.patch &amp;&amp;
    110113
    111114./config --prefix=/usr         \
     
    129132    </para>
    130133
    131 <screen role="root"><userinput>
    132 make MANDIR=/usr/share/man MANSUFFIX=ssl install &amp;&amp;
     134<screen role="root"><userinput>make MANDIR=/usr/share/man MANSUFFIX=ssl install &amp;&amp;
    133135install -dv -m755 /usr/share/doc/openssl-&openssl-version;  &amp;&amp;
    134136cp -vfr doc/*     /usr/share/doc/openssl-&openssl-version;</userinput></screen>
  • pst/typesetting/texlive.xml

    rc67fbf64 ra6d9935c  
    103103      <ulink url="http://sourceforge.net/projects/zziplib/">ZZIPlib</ulink>,
    104104      <ulink url="http://www.gnu.org/software/clisp/">CLISP</ulink>,
    105       <ulink url="http://www.lua.org/">Lua</ulink>,
     105      <xref linkend="lua"/>,
    106106      <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;id=TECkitDownloads">TECkit</ulink>, and
    107107      <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=RenderingGraphite">
  • server/major/apache.xml

    rc67fbf64 ra6d9935c  
    104104      <xref linkend="rsync"/>,
    105105      <ulink url="http://www.distcache.org/">Distcache</ulink> and
    106       <ulink url="http://www.lua.org/">Lua (5.1)</ulink>
     106      <xref linkend="lua"/> (version 5.1)
    107107    </para>
    108108
  • x/installing/x7driver.xml

    rc67fbf64 ra6d9935c  
    11571157          you will need to enable building of r300, r600 and radeonsi Gallium drivers in
    11581158          <xref linkend="mesalib"/> instructions. Also, some cards will require Firmware
    1159           to be available when kernel driver is loaded. Firmware can be obtained from
    1160           <ulink url="git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git">
    1161           Linux Firmware Repository</ulink>.
     1159          to be available when the kernel driver is loaded. Firmware can be obtained from
     1160          <ulink  url="http://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/tree/">
     1161          Linux Firmware</ulink>, either by cloning from
     1162          git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
     1163          or by using a Linux Firmware source tarball from a distro. See "Kernel
     1164          Configuration for additional firmware" below.
    11621165        </para>
    11631166      </note>
     
    11991202      <bridgehead renderas="sect4">Xorg ATI Driver Dependencies</bridgehead>
    12001203
    1201       <bridgehead renderas="sect5">Recommended</bridgehead>
    1202       <para role="recommended">
    1203         <xref linkend="glamor-egl"/>
     1204      <bridgehead renderas="sect5">Required</bridgehead>
     1205      <para role="required">
     1206        <xref linkend="xorg-server"/>
     1207      </para>
     1208
     1209      <bridgehead renderas="sect5">Optional</bridgehead>
     1210      <para role="optional">
     1211        <xref linkend="glamor-egl"/> (This is <emphasis>required for "South Islands"
     1212        GPUs</emphasis> but optional for R300 to R700, Evergreen and "Northern Islands"
     1213        GPUs - see the link under "Glamor Acceleration" below.)
    12041214      </para>
    12051215
     
    12261236    </sect3>
    12271237
     1238    <sect3 role="kernel" id="xorg-ati-firmware-kernel">
     1239      <title>Kernel Configuration for additional firmware</title>
     1240
     1241    <para>
     1242      If you need to add firmware, install the file(s) and then point to them in the
     1243      kernel configuration and recompile the kernel if necessary, e.g. (for a specific
     1244      R600 with a specific network adaptor which also needs firmware) :
     1245    </para>
     1246
     1247<screen><literal>CONFIG_EXTRA_FIRMWARE="radeon/R600_rlc.bin rtl_nic/rtl8168e-3.fw"
     1248CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware"
     1249</literal></screen>
     1250
     1251      <indexterm zone="xorg-ati-driver xorg-ati-firmware-kernel">
     1252        <primary sortas="d-xorg-ati-firmware">xorg-ati-firmware</primary>
     1253      </indexterm>
     1254    </sect3>
     1255
    12281256    <sect3 role="installation">
    12291257      <title>Installation of Xorg ATI Driver</title>
     
    12531281      <para>
    12541282        <parameter>--enable-glamor</parameter>: This switch enables
    1255         new GL-based acceleration.
     1283        new GL-based acceleration. As well as specifying this in the
     1284        build, it needs to be enabled at run time (see below).
    12561285      </para>
    12571286
     
    12691298        <ulink url="&radeon-marketing-names;">
    12701299        Decoder ring for engineering vs marketing names</ulink>. Please note
    1271         that Glamor acceleration can be used with other chips as well, but
    1272         it has not been tested recently.
     1300        that Glamor acceleration can be used with other chips as well, from the
     1301        R300 onwards, but it has not been tested recently.
    12731302      </para>
    12741303
Note: See TracChangeset for help on using the changeset viewer.