Changeset be352a7
- Timestamp:
- 05/14/2003 12:14:31 AM (21 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 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, gimp3, 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, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 6e23722
- Parents:
- 59049e84
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
basicnet/mailnews/fetchmail/fetchmail-config.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Configuring fetchmail</title>2 <title>Configuring <application>fetchmail</application></title> 3 3 4 4 <sect3><title>Config files</title> … … 8 8 <sect3><title>Configuration Information</title> 9 9 10 < para><screen><userinput>set logfile /var/log/fetchmail.log</userinput>11 <userinput>set no bouncemail</userinput> 12 <userinput>set postmaster root</userinput> 10 <screen>set logfile /var/log/fetchmail.log 11 set no bouncemail 12 set postmaster root 13 13 14 <userinput>poll SERVERNAME :</userinput> 15 <userinput> user "username" pass "password";</userinput> 16 <userinput> mda "/usr/bin/procmail -f %F -d %T";</userinput></screen>17 </para> 14 poll SERVERNAME : 15 user "username" pass "password"; 16 mda "/usr/bin/procmail -f %F -d %T";</screen> 17 18 18 19 19 <para>Is an example configuration that should suffice for most people. You 20 20 can add as many users and servers as you need using the same syntax.</para> 21 21 22 <para>< userinput>man fetchmail</userinput> : Look for the section near23 the bottom named <emphasis role="strong">CONFIGURATION EXAMPLES</emphasis> it gives some quick24 examples too. There are countless other config options once you get used to25 it.</para>22 <para><command>man fetchmail</command> : Look for the section near 23 the bottom named <emphasis role="strong">CONFIGURATION EXAMPLES</emphasis> it 24 gives some quick examples too. There are countless other config options once 25 you get used to it.</para> 26 26 27 27 </sect3> -
basicnet/mailnews/fetchmail/fetchmail-desc.xml
r59049e84 rbe352a7 2 2 <title>Contents</title> 3 3 4 <para>The fetchmail package contains <userinput>fetchmail</userinput>5 and <userinput>fetchmailconf</userinput>.</para>4 <para>The <application>fetchmail</application> package contains 5 <command>fetchmail</command> and <command>fetchmailconf</command>.</para> 6 6 7 7 </sect2> … … 10 10 11 11 <sect3><title>fetchmail</title> 12 <para>When executed as a user this will source that users <filename>~/.fetchmailrc</filename> and 13 download the appropriate mail. When run as root ALL users who have a 14 <filename>.fetchmailrc</filename> will have their mail downloaded and delivered accordingly. 15 </para></sect3> 12 <para>When executed as a user this will source that users <filename>~/.fetchmailrc</filename> and download the appropriate mail. When run as root ALL users 13 who have a <filename>.fetchmailrc</filename> will have their mail downloaded 14 and delivered accordingly.</para></sect3> 16 15 17 16 <sect3><title>fetchmailconf</title> 18 <para>This program provides a Tk GUI interface to your 17 <para>This program provides a <application>Tk</application> 18 <acronym>GUI</acronym> interface to your 19 19 <filename>~/.fetchmailrc</filename> making it 20 much easier to configure. However you will require, Python, and it must 20 much easier to configure. However you will require, 21 <application>Python</application>, and it must 21 22 have the Tkinker module available.</para></sect3> 22 23 -
basicnet/mailnews/fetchmail/fetchmail-exp.xml
r59049e84 rbe352a7 2 2 <title>Command explanations</title> 3 3 4 <para><userinput>--with-ssl</userinput> : This enables SSL if found, so that you can handle connections to secure POP3 and IMAP servers.</para> 4 <para><command>--with-ssl</command> : This enables 5 <acronym>SSL</acronym> if found, so that you can handle connections to 6 secure <acronym>POP3</acronym> and <acronym>IMAP</acronym> servers.</para> 5 7 6 <para><userinput>--enable-fallback=procmail</userinput> : This tells fetchmail 7 to hand incoming mail to procmail for delivery if your port 25 mail server is 8 <para><command>--enable-fallback=procmail</command> : This tells 9 <application>fetchmail</application> to hand incoming mail to 10 <application>procmail</application> for delivery if your port 25 mail server is 8 11 not present or not responding.</para> 12 9 13 </sect2> 10 14 -
basicnet/mailnews/fetchmail/fetchmail-inst.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Installation of fetchmail</title>2 <title>Installation of <application>fetchmail</application></title> 3 3 4 <para>Install fetchmailby running the following commands:</para>4 <para>Install <application>fetchmail</application> by running the following commands:</para> 5 5 6 <para><screen><userinput>./configure --prefix=/usr --with-ssl --enable-fallback=procmail &&</userinput> 7 <userinput>make &&</userinput> 8 <userinput>make install</userinput> 9 </screen> 10 </para> 6 <screen><userinput><command>./configure --prefix=/usr --with-ssl --enable-fallback=procmail && 7 make && 8 make install</command></userinput></screen> 11 9 12 10 </sect2> -
basicnet/mailnews/fetchmail/fetchmail-intro.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Introduction to fetchmail</title>2 <title>Introduction to <application>fetchmail</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&fetchmail-download-http;"/> 5 Download location (FTP): <ulink url="&fetchmail-download-ftp;"/> 6 Version used: &fetchmail-version; 7 Package size: &fetchmail-size; 8 Estimated Disk space required: &fetchmail-buildsize; 9 Estimated build time: &fetchmail-time;</screen> 10 11 <para>The fetchmail package contains the fetchmail program. "It 4 <para>The <application>fetchmail</application> package contains the 5 <command>fetchmail</command> program. "It 12 6 retrieves mail from remote mail servers and forwards it to your local 13 7 (client) machine's delivery system, so it can then be read by 14 8 normal mail user agents." </para> 15 9 16 <screen>fetchmail depends on: 17 <xref linkend="openssl"/> and a local MDA (<xref linkend="procmail"/>)</screen> 10 <sect3><title>Package information</title> 11 <itemizedlist spacing='compact'> 12 <listitem><para>Download (HTTP): <ulink 13 url="&fetchmail-download-http;"/></para></listitem> 14 <listitem><para>Download (FTP): <ulink 15 url="&fetchmail-download-ftp;"/></para></listitem> 16 <listitem><para>Download size: &fetchmail-size;</para></listitem> 17 <listitem><para>Estimated Disk space required: 18 &fetchmail-buildsize;</para></listitem> 19 <listitem><para>Estimated build time: 20 &fetchmail-time;</para></listitem></itemizedlist> 21 </sect3> 22 23 <sect3><title><application>fetchmail</application> dependencies</title> 24 <sect4><title>Required</title> 25 <para><xref linkend="openssl"/> and a local MDA (<xref 26 linkend="procmail"/>) </para></sect4> 27 </sect3> 18 28 19 29 </sect2> -
basicnet/mailnews/mutt/mutt-config.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Configuring mutt</title>2 <title>Configuring <application>mutt</application></title> 3 3 4 4 <sect3><title>Config files</title> … … 10 10 <sect3><title>Configuration Information</title> 11 11 12 <para>No changes in these files are necessary to begin using mutt. When13 you are ready to make changes, the man page for muttrc is a good starting 14 place.</para>12 <para>No changes in these files are necessary to begin using 13 <application>mutt</application>. When you are ready to make changes, the 14 man page for <filename>muttrc</filename> is a good starting place.</para> 15 15 </sect3> 16 16 -
basicnet/mailnews/mutt/mutt-desc.xml
r59049e84 rbe352a7 2 2 <title>Contents</title> 3 3 4 <para>The mutt package contains <userinput>mutt</userinput>,5 < userinput>flea</userinput>, <userinput>muttbug</userinput>,6 < userinput>mutt_dotlock</userinput>, <userinput>pgpwrap</userinput> and <userinput>pgpring</userinput>.</para>4 <para>The <application>mutt</application> package contains <command>mutt</command>, 5 <command>flea</command>, <command>muttbug</command>, 6 <command>mutt_dotlock</command>, <command>pgpwrap</command> and <command>pgpring</command>.</para> 7 7 8 8 </sect2> … … 11 11 12 12 <sect3><title>mutt</title> 13 <para>mutt is a Mail User Agent (MUA) which enables you to read, write 13 <para><command>mutt</command> is a Mail User Agent 14 (<acronym>MUA</acronym>) which enables you to read, write 14 15 and delete your email.</para></sect3> 15 16 16 17 <sect3><title>flea</title> 17 <para>flea is a bug submitter for mutt.</para></sect3> 18 <para><command>flea</command> is a bug submitter for 19 <application>mutt</application>.</para></sect3> 18 20 19 21 <sect3><title>muttbug</title> 20 <para>muttbug is a script that executes flea.</para></sect3> 22 <para><command>muttbug</command> is a script that executes 23 <command>flea</command>.</para></sect3> 21 24 22 25 <sect3><title>mutt_dotlock</title> 23 <para> mutt_dotlockimplements the mail spool file lock.</para></sect3>26 <para><command>mutt_dotlock</command> implements the mail spool file lock.</para></sect3> 24 27 25 28 <sect3><title>pgpwrap</title> -
basicnet/mailnews/mutt/mutt-exp.xml
r59049e84 rbe352a7 2 2 <title>Command explanations</title> 3 3 4 <para><userinput>--sysconfdir=/etc</userinput> : This installs the configuration files into <filename>/etc</filename> instead of <filename>/usr/etc</filename>.</para> 4 <para><command>--sysconfdir=/etc</command> : This installs the configuration 5 files into <filename>/etc</filename> instead of <filename>/usr/etc</filename>.</para> 5 6 6 7 </sect2> -
basicnet/mailnews/mutt/mutt-inst.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Installation of mutt</title>2 <title>Installation of <application>mutt</application></title> 3 3 4 <para> Mutt requires a group named 'mail'. You can add this group, if it5 does not exist, with this command:6 <screen><userinput> groupadd mail</userinput></screen></para>4 <para><application>Mutt</application> requires a group named 'mail'. You can 5 add this group, if it does not exist, with this command: 6 <screen><userinput><command>groupadd mail</command></userinput></screen></para> 7 7 8 <para>If you did not install a MTA, such as <xref linkend="postfix"/> or <xref9 linkend=" sendmail"/>, you need to modify the ownership of10 <filename>/var/mail</filename> with this command:11 <screen><userinput> chgrp mail /var/mail</userinput></screen></para>8 <para>If you did not install a <acronym>MTA</acronym>, such as <xref 9 linkend="postfix"/> or <xref linkend="sendmail"/>, you need to modify the 10 ownership of <filename>/var/mail</filename> with this command: 11 <screen><userinput><command>chgrp mail /var/mail</command></userinput></screen></para> 12 12 13 <para>Install muttby running the following commands:</para>13 <para>Install <application>mutt</application> by running the following commands:</para> 14 14 15 < para><screen><userinput>./configure --prefix=/usr --sysconfdir=/etc &&15 <screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc && 16 16 make && 17 make install </userinput></screen></para>17 make install</command></userinput></screen> 18 18 19 19 </sect2> -
basicnet/mailnews/mutt/mutt-intro.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Introduction to mutt</title>2 <title>Introduction to <application>mutt</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&mutt-download-http;"/> 5 Download location (FTP): <ulink url="&mutt-download-ftp;"/> 6 Version used: &mutt-version; 7 Package size: &mutt-size; 8 Estimated Disk space required: &mutt-buildsize; 9 Estimated build time: &mutt-time;</screen> 4 <para>The <application>mutt</application> package contains a Mail User Agent. This is useful for reading, writing, replying, saving, and deleting your email.</para> 10 5 11 <para>The mutt package contains a Mail User Agent. This is useful for 12 reading, writing, replying, saving, and deleting your email.</para> 13 6 <sect3><title>Package information</title> 7 <itemizedlist spacing='compact'> 8 <listitem><para>Download (HTTP): <ulink 9 url="&mutt-download-http;"/></para></listitem> 10 <listitem><para>Download (FTP): <ulink 11 url="&mutt-download-ftp;"/></para></listitem> 12 <listitem><para>Download size: &mutt-size;</para></listitem> 13 <listitem><para>Estimated Disk space required: 14 &mutt-buildsize;</para></listitem> 15 <listitem><para>Estimated build time: 16 &mutt-time;</para></listitem></itemizedlist> 17 </sect3> 14 18 15 19 </sect2> -
basicnet/mailnews/procmail/procmail-config.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Configuring procmail</title>2 <title>Configuring <application>procmail</application></title> 3 3 4 4 <sect3><title>Config files</title> -
basicnet/mailnews/procmail/procmail-desc.xml
r59049e84 rbe352a7 2 2 <title>Contents</title> 3 3 4 <para>The procmail package contains <userinput>procmail</userinput>, <userinput>formail</userinput>, <userinput>lockfile</userinput> and <userinput>mailstat</userinput>.</para>4 <para>The <application>procmail</application> package contains <command>procmail</command>, <command>formail</command>, <command>lockfile</command> and <command>mailstat</command>.</para> 5 5 6 6 </sect2> … … 9 9 10 10 <sect3><title>procmail</title> 11 <para> procmail is an autonomous mail processor. It performs all the12 functions of a MDA(Mail Delivery Agent).</para></sect3>11 <para><command>procmail</command> is an autonomous mail processor. It performs 12 all the functions of a <acronym>MDA</acronym> (Mail Delivery Agent).</para></sect3> 13 13 14 14 <sect3><title>formail</title> 15 <para> formail is a filter that can be used to format mail into mailbox16 format.</para></sect3>15 <para><command>formail</command> is a filter that can be used to format mail 16 into mailbox format.</para></sect3> 17 17 18 18 <sect3><title>lockfile</title> 19 <para> lockfile is a utility that can lock a file for single use20 interactively or in a script.</para></sect3>19 <para><command>lockfile</command> is a utility that can lock a file for single 20 use interactively or in a script.</para></sect3> 21 21 22 22 <sect3><title>mailstat</title> 23 <para>mailstat prints a summary report of mail that has been filtered by 24 procmail since the last time mailstat was ran.</para></sect3> 23 <para><command>mailstat</command> prints a summary report of mail that has been 24 filtered by <application>procmail</application> since the last time <command> 25 mailstat</command> was ran.</para></sect3> 25 26 26 27 </sect2> -
basicnet/mailnews/procmail/procmail-exp.xml
r59049e84 rbe352a7 2 2 <title>Command explanations</title> 3 3 4 <para>< userinput>BASENAME=/usr</userinput> : The equivalent of <userinput>./configure --prefix=/usr</userinput> on other package installations.</para>4 <para><command>BASENAME=/usr</command> : The equivalent of <command>./configure --prefix=/usr</command> on other package installations.</para> 5 5 6 <para>< userinput>make install-suid</userinput> : Modifies permissions of6 <para><command>make install-suid</command> : Modifies permissions of 7 7 the installed files.</para> 8 8 </sect2> -
basicnet/mailnews/procmail/procmail-inst.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Installation of procmail</title>2 <title>Installation of <application>procmail</application></title> 3 3 4 <para>Install procmailby running the following commands:</para>4 <para>Install <application>procmail</application> by running the following commands:</para> 5 5 6 < para><screen><userinput>make BASENAME=/usr install &&7 make install-suid</ userinput></screen></para>6 <screen><userinput><command>make BASENAME=/usr install && 7 make install-suid</command></userinput></screen> 8 8 9 9 </sect2> -
basicnet/mailnews/procmail/procmail-intro.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Introduction to procmail</title>2 <title>Introduction to <application>procmail</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&procmail-download-http;"/> 5 Download location (FTP): <ulink url="&procmail-download-ftp;"/> 6 Version used: &procmail-version; 7 Package size: &procmail-size; 8 Estimated Disk space required: &procmail-buildsize;</screen> 4 <para>The <application>procmail</application> package contains an autonomous mail processor. This 5 is useful for filtering and sorting incoming mail.</para> 9 6 10 <para>The procmail package contains an autonomous mail processor. This 11 is useful for filtering and sorting incoming mail.</para> 7 <sect3><title>Package information</title> 8 <itemizedlist spacing='compact'> 9 <listitem><para>Download (HTTP): <ulink 10 url="&procmail-download-http;"/></para></listitem> 11 <listitem><para>Download (FTP): <ulink 12 url="&procmail-download-ftp;"/></para></listitem> 13 <listitem><para>Download size: &procmail-size;</para></listitem> 14 <listitem><para>Estimated Disk space required: 15 &procmail-buildsize;</para></listitem> 16 <listitem><para>Estimated build time: 17 &procmail-time;</para></listitem></itemizedlist> 18 </sect3> 12 19 13 20 -
basicnet/mailnews/procmail/procmail.ent
r59049e84 rbe352a7 10 10 <!ENTITY procmail-download-ftp "ftp://ftp.procmail.net/pub/procmail/procmail-3.22.tar.gz"> 11 11 <!ENTITY procmail-size "338 KB"> 12 <!ENTITY procmail-time ""> -
content/databases/db/db-config.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Configuring db</title>2 <title>Configuring <application>db</application></title> 3 3 4 4 <sect3><title>Configuration Information</title> 5 5 6 &library-config; 6 <!-- &library-config; --> 7 7 8 <para>If you recompile perl after installing db-&db-version; you will need to 9 apply the <userinput>perl-5.8.0-db-4.1.patch</userinput> available at 10 <userinput><ulink url="&hfile-root;"/></userinput>.</para> 8 <para>If you recompile perl after installing 9 <application>db</application>-&db-version; you will need to 10 apply the <filename>perl-5.8.0-db-4.1.patch</filename> patch available at 11 <ulink url="&hfile-root;"/>.</para> 11 12 12 13 </sect3> -
content/databases/db/db-desc.xml
r59049e84 rbe352a7 2 2 <title>Contents</title> 3 3 4 <para>The dbpackage contains5 < userinput>db_archive</userinput>,6 < userinput>db_checkpoint</userinput>,7 < userinput>db_deadlock</userinput>,8 < userinput>db_dump</userinput>,9 < userinput>db_load</userinput>,10 < userinput>db_printlog</userinput>,11 < userinput>db_recover</userinput>,12 < userinput>db_stat</userinput>,13 < userinput>db_upgrade</userinput> and14 < userinput>db_verify</userinput>.4 <para>The <application>db</application> package contains 5 <command>db_archive</command>, 6 <command>db_checkpoint</command>, 7 <command>db_deadlock</command>, 8 <command>db_dump</command>, 9 <command>db_load</command>, 10 <command>db_printlog</command>, 11 <command>db_recover</command>, 12 <command>db_stat</command>, 13 <command>db_upgrade</command> and 14 <command>db_verify</command>. 15 15 16 16 </para> … … 21 21 22 22 <sect3><title>db_archive</title> 23 <para> db_archive prints the pathnames of log files that are no longer24 in use.</para></sect3>23 <para><command>db_archive</command> prints the pathnames of log files that are 24 no longer in use.</para></sect3> 25 25 26 26 27 27 <sect3><title>db_checkpoint</title> 28 <para> db_checkpoint is a daemon process used to monitor and checkpoint29 database logs.</para></sect3>28 <para><command>db_checkpoint</command> is a daemon process used to monitor and 29 checkpoint database logs.</para></sect3> 30 30 31 31 <sect3><title>db_deadlock</title> 32 <para> db_deadlock is used to abort lock requests when deadlocks are33 de tected.</para></sect3>32 <para><command>db_deadlock</command> is used to abort lock requests when 33 deadlocks are detected.</para></sect3> 34 34 35 35 <sect3><title>db_dump</title> 36 <para> db_dump converts database files to a flat file format readable37 by db_load.</para></sect3>36 <para><command>db_dump</command> converts database files to a flat file format 37 readable by <command>db_load</command>.</para></sect3> 38 38 39 39 <sect3><title>db_load</title> 40 <para> db_load is used to create database files from flat files created41 with db_dump.</para></sect3>40 <para><command>db_load</command> is used to create database files from flat 41 files created with <command>db_dump</command>.</para></sect3> 42 42 43 43 <sect3><title>db_printlog</title> 44 <para> db_printlog converts database log files to human readable45 text.</para></sect3>44 <para><command>db_printlog</command> converts database log files to human 45 readable text.</para></sect3> 46 46 47 47 48 48 <sect3><title>db_recover</title> 49 <para> db_recover is used to restore a database to a consistent state50 after a failure.</para></sect3>49 <para><command>db_recover</command> is used to restore a database to a 50 consistent state after a failure.</para></sect3> 51 51 52 52 <sect3><title>db_stat</title> 53 <para>db_stat displays database environment statistics.</para></sect3> 53 <para><command>db_stat</command> displays database environment statistics. 54 </para></sect3> 54 55 55 56 <sect3><title>db_upgrade</title> 56 <para> db_upgrade is used to upgrade database files to a newer version57 of Berkeley DB.</para></sect3>57 <para><command>db_upgrade</command> is used to upgrade database files to a 58 newer version of Berkeley <application>DB</application>.</para></sect3> 58 59 59 60 <sect3><title>db_verify</title> 60 <para>db_verify is used to run consistency checks on database files.</para></sect3> 61 <para><command>db_verify</command> is used to run consistency checks on 62 database files.</para></sect3> 61 63 62 64 </sect2> -
content/databases/db/db-exp.xml
r59049e84 rbe352a7 2 2 <title>Command explanations</title> 3 3 4 <para><userinput>cd build_unix && ../dist/configure --prefix=/usr --enable-compat185</userinput> : 5 This replaces the normal ./configure command as db comes with the various 4 <para><command>cd build_unix && ../dist/configure --prefix=/usr 5 --enable-compat185</command> : 6 This replaces the normal <command>./configure</command> command as 7 <application>db</application> comes with the various 6 8 build directories for different platforms.</para> 7 9 8 <para>< userinput>make docdir=/usr/share/doc/db-&db-version;9 install</ userinput> : This installs db installingthe documentation in10 <para><command>make docdir=/usr/share/doc/db-&db-version; 11 install</command> : This installs the documentation in 10 12 the correct place.</para> 11 13 -
content/databases/db/db-inst.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Installation of db</title>2 <title>Installation of <application>db</application></title> 3 3 4 <para>Install dbby running the following commands:</para>4 <para>Install <application>db</application> by running the following commands:</para> 5 5 6 < para><screen><userinput>cd build_unix &&6 <screen><userinput><command>cd build_unix && 7 7 ../dist/configure --prefix=/usr \ 8 8 --enable-compat185 \ 9 9 --enable-cxx && 10 10 make && 11 make docdir=/usr/share/doc/db-&db-version; install</userinput></screen></para> 12 13 <note><para>If you wish to enable Java support in db-&db-version;, 14 add --enable-java to the configure options. Java support is needed 15 if you plan to use system installed db when compiling OpenOffice.</para></note> 11 make docdir=/usr/share/doc/db-&db-version; install</command></userinput></screen> 12 <note><para>If you wish to enable <application>Java</application> 13 support in <application>db</application>-&db-version;, add <command> 14 --enable-java</command> to the configure options. 15 <application>Java</application> support is needed 16 if you plan to use system installed <application>db</application> when 17 compiling <application>OpenOffice</application>.</para></note> 16 18 </sect2> -
content/databases/db/db-intro.xml
r59049e84 rbe352a7 1 1 <sect2> 2 <title>Introduction to db</title>2 <title>Introduction to <application>db</application></title> 3 3 4 <screen>Download location (HTTP): <ulink url="&db-download-http;"/> 5 Download location (FTP): <ulink url="&db-download-ftp;"/> 6 Version used: &db-version; 7 Package size: &db-size; 8 Estimated Disk space required: &db-buildsize;</screen> 4 <para>The <application>db</application> package contains programs and 5 utilities used by many other applications for database related 6 functions.</para> 9 7 10 <para>The db package contains db_archive, db_checkpoint, 11 db_deadlock, db_dump, db_load, db_printlog, db_recover, db_stat, 12 db_upgrade, db_verify and the db libraries. These are used by many 13 other programs for db related functions.</para> 8 <sect3><title>Package information</title> 9 <itemizedlist spacing='compact'> 10 <listitem><para>Download (HTTP): <ulink 11 url="&db-download-http;"/></para></listitem> 12 <listitem><para>Download (FTP): <ulink 13 url="&db-download-ftp;"/></para></listitem> 14 <listitem><para>Download size: &db-size;</para></listitem> 15 <listitem><para>Estimated Disk space required: 16 &db-buildsize;</para></listitem> 17 <listitem><para>Estimated build time: 18 &db-time;</para></listitem></itemizedlist> 19 </sect3> 20 14 21 15 22 </sect2> -
content/databases/db/db.ent
r59049e84 rbe352a7 10 10 <!ENTITY db-download-ftp ""> 11 11 <!ENTITY db-size "3 MB"> 12 <!ENTITY db-time ""> -
index.xml
r59049e84 rbe352a7 3 3 "/usr/share/docbook/docbookx.dtd" [ 4 4 5 <!ENTITY version "2003051 2">6 <!ENTITY releasedate "May 1 2th, 2003">5 <!ENTITY version "20030513"> 6 <!ENTITY releasedate "May 13th, 2003"> 7 7 8 8 <!ENTITY % book SYSTEM "book/book.ent"> -
introduction/welcome/changelog.xml
r59049e84 rbe352a7 10 10 11 11 <itemizedlist> 12 13 <listitem><para>May 13th, 2003 [larry]: basicnet: intro and markup 14 change to db, procmail, fetchmail, mutt.</para></listitem> 12 15 13 16 <listitem><para>May 12th, 2003 [larry]: xsoft: updated to
Note:
See TracChangeset
for help on using the changeset viewer.