source: x/lib/agg.xml@ c8a33e3

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 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
Last change on this file since c8a33e3 was c8a33e3, checked in by Igor Živković <igor@…>, 10 years ago

lfs75 tags

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

  • Property mode set to 100644
File size: 5.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
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 <!ENTITY agg-download-http
8 "http://www.antigrain.com/agg-&agg-version;.tar.gz">
9 <!ENTITY agg-download-ftp " ">
10 <!ENTITY agg-md5sum "0229a488bc47be10a2fee6cf0b2febd6">
11 <!ENTITY agg-size "552 KB">
12 <!ENTITY agg-buildsize "122 MB">
13 <!ENTITY agg-time "1.2 SBU">
14]>
15
16<sect1 id="agg" xreflabel="agg-&agg-version;">
17 <?dbhtml filename="agg.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>agg-&agg-version;</title>
25
26 <indexterm zone="agg">
27 <primary sortas="a-agg">agg</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to agg</title>
32
33 <para>
34 The Anti-Grain Geometry (AGG) package contains a general purpose C++
35 graphical toolkit. It can be used in many areas of computer programming
36 where high quality 2D graphics is an essential part of the project.
37 </para>
38
39 &lfs75_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&agg-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&agg-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &agg-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &agg-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &agg-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &agg-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">agg Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="sdl"/> and
80 <xref linkend="xorg7-lib"/>
81 </para>
82
83 <para condition="html" role="usernotes">
84 User Notes: <ulink url="&blfs-wiki;/agg"/>
85 </para>
86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of agg</title>
90
91 <para>
92 Install <application>agg</application> by running the following
93 commands:
94 </para>
95
96<screen><userinput>sed -i 's: -L@x_libraries@::' src/platform/X11/Makefile.am &amp;&amp;
97sed -i '/^AM_C_PROTOTYPES/d' configure.in &amp;&amp;
98
99bash autogen.sh --prefix=/usr --disable-static &amp;&amp;
100make</userinput></screen>
101
102 <para>
103 This package does not come with a test suite.
104 </para>
105
106 <para>
107 Now, as the <systemitem class="username">root</systemitem> user:
108 </para>
109
110<screen role="root"><userinput>make install</userinput></screen>
111 </sect2>
112
113 <sect2 role="commands">
114 <title>Command Explanations</title>
115
116 <para>
117 <command>sed -i 's: -L@x_libraries@::'
118 src/platform/X11/Makefile.am</command>: This fixes compiling with the
119 current Xorg Libraries.
120 </para>
121
122 <para>
123 <command>sed -i '/^AM_C_PROTOTYPES/d' configure.in</command>: this fixes
124 reconfiguring with the current version of <command>automake</command>.
125 </para>
126
127 <para>
128 <command>bash autogen.sh</command>: This script uses autotools to create
129 the configure script, then it runs configure with the given arguments.
130 </para>
131
132 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
133 href="../../xincludes/static-libraries.xml"/>
134 </sect2>
135
136 <sect2 role="content">
137 <title>Contents</title>
138
139 <segmentedlist>
140 <segtitle>Installed Programs</segtitle>
141 <segtitle>Installed Libraries</segtitle>
142 <segtitle>Installed Directory</segtitle>
143
144 <seglistitem>
145 <seg>
146 None
147 </seg>
148 <seg>
149 libagg.so,
150 libaggfontfreetype.so,
151 libaggplatformsdl.so, and
152 libaggplatformX11.so
153 </seg>
154 <seg>/usr/include/agg2</seg>
155 </seglistitem>
156 </segmentedlist>
157
158 <variablelist>
159 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
160 <?dbfo list-presentation="list"?>
161 <?dbhtml list-presentation="table"?>
162
163 <varlistentry id="libagg">
164 <term><filename class="libraryfile">libagg.so</filename></term>
165 <listitem>
166 <para>contains the AGG API functions.</para>
167 <indexterm zone="agg libagg">
168 <primary sortas="c-libagg">libagg.so</primary>
169 </indexterm>
170 </listitem>
171 </varlistentry>
172
173 <varlistentry id="libaggfontfreetype">
174 <term><filename class="libraryfile">libaggfontfreetype.so</filename></term>
175 <listitem>
176 <para>contains the AGG freetype font API functions.</para>
177 <indexterm zone="agg libaggfontfreetype">
178 <primary sortas="c-libaggfontfreetype">libaggfontfreetype.so</primary>
179 </indexterm>
180 </listitem>
181 </varlistentry>
182
183 <varlistentry id="libaggplatformsdl">
184 <term><filename class="libraryfile">libaggplatformsdl.so</filename></term>
185 <listitem>
186 <para>contains the AGG SDL API functions that.</para>
187 <indexterm zone="agg libaggplatformsdl">
188 <primary sortas="c-libaggplatformsdl">libaggplatformsdl.so</primary>
189 </indexterm>
190 </listitem>
191 </varlistentry>
192
193 <varlistentry id="libaggplatformX11">
194 <term><filename class="libraryfile">libaggplatformX11.so</filename></term>
195 <listitem>
196 <para>contains the AGG LibX11 API functions.</para>
197 <indexterm zone="agg libaggplatformX11">
198 <primary sortas="c-libaggplatformX11">libaggplatformX11.so</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202 </variablelist>
203 </sect2>
204</sect1>
Note: See TracBrowser for help on using the repository browser.