Changeset 632bfad for kde/polkit-qt.xml


Ignore:
Timestamp:
06/26/2015 07:39:08 PM (9 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
ecb22c1
Parents:
338015f
Message:

Reorganize KDE to support KDE Frameworks 5.
Move several packages to the introduction that are common to KDE4 and FK5.

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

File:
1 moved

Legend:

Unmodified
Added
Removed
  • kde/polkit-qt.xml

    r338015f r632bfad  
    22<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
    33   "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
    4   <!ENTITY % general-entities SYSTEM "../../general.ent">
     4  <!ENTITY % general-entities SYSTEM "../general.ent">
    55  %general-entities;
    66
     
    3030    <title>Introduction to Polkit-Qt</title>
    3131
    32     <para><application>Polkit-Qt</application> provides an API to
    33     <application>polkit</application> in the Qt environment.</para>
     32    <para><application>Polkit-Qt</application> provides an API to PolicyKit in
     33    the Qt environment. Its libraries are used by both KDE4 and KF5, but they
     34    must be linked to <xref linkend='qt4'/> and <xref linkend='qt5'/>
     35    respectively. The two versions to not conflict with each other. </para>
    3436
    3537    &lfs77_checked; &gcc5_checked;
     
    8385    <title>Installation of Polkit-Qt</title>
    8486
    85     <para>Install <application>Polkit-Qt</application> by running the following
    86     commands:</para>
    87 
    88 <screen><userinput>mkdir build &amp;&amp;
     87    <para>Install the qt4 based version of <application>Polkit-Qt</application>
     88    by running the following commands:</para>
     89
     90<screen><userinput>source /usr/bin/setqt4 &amp;&amp;
     91
     92mkdir build &amp;&amp;
    8993cd    build &amp;&amp;
    9094
    91 cmake -DCMAKE_INSTALL_PREFIX=&kde-dir; \
    92       -DCMAKE_BUILD_TYPE=Release         \
    93       -DCMAKE_INSTALL_LIBDIR=lib         \
    94       -DUSE_QT4=TRUE                     \
     95cmake -DCMAKE_INSTALL_PREFIX=/etc \
     96      -DCMAKE_BUILD_TYPE=Release  \
     97      -DCMAKE_INSTALL_LIBDIR=lib  \
     98      -DUSE_QT4=TRUE              \
     99      -Wno-dev .. &amp;&amp;
     100make</userinput></screen>
     101
     102    <para>
     103      This package does not come with a test suite.
     104    </para>
     105
     106    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     107
     108<screen role="root"><userinput>make install</userinput></screen>
     109
     110    <para>Install the qt4 based version of <application>Polkit-Qt</application>
     111    by running the following commands:</para>
     112
     113<screen><userinput>source /usr/bin/setqt5 &amp;&amp;
     114
     115mkdir build &amp;&amp;
     116cd    build &amp;&amp;
     117
     118cmake -DCMAKE_INSTALL_PREFIX=/etc \
     119      -DCMAKE_BUILD_TYPE=Release  \
     120      -DCMAKE_INSTALL_LIBDIR=lib  \
    95121      -Wno-dev .. &amp;&amp;
    96122make</userinput></screen>
     
    139165      <seglistitem>
    140166        <seg>none</seg>
    141         <seg>libpolkit-qt-agent-1.so, libpolkit-qt-core-1.so and libpolkit-qt-gui-1.so</seg>
    142         <seg>&kde-dir;/include/polkit-qt-1</seg>
     167        <seg>libpolkit-qt-agent-1.so,
     168             libpolkit-qt5-agent-1.so,
     169             libpolkit-qt-core-1.so,
     170             libpolkit-qt5-core-1.so, 
     171             libpolkit-qt-gui-1.so, and
     172             libpolkit-qt5-gui-1.so</seg>
     173        <seg>/usr/include/polkit-qt-1,
     174             /usr/include/polkit-qt5-1,
     175             /usr/lib/cmake/PolkitQt-1, and
     176             /usr/lib/cmake/PolkitQt5-1
     177             </seg>
    143178      </seglistitem>
    144179    </segmentedlist>
Note: See TracChangeset for help on using the changeset viewer.