source: chapter08/pkgconf.xml@ 092b86a

12.1 12.1-rc1 multilib trunk xry111/arm64 xry111/clfs-ng xry111/loongarch xry111/loongarch-12.1 xry111/mips64el
Last change on this file since 092b86a was 75d2616, checked in by Xi Ruoyao <xry111@…>, 4 months ago

pkgconf: Update the fix for modversion regression (#5414)

  • Property mode set to 100644
File size: 4.0 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-pkgconf" role="wrap">
9 <?dbhtml filename="pkgconf.html"?>
10
11 <sect1info condition="script">
12 <productname>pkgconf</productname>
13 <productnumber>&pkgconf-version;</productnumber>
14 <address>&pkgconf-url;</address>
15 </sect1info>
16
17 <title>Pkgconf-&pkgconf-version;</title>
18
19 <indexterm zone="ch-system-pkgconf">
20 <primary sortas="a-pkgconf">Pkgconf</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The pkgconf package is a
27 successor to pkg-config and contains a tool for passing the include path
28 and/or library paths to build tools during the configure and make phases
29 of package installations.</para>
30
31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
34
35 <seglistitem>
36 <seg>&pkgconf-fin-sbu;</seg>
37 <seg>&pkgconf-fin-du;</seg>
38 </seglistitem>
39 </segmentedlist>
40
41 </sect2>
42
43 <sect2 role="installation">
44
45 <title>Installation of Pkgconf</title>
46
47 <!-- https://github.com/pkgconf/pkgconf/issues/317 -->
48 <para>Fix a regression in pkgconf-2.1.0 breaking BLFS packages:</para>
49
50 <screen><userinput remap="pre">patch -Np1 -i ../&pkgconf-upstream-fix-patch;</userinput></screen>
51
52 <para>Prepare Pkgconf for compilation:</para>
53
54<screen><userinput remap="configure">./configure --prefix=/usr \
55 --disable-static \
56 --docdir=/usr/share/doc/pkgconf-&pkgconf-version;</userinput></screen>
57
58 <para>Compile the package:</para>
59
60<screen><userinput remap="make">make</userinput></screen>
61
62 <para>Install the package:</para>
63
64<screen><userinput remap="install">make install</userinput></screen>
65
66 <para>To maintain compatibility with the original Pkg-config create two
67 symlinks:</para>
68
69<screen><userinput remap="install">ln -sv pkgconf /usr/bin/pkg-config
70ln -sv pkgconf.1 /usr/share/man/man1/pkg-config.1</userinput></screen>
71
72 </sect2>
73
74 <sect2 id="contents-pkgconf" role="content">
75 <title>Contents of Pkgconf</title>
76
77 <segmentedlist>
78 <segtitle>Installed programs</segtitle>
79 <segtitle>Installed library</segtitle>
80 <segtitle>Installed directory</segtitle>
81
82 <seglistitem>
83 <seg>pkgconf, pkg-config (link to pkgconf), and bomtool</seg>
84 <seg>libpkgconf.so</seg>
85 <seg>/usr/share/doc/pkgconf-&pkgconf-version;</seg>
86 </seglistitem>
87 </segmentedlist>
88
89 <variablelist>
90 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
91 <?dbfo list-presentation="list"?>
92 <?dbhtml list-presentation="table"?>
93
94 <varlistentry id="pkgconf">
95 <term><command>pkgconf</command></term>
96 <listitem>
97 <para>Returns meta information for the specified library or
98 package</para>
99 <indexterm zone="ch-system-pkgconf pkgconf">
100 <primary sortas="b-pkgconf">pkgconf</primary>
101 </indexterm>
102 </listitem>
103 </varlistentry>
104
105 <varlistentry id="bomtool">
106 <term><command>bomtool</command></term>
107 <listitem>
108 <para>Generates a Software Bill Of Materials from pkg-config .pc
109 files</para>
110 <indexterm zone="ch-system-pkgconf bomtool">
111 <primary sortas="b-bomtool">bomtool</primary>
112 </indexterm>
113 </listitem>
114 </varlistentry>
115
116 <varlistentry id="libpkgconf">
117 <term><filename class="libraryfile">libpkgconf</filename></term>
118 <listitem>
119 <para>Contains most of pkgconf's functionality, while allowing
120 other tools like IDEs and compilers to use its frameworks</para>
121 <indexterm zone="ch-system-pkgconf libpkgconf">
122 <primary sortas="c-libpkgconf">libpkgconf</primary>
123 </indexterm>
124 </listitem>
125 </varlistentry>
126 </variablelist>
127 </sect2>
128
129</sect1>
Note: See TracBrowser for help on using the repository browser.