glfs/basicnet/netprogs/subversion.xml
DJ Lucas e4fef732a2 subversion-1.0.6 and vsftpd changes
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2487 af4574ff-66df-0310-9fd7-8a98e5e911e0
2004-07-22 02:11:27 +00:00

149 lines
5.2 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY subversion-download-http "http://subversion.tigris.org/tarballs/subversion-&subversion-version;.tar.bz2">
<!ENTITY subversion-download-ftp " ">
<!ENTITY subversion-size "5.8 MB">
<!ENTITY subversion-buildsize "99 MB">
<!ENTITY subversion-time "0.80 SBU">
]>
<sect1 id="subversion" xreflabel="Subversion-&subversion-version;">
<?dbhtml filename="subversion.html"?>
<title>Subversion-&subversion-version;</title>
<sect2>
<title>Introduction to <application>Subversion</application></title>
<para><application>Subversion</application> is a version control system that
is designed to be a compelling replacement for <acronym>CVS</acronym> in
the open source community. It extends and enhances <acronym>CVS</acronym>'s
feature set, while maintaining a similar interface for those already familiar
with <acronym>CVS</acronym>. These instructions install the client used to
manipulate a <application>Subversion</application> repository, creation of
a repository is covered at <xref linkend="svnserver"/>.</para>
<sect3><title>Package information</title>
<itemizedlist spacing='compact'>
<listitem><para>Download (HTTP): <ulink url="&subversion-download-http;"/></para></listitem>
<listitem><para>Download (FTP): <ulink url="&subversion-download-ftp;"/></para></listitem>
<listitem><para>Download size: &subversion-size;</para></listitem>
<listitem><para>Estimated Disk space required: &subversion-buildsize;</para></listitem>
<listitem><para>Estimated build time: &subversion-time;</para></listitem></itemizedlist>
</sect3>
<sect3><title><application>Subversion</application> dependencies</title>
<sect4><title>Required (client and server)</title>
<para><xref linkend="libxml2"/></para></sect4>
<sect4><title>Required (server only)</title>
<para><xref linkend="db"/></para></sect4>
<sect4><title>Optional (cleint and server)</title>
<para>
<xref linkend="expat"/>,
<xref linkend="gdbm"/>,
<xref linkend="openssl"/>,
<xref linkend="openssh"/>,
<xref linkend="pkgconfig"/> and
<xref linkend="heimdal"/> or <xref linkend="mitkrb"/>
</para></sect4>
<sect4><title>Optional (server only)</title>
<para>
inetd or <xref linkend="xinetd" />,
<xref linkend="apache"/>,
<xref linkend="j2sdk"/>,
<xref linkend="Python"/>,
<ulink url="http://www.swig.org">SWIG</ulink> and
<ulink url="http://www.webdav.org/neon/">neon-0.24.7</ulink>
</para>
</sect4>
</sect3>
</sect2>
<sect2>
<title>Installation of <application>Subversion</application></title>
<para>Install <application>Subversion</application> by running the following commands:</para>
<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen>
<note><para>If you have <application>Apache</application> installed pass
the <parameter>--with-apr=/usr</parameter> and
<parameter>--with-apr-util=/usr</parameter> switches to the
<command>configure</command> script. Otherwise,
<application>Subversion</application> will overwrite
<acronym>APR</acronym> and <acronym>APR</acronym>-utils from
<application>Apache</application> installation with its own
files.</para></note>
</sect2>
<sect2>
<title>Configuring <application>Subversion</application></title>
<sect3><title>Config files</title>
<para><filename>~/.subversion/config</filename>, <filename>/etc/subversion/config</filename></para>
</sect3>
<sect3><title>Configuration Information</title>
<para><filename>/etc/subversion/config</filename> is the
<application>Subversion</application> system-wide configuration file.
This file is used to specify defaults for different
<command>svn</command> commands.</para>
<para><filename>~/.subversion/config</filename> is the user's personal
configuration file. It is used to override the system-wide defaults
set in <filename>/etc/subversion/config</filename>.</para>
</sect3>
</sect2>
<sect2>
<title>Contents</title>
<para>The <application>Subversion</application> package contains
<command>svn</command>, <command>svnversion</command>,
<command>svnlook</command>, <command>svnadmin</command>,
<command>svndumpfilter</command>, <command>mod_dav_svn</command>
and <command>svnserve</command>.</para>
</sect2>
<sect2><title>Description</title>
<sect3><title>svn</title>
<para>The command-line client program.</para></sect3>
<sect3><title>svnversion</title>
<para>A program for reporting the state of a working copy.</para></sect3>
<sect3><title>svnlook</title>
<para>A tool for inspecting a Subversion repository.</para></sect3>
<sect3><title>svnadmin</title>
<para>A tool for creating, tweaking or repairing a Subversion
repository.</para></sect3>
<sect3><title>svndumpfilter</title>
<para>A program for filtering Subversion repository dumpfile format
streams.</para></sect3>
<sect3><title>mod_dav_svn</title>
<para>A plug-in module for the Apache HTTP Server, used to make your
repository available to others over a network.</para></sect3>
<sect3><title>svnserve</title>
<para>A custom standalone server program, able to run as a daemon process or
invoked by <acronym>SSH</acronym>.</para></sect3>
</sect2>
</sect1>