Changeset ee2025f for kde/core


Ignore:
Timestamp:
05/20/2004 02:41:01 PM (20 years ago)
Author:
Igor Živković <igor@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.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, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
be93b8c
Parents:
8ba058e7
Message:

cleaned & reorganized kde cvs directory

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

Location:
kde/core
Files:
16 added
1 deleted
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • kde/core/arts.xml

    r8ba058e7 ree2025f  
    33<title>aRts-&arts-version;</title>
    44
    5 <sect2><title>Introduction to <application><acronym>aRts</acronym></application></title>
     5&arts-intro;
     6&arts-inst;
     7&arts-exp;
     8&arts-config;
    69
    7 <para>The Analog Real-time Synthesizer (<acronym>aRts</acronym>)
    8 provides sound support for <acronym>KDE</acronym>. It provides necessary
    9 libraries for kdelibs.</para>
    10 
    11 <sect3><title>Package information</title>
    12 <itemizedlist spacing='compact'>
    13 <listitem><para>Download (HTTP): <ulink url="&arts-download-http;"/></para></listitem>
    14 <listitem><para>Download (FTP): <ulink url="&arts-download-ftp;"/></para></listitem>
    15 <listitem><para>Download size: &arts-size;</para></listitem>
    16 <listitem><para>Estimated Disk space required: &arts-buildsize;</para></listitem>
    17 <listitem><para>Estimated build time: &arts-time;</para></listitem></itemizedlist>
    18 </sect3>
    19 
    20 <sect3><title><application>aRts</application> dependencies</title>
    21 <sect4><title>Required</title>
    22 <para>
    23 <xref linkend="qt"/> and
    24 <xref linkend="GLib2"/>
    25 </para></sect4>
    26 <sect4><title>Optional</title>
    27 <para>
    28 <xref linkend="libogg"/>,
    29 <xref linkend="libvorbis"/>,
    30 <xref linkend="alsa"/>,
    31 <xref linkend="audiofile"/>,
    32 <xref linkend="pkgconfig"/>,
    33 <xref linkend="libmad"/>,
    34 <xref linkend="esound"/> and
    35 <ulink url="http://www.mediaapplicationserver.net/">MAS</ulink>
    36 </para></sect4>
    37 </sect3>
    38 
    39 </sect2>
    40 
    41 <sect2>
    42 <title>Installation of <application>aRts</application></title>
    43 
    44 <para>Install <application>aRts</application> by running the
    45 following commands:</para>
    46 
    47 <screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
    48     --disable-dependency-tracking &amp;&amp;
    49 make &amp;&amp;
    50 make install &amp;&amp;
    51 ln -sfn kde-&kde-version; /opt/kde</command></userinput></screen>
    52 
    53 <note><para>Another configure option is <parameter>--enable-final</parameter>.
    54 This option can speed up the build process, but requires a lot of memory.  If
    55 you have less than 256MB of RAM, this option may cause swapping and
    56 significantly slow compilation.</para></note>
    57 
    58 </sect2>
    59 
    60 <sect2><title>Command explanations</title>
    61 <para><parameter>--prefix=&kde-dir;</parameter> : This option tells the
    62 process to install the package in <filename
    63 class="directory">&kde-dir;</filename>. We put aRts here because this
    64 package is required before installing <acronym>KDE</acronym>.</para>
    65 
    66 <para><parameter>--disable-debug</parameter> : This option causes the
    67 system to be compiled without debugging code.
    68 </para>
    69 
    70 <para><parameter>--disable-dependency-tracking</parameter> : This option speeds
    71 up one time builds.</para>
    72 
    73 <para><command>ln -sfn kde-&kde-version; /opt/kde</command> : This parameter creates
    74 a link for access to <acronym>KDE</acronym>. If a newer version of
    75 <acronym>KDE</acronym> is released, the new
    76 system can be built by changing the <parameter>--prefix</parameter> location
    77 and then set up by changing the link as this parameter does.
    78 </para>
    79 
    80 </sect2>
    81 
    82 <sect2><title>Configuring aRts</title>
    83 
    84 <sect3><title>Configuration Information</title>
    85 
    86 <para>The library directory <filename class="directory">/opt/kde/lib</filename>
    87 should appear in <filename>/etc/ld.so.conf</filename>
    88 so that ldd can find the shared libraries. The following command will add it
    89 if it is missing:</para>
    90 
    91 <screen><userinput><command>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"
    92 # Begin kde addition to /etc/ld.so.conf
    93 
    94 /opt/kde/lib
    95 
    96 # End kde addition
    97 EOF
    98 ldconfig</command></userinput></screen>
    99 
    100 </sect3>
    101 
    102 </sect2>
    10310</sect1>
  • kde/core/core.xml

    r8ba058e7 ree2025f  
    44
    55&kde-core-arts;
    6 &kde-libs;
    7 &kde-base;
     6&kdelibs;
     7&kdebase;
    88&kde-core-config;
    99
  • kde/core/kdebase/kdebase-desc.xml

    r8ba058e7 ree2025f  
    1 <sect1 id="kde-base" xreflabel="kdebase-&kde-version;">
    2 <?dbhtml filename="kdebase.html"?>
    3 <title>kdebase-&kde-version;</title>
    4 
    5 <sect2>
    6 <title>Introduction to <application>kdebase</application></title>
    7 
    8 <para><application>kdebase</application> is the second mandatory package (besides kdelibs) for
    9 the K Desktop Environment. It provides various applications and infrastructure files
    10 and libraries.</para>
    11 
    12 <sect3><title>Package information</title>
    13 <itemizedlist spacing='compact'>
    14 <listitem><para>Download (HTTP): <ulink url="&kde-base-download-http;"/></para></listitem>
    15 <listitem><para>Download (FTP): <ulink url="&kde-base-download-ftp;"/></para></listitem>
    16 <listitem><para>Download size: &kde-base-size;</para></listitem>
    17 <listitem><para>Estimated Disk space required: &kde-base-buildsize;</para></listitem>
    18 <listitem><para>Estimated build time: &kde-base-time;</para></listitem></itemizedlist>
    19 </sect3>
    20 
    21 <sect3><title><application>kdebase</application> dependencies</title>
    22 <sect4><title>Required</title>
    23 <para><xref linkend="kde-libs"/></para></sect4>
    24 <sect4><title>Optional</title>
    25 <para>
    26 <xref linkend="libxml2"/>,
    27 <xref linkend="j2sdk"/>,
    28 <xref linkend="lesstif"/>,
    29 <xref linkend="openssl"/>,
    30 <xref linkend="Linux_PAM"/>,
    31 <xref linkend="libtiff"/>,
    32 <xref linkend="openldap"/>,
    33 <xref linkend="pkgconfig"/>,
    34 <xref linkend="libart_lgpl"/>,
    35 <xref linkend="samba3"/>,
    36 <ulink url="http://mtools.linux.lu/">Mtools</ulink>,
    37 <ulink url="http://www.pdc.kth.se/kth-krb/">krb4</ulink>,
    38 <ulink url="http://www.ece.uvic.ca/~mdadams/jasper/">JasPer</ulink>,
    39 <ulink url="http://www.research.att.com/sw/tools/graphviz/">graphviz</ulink> and
    40 <ulink url="http://www.stack.nl/~dimitri/doxygen/">doxygen</ulink>
    41 </para></sect4>
    42 </sect3>
    43 
    44 </sect2>
    45 
    46 <sect2>
    47 <title>Installation of <application>kdebase</application></title>
    48 
    49 <!--
    50 <para>Check to see if <filename class="libraryfile">/lib/libmisc.la</filename>
    51 exists. If not, run:</para>
    52 <screen><userinput><command>ln -sf /usr/lib/libmisc.la /lib/libmisc.la</command>
    53 </userinput></screen>
    54 -->
    55 
    56 <para>Install kdebase with:</para>
    57 <screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
    58     --disable-dependency-tracking &amp;&amp;
    59 make &amp;&amp;
    60 make install</command></userinput></screen>
    61 
    62 </sect2>
    63 
    641<sect2>
    652<title>Contents</title>
    663
    67 <para>Major programs in <application>kdebase</application> include 
     4<para>Major programs in <application>kdebase</application> include
    685<command>kate</command>,
    696<command>kcontrol</command>,
     
    10340<para><command>kdebugdialog</command> is a dialog box for managing
    10441diagnostic messages at runtime.</para></sect3>
    105  
     42
    10643<sect3><title>kdeprint</title>
    107 <para><command>kdeprint</command> provides Print job administration.</para></sect3>
     44<para><command>kdeprint</command> provides Print job
     45administration.</para></sect3>
    10846
    10947<sect3><title>kdesu</title>
     
    11250
    11351<sect3><title>kdm</title>
    114 <para><command>kdm</command> is the <acronym>KDE</acronym> display manager (a
     52<para><command>kdm</command> is the <acronym>KDE</acronym> display
     53manager (a
    11554replacement for <command>xdm</command>).</para></sect3>
    116  
     55
    11756<sect3><title>kfind</title>
    118 <para><command>kfind</command> is an utility to find files.</para></sect3>
     57<para><command>kfind</command> is an utility to find
     58files.</para></sect3>
    11959
    12060<sect3><title>khelpcenter</title>
     
    12464<sect3><title>kicker</title>
    12565<para><command>kicker</command> is the <acronym>KDE</acronym> control
    126 panel.</para></sect3> 
     66panel.</para></sect3>
    12767
    12868<sect3><title>kinfocenter</title>
     
    13373<sect3><title>klipper</title>
    13474<para><command>klipper</command> is a clipboard utility.</para></sect3>
    135  
     75
    13676<sect3><title>kmenuedit</title>
    13777<para><command>kmenuedit</command> is an utility to rearrange or add
     
    13979
    14080<sect3><title>konqueror</title>
    141 <para><command>konqueror</command> is a filesystem and Web browser.</para></sect3>
     81<para><command>konqueror</command> is a filesystem and Web
     82browser.</para></sect3>
    14283
    14384<sect3><title>konsole</title>
     
    163104
    164105<sect3><title>kxkb</title>
    165 <para><command>kxkb</command> is a keyboard layout switching 
     106<para><command>kxkb</command> is a keyboard layout switching
    166107utility based on X11 xkb extension.</para></sect3>
    167108
    168109</sect2>
    169    
    170 </sect1>
Note: See TracChangeset for help on using the changeset viewer.