source: general/prog/apache-ant.xml@ ea20da9

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
Last change on this file since ea20da9 was ff6e37c8, checked in by Pierre Labastie <pieere@…>, 9 years ago

Update to apache-ant-1.9.5

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

  • Property mode set to 100644
File size: 12.1 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 apache-ant-download-http "https://archive.apache.org/dist/ant/source/apache-ant-&apache-ant-version;-src.tar.bz2">
8 <!ENTITY apache-ant-download-ftp " ">
9 <!ENTITY apache-ant-md5sum "1eddcf051c8a7010c46ca940c63d478d">
10 <!ENTITY apache-ant-size "3.6 MB">
11 <!ENTITY apache-ant-buildsize "183 MB">
12 <!ENTITY apache-ant-time "0.3 SBU">
13]>
14
15<sect1 id="apache-ant" xreflabel="apache-ant-&apache-ant-version;">
16 <?dbhtml filename="apache-ant.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>apache-ant-&apache-ant-version;</title>
24
25 <indexterm zone="apache-ant">
26 <primary sortas="a-Apache-Ant">Apache Ant</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Apache Ant</title>
31
32 <para>The <application>Apache Ant</application> package is a
33 <application>Java</application>-based build tool. In theory, it is
34 like the <command>make</command> command, but without <command>make</command>'s
35 wrinkles. <application>Ant</application> is different. Instead of a model
36 that is extended with shell-based commands, <application>Ant</application>
37 is extended using <application>Java</application> classes. Instead of
38 writing shell commands, the configuration files are XML-based, calling out
39 a target tree that executes various tasks. Each task is run by an object
40 that implements a particular task interface.</para>
41
42 &lfs77_checked;
43
44 <bridgehead renderas="sect3">Package Information</bridgehead>
45 <itemizedlist spacing="compact">
46 <listitem>
47 <para>Download (HTTP): <ulink url="&apache-ant-download-http;"/></para>
48 </listitem>
49 <listitem>
50 <para>Download (FTP): <ulink url="&apache-ant-download-ftp;"/></para>
51 </listitem>
52 <listitem>
53 <para>Download MD5 sum: &apache-ant-md5sum;</para>
54 </listitem>
55 <listitem>
56 <para>Download size: &apache-ant-size;</para>
57 </listitem>
58 <listitem>
59 <para>Estimated disk space required: &apache-ant-buildsize;</para>
60 </listitem>
61 <listitem>
62 <para>Estimated build time: &apache-ant-time;</para>
63 </listitem>
64 </itemizedlist>
65
66 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
67 <itemizedlist spacing="compact">
68 <listitem>
69 <para>
70 Required file: <ulink
71 url="http://anduin.linuxfromscratch.org/sources/other/junit-&junit-version;.jar">
72 http://anduin.linuxfromscratch.org/sources/other/junit-&junit-version;.jar</ulink>
73 </para>
74 </listitem>
75 <listitem>
76 <para>
77 Required file: <ulink
78 url="http://hamcrest.googlecode.com/files/hamcrest-&hamcrest-version;.tgz">
79 http://hamcrest.googlecode.com/files/hamcrest-&hamcrest-version;.tgz </ulink>
80 </para>
81 </listitem>
82 <listitem>
83 <para>Optional documentation: <ulink
84 url="https://archive.apache.org/dist/ant/manual/apache-ant-&apache-ant-version;-manual.tar.bz2">
85 https://archive.apache.org/dist/ant/manual/apache-ant-&apache-ant-version;-manual.tar.bz2
86 </ulink>
87 </para>
88 </listitem>
89 </itemizedlist>
90
91 <bridgehead renderas="sect3">Apache Ant Dependencies</bridgehead>
92
93 <bridgehead renderas="sect4">Required</bridgehead>
94 <para role="required">
95 A JDK (<xref linkend="java-bin"/> or <xref linkend="openjdk"/>) and
96 <xref linkend="glib2"/>
97 </para>
98
99<!-- <bridgehead renderas="sect4">Recommended</bridgehead>
100 <para role="recommended">
101 <xref linkend="junit"/>
102 </para>
103-->
104 <para condition="html" role="usernotes">User Notes:
105 <ulink url="&blfs-wiki;/apache-ant"/></para>
106
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of Apache Ant</title>
111
112 <note>
113 <para>You may need additional libraries to satisfy the build
114 requirements of various packages installed using
115 <application>Apache Ant</application>. Review the table at
116 <ulink url="http://ant.apache.org/manual/install.html#librarydependencies"/>
117 for any prerequisite libraries you may need. Place any needed libraries
118 in <filename>lib/optional</filename>.</para>
119 </note>
120
121<!-- <para>If it is not possible to install the recommended
122 <application>JUnit</application> package, install
123 <application>Apache Ant</application> by removing the reference to the test
124 instructions (note that the tests will not be performed):</para>
125
126<screen><userinput>sed -i 's/jars,test-jar/jars/' build.xml</userinput></screen>
127-->
128 <para>Unpack and copy the <application>junit</application> and
129 <application>hamcrest</application> jar files to the
130 local directory tree.</para>
131
132<screen><userinput>tar -xvf ../hamcrest-&hamcrest-version;.tgz &amp;&amp;
133cp -v ../junit-&junit-version;.jar \
134 hamcrest-&hamcrest-version;/hamcrest-core-&hamcrest-version;.jar lib/optional</userinput></screen>
135
136 <para>If you wish to install the documentation, unpack it:</para>
137
138<screen><userinput>tar -xvf ../apache-ant-&apache-ant-version;-manual.tar.bz2</userinput></screen>
139
140 <para>Install <application>Apache Ant</application> by running the following
141 commands:</para>
142
143 <para>The unit regression tests are performed during the build step below
144 unless <application>JUnit</application> is not installed. Now, as the
145 <systemitem class="username">root</systemitem> user:</para>
146
147<screen role="root"><userinput>./build.sh -Ddist.dir=/opt/ant-&apache-ant-version; dist &amp;&amp;
148ln -v -sfn ant-&apache-ant-version; /opt/ant</userinput></screen>
149
150 <note><para>Make sure the JAVA_HOME environment variable is set for the
151 <systemitem class="username">root</systemitem> user.</para></note>
152
153 <para>Install the documentation as the
154 <systemitem class="username">root</systemitem> user:</para>
155
156<screen role="root"><userinput>install -m755 -d /opt/ant-&apache-ant-version;/docs &amp;&amp;
157cp -Rv apache-ant-&apache-ant-version;/* /opt/ant-&apache-ant-version;/docs</userinput></screen>
158
159 </sect2>
160
161 <sect2 role="commands">
162 <title>Command Explanations</title>
163
164<!-- <para><command>sed -i 's/jars...</command>: If the
165 <application>JUnit</application> package is not installed, the regression
166 tests cannot be performed.</para>
167-->
168 <para><command>cp -v ... lib/optional</command>:
169 This command copies the JUnit and hamcrest jar files into the directory where
170 Apache Ant will look for it.</para>
171
172 <para><command>./build.sh -Ddist.dir=/opt/ant-&apache-ant-version;
173 dist</command>: This command does everything. It builds, tests, then
174 installs the package into
175 <filename class='directory'>/opt/ant-&apache-ant-version;</filename>.</para>
176
177 <para><command>ln -v -sfn ant-&apache-ant-version; /opt/ant</command>: This
178 command is optional, and creates a convenience symlink.</para>
179
180 </sect2>
181
182 <sect2 role="configuration">
183 <title>Configuring Apache Ant</title>
184
185 <sect3 id="apache-ant-config">
186 <title>Config Files</title>
187
188 <para><filename>/etc/ant/ant.conf</filename>,
189 <filename>~/.ant/ant.conf</filename>, and
190 <filename>~/.antrc</filename></para>
191
192 <indexterm zone="apache-ant apache-ant-config">
193 <primary sortas="e-AA.ant-ant.conf">~/.ant/ant.conf</primary>
194 </indexterm>
195
196 <indexterm zone="apache-ant apache-ant-config">
197 <primary sortas="e-AA.antrc">~/.antrc</primary>
198 </indexterm>
199
200 <indexterm zone="apache-ant apache-ant-config">
201 <primary sortas="e-etc-ant-ant.conf">/etc/ant/ant.conf</primary>
202 </indexterm>
203
204 </sect3>
205
206 <sect3>
207 <title>Configuration Information</title>
208
209 <para>Some packages will require <command>ant</command> to be in the
210 search path and the <envar>ANT_HOME</envar> environment variable
211 defined. Satisfy these requirements by issuing, as the <systemitem
212 class="username">root</systemitem> user:</para>
213
214<screen role="root"><userinput>cat &gt;&gt; /etc/profile.d/extrapaths.sh &lt;&lt; EOF
215<literal>
216# Begin Apache-ant addition
217
218pathappend /opt/ant/bin
219export ANT_HOME=/opt/ant
220
221# End Apache-ant addition
222</literal>
223EOF</userinput></screen>
224
225 <para>The above instrutions assume you have configured your system as
226 described in <xref linkend="postlfs-config-profile"/>.</para>
227
228 </sect3>
229
230 </sect2>
231
232 <sect2 role="content">
233 <title>Contents</title>
234
235 <segmentedlist>
236 <segtitle>Installed Programs</segtitle>
237 <segtitle>Installed Libraries</segtitle>
238 <segtitle>Installed Directories</segtitle>
239
240 <seglistitem>
241 <seg>ant, antRun, antRun.pl, complete-ant-cmd.pl, runant.pl, and runant.py</seg>
242 <seg>ant*.jar</seg>
243 <seg>/opt/ant-&apache-ant-version;</seg>
244 </seglistitem>
245 </segmentedlist>
246
247 <variablelist>
248 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
249 <?dbfo list-presentation="list"?>
250 <?dbhtml list-presentation="table"?>
251
252 <varlistentry id="ant">
253 <term><command>ant</command></term>
254 <listitem>
255 <para>is a <application>Java</application> based build tool used by
256 many packages instead of the conventional <command>make</command>
257 program.</para>
258 <indexterm zone="apache-ant ant">
259 <primary sortas="b-ant">ant</primary>
260 </indexterm>
261 </listitem>
262 </varlistentry>
263
264 <varlistentry id="antRun">
265 <term><command>antRun</command></term>
266 <listitem>
267 <para>is a support script used to start <command>ant</command>
268 build scripts in a given directory.</para>
269 <indexterm zone="apache-ant antRun">
270 <primary sortas="b-antRun">antRun</primary>
271 </indexterm>
272 </listitem>
273 </varlistentry>
274
275 <varlistentry id="antRun.pl">
276 <term><command>antRun.pl</command></term>
277 <listitem>
278 <para>is a <application>Perl</application> script that provides
279 similar functionality offered by the <command>antRun</command> script.</para>
280 <indexterm zone="apache-ant antRun.pl">
281 <primary sortas="b-antRun.pl">antRun.pl</primary>
282 </indexterm>
283 </listitem>
284 </varlistentry>
285
286 <varlistentry id="complete-ant-cmd.pl">
287 <term><command>complete-ant-cmd.pl</command></term>
288 <listitem>
289 <para>is a <application>Perl</application> script that allows
290 <application>Bash</application> to complete an <command>ant</command>
291 command-line.</para>
292 <indexterm zone="apache-ant complete-ant-cmd.pl">
293 <primary sortas="b-complete-ant-cmd.pl">complete-ant-cmd.pl</primary>
294 </indexterm>
295 </listitem>
296 </varlistentry>
297
298 <varlistentry id="runant.pl">
299 <term><command>runant.pl</command></term>
300 <listitem>
301 <para>is a <application>Perl</application> wrapper script used to
302 invoke <command>ant</command>.</para>
303 <indexterm zone="apache-ant runant.pl">
304 <primary sortas="b-runant.pl">runant.pl</primary>
305 </indexterm>
306 </listitem>
307 </varlistentry>
308
309 <varlistentry id="runant.py">
310 <term><command>runant.py</command></term>
311 <listitem>
312 <para>is a <application>Python</application> wrapper script used to
313 invoke <command>ant</command>.</para>
314 <indexterm zone="apache-ant runant.py">
315 <primary sortas="b-runant.py">runant.py</primary>
316 </indexterm>
317 </listitem>
318 </varlistentry>
319
320 <varlistentry id="ant-star">
321 <term><filename class='libraryfile'>ant*.jar</filename></term>
322 <listitem>
323 <para>files are the <application>Apache Ant</application>
324 <application>Java</application> class libraries.</para>
325 <indexterm zone="apache-ant ant-star">
326 <primary sortas="c-ant-star">ant-*.jar</primary>
327 </indexterm>
328 </listitem>
329 </varlistentry>
330
331 </variablelist>
332
333 </sect2>
334
335</sect1>
Note: See TracBrowser for help on using the repository browser.