Changeset a6bee1f for gnome/core/vte.xml


Ignore:
Timestamp:
06/21/2006 01:46:25 AM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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, 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:
3838dc02
Parents:
998dcf8
Message:

Updated to GNOME-2.14.2. All version entities have been updated with the core package updates being complete. The 'Additional' packages will be updated in upcoming commits

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gnome/core/vte.xml

    r998dcf8 ra6bee1f  
    77  <!ENTITY vte-download-http "&gnome-download-http;/vte/0.11/vte-&vte-version;.tar.bz2">
    88  <!ENTITY vte-download-ftp  "&gnome-download-ftp;/vte/0.11/vte-&vte-version;.tar.bz2">
    9   <!ENTITY vte-md5sum        "a9dc7b330d52ce384e3e5715d396c72f">
    10   <!ENTITY vte-size          "959 KB">
    11   <!ENTITY vte-buildsize     "24.7 MB">
     9  <!ENTITY vte-md5sum        "7cb1bd6ca528bc4db5ec685549fd3eb1">
     10  <!ENTITY vte-size          "974 KB">
     11  <!ENTITY vte-buildsize     "25.3 MB">
    1212  <!ENTITY vte-time          "0.7 SBU">
    1313]>
     
    1919    <othername>$LastChangedBy$</othername>
    2020    <date>$Date$</date>
    21     <keywordset>
    22       <keyword role="package">vte-&vte-version;.tar</keyword>
    23       <keyword role="ftpdir">vte</keyword>
    24     </keywordset>
    2521  </sect1info>
    2622
     
    6258
    6359    <bridgehead renderas="sect4">Required</bridgehead>
    64     <para role="required"><xref linkend="gtk2"/></para>
     60    <para role="required"><xref linkend="gtk2"/> and
     61    <xref linkend="perl-xml-parser"/></para>
    6562
    6663    <bridgehead renderas="sect4">Optional</bridgehead>
    67     <para role="optional"><xref linkend="gtk-doc"/> and
    68     <ulink url="http://www.pygtk.org/">PyGTK</ulink></para>
     64    <para role="optional"><xref linkend="gtk-doc"/>,
     65    <xref linkend="intltool"/>, and
     66    <ulink url="http://www.pygtk.org/">PyGTK</ulink>
     67    (requires <xref linkend="python"/>)</para>
    6968
    7069    <para condition="html" role="usernotes">User Notes:
     
    8079
    8180<screen><userinput>sed -i 's%\\177:%&amp;kh=\\EOH:@7=\\EOF:%' termcaps/xterm &amp;&amp;
     81sed -i 's/FT2_LIBS $LIBS/&amp; $X_LIBS/' configure &amp;&amp;
     82sed -i -e 's/^ssfe_LDADD =.*$/&amp; -lncurses/' \
     83       -e 's/^LDFLAGS =.*$/&amp; @X_LIBS@/' \
     84    src/Makefile.in &amp;&amp;
     85
    8286./configure --prefix=/usr \
    83             --libexecdir=/usr/lib/vte \
    84             --disable-gtk-doc &amp;&amp;
     87            --libexecdir=/usr/lib/vte &amp;&amp;
    8588make</userinput></screen>
    8689
     
    9699    <title>Command Explanations</title>
    97100
    98     <para><command>sed -i ...</command>: The <keysym>Home</keysym> and
    99     <keysym>End</keysym> keys are broken in the <filename>xterm</filename>
    100     termcap file. This <command>sed</command> command fixes them.</para>
     101    <para><command>sed -i ... termcaps/xterm</command>: The
     102    <keysym>Home</keysym> and <keysym>End</keysym> keys are broken in the
     103    <command>xterm</command> termcap file. This <command>sed</command> command
     104    fixes them.</para>
     105
     106    <para><command>sed -i ... configure</command>: If you pass the
     107    <option>--with-glX</option> parameter to the <command>configure</command>
     108    script, <command>configure</command> will fail because it doesn't include
     109    the <application>X Window System</application> library directory in the
     110    <envar>LDFLAGS</envar> in one of the checks. This command adds the required
     111    directory. This command is not required if your
     112    <application>X Window System</application> libraries are located in
     113    <filename class='directory'>/usr/lib</filename>.</para>
     114
     115    <para><command>sed -i ... src/Makefile.in</command>: For the same reason
     116    the previous <command>sed</command> command is used, this one does a
     117    similar modification to fix the <filename>Makefile</filename> used to
     118    build the programs and library. This <command>sed</command> also fixes an
     119    issue by adding the <filename class='libraryfile'>libncurses</filename>
     120    library to the <envar>LDFLAGS</envar> for building the
     121    <command>ssfe</command> program. This issue is also caused by passing the
     122    additional parameters to the <command>configure</command> script.</para>
    101123
    102124    <para><parameter>--libexecdir=/usr/lib/vte</parameter>: This switch puts
     
    104126    instead of <filename class="directory">/usr/libexec</filename>.</para>
    105127
    106     <para><parameter>--disable-gtk-doc</parameter>: This switch prevents the
     128    <para><option>--with-xft2 --with-pangox --with-glX</option>: These
     129    parameters can be passed to the <command>configure</command> script
     130    to enable additional drawing methods in the
     131    <application>VTE</application> library.</para>
     132
     133    <!-- Disabling as the docs are not built by default in this release and
     134         the tarball contains current docs
     135    <para><parameter>-disable-gtk-doc</parameter>: This switch prevents the
    107136    building of documentation. Remove it if you have
    108137    <application>GTK-Doc</application> installed and wish to rebuild the
    109     documentation.</para>
     138    documentation.</para> -->
    110139
    111140  </sect2>
     
    121150      <seglistitem>
    122151        <seg>vte</seg>
    123         <seg>libvte.{so,a} and vtemodule.{so,a}
     152        <seg>libvte.{so,a} and the vtemodule.{so,a}
    124153        <application>Python</application> module</seg>
    125154        <seg>/usr/include/vte, /usr/lib/vte, /usr/share/gtk-doc/html/vte,
Note: See TracChangeset for help on using the changeset viewer.