Changeset 7319b78


Ignore:
Timestamp:
02/01/2003 04:51:51 PM (21 years ago)
Author:
Billy O 'Connor <billyoc@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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, 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, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
123c844
Parents:
9a88a3b9
Message:

<screen> formatting fixes.

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

Files:
18 edited

Legend:

Unmodified
Added
Removed
  • pst/typesetting/tex/tex-inst.xml

    r9a88a3b9 r7319b78  
    88<para>Install TeX by running the following commands:</para>
    99
    10 <para><screen><userinput>
    11 mkdir -p /usr/share/texmf &amp;&amp;
     10<para><screen><userinput>mkdir -p /usr/share/texmf &amp;&amp;
    1211tar zxvf teTeX-src-&tex-version;.tar.gz &amp;&amp;
    1312cd teTeX-&tex-version; &amp;&amp;
    1413gzip -dc ../teTeX-texmf-&tex-version;.tar.gz \
    15       | (umask 0; cd /usr/share/texmf; tar xvf -)
    16 </userinput></screen></para>
     14      | (umask 0; cd /usr/share/texmf; tar xvf -)</userinput></screen></para>
    1715
    1816<para>If the optional texmf source code tar ball was downloaded, untar
    1917it now:</para>
    20 <para><screen><userinput>     
    21 gzip -dc ../teTeX-texmfsrc-&tex-version;.tar.gz \
    22       | (umask 0; cd /usr/share/texmf; tar xvf -)
    23 </userinput></screen></para>
     18<para><screen><userinput>gzip -dc ../teTeX-texmfsrc-&tex-version;.tar.gz \
     19      | (umask 0; cd /usr/share/texmf; tar xvf -)</userinput></screen></para>
    2420
    25 <para><screen><userinput>     
    26 ./configure --with-x=no --prefix=/usr \
     21<para><screen><userinput>./configure --with-x=no --prefix=/usr \
    2722    --without-texinfo   --with-system-ncurses --with-system-zlib \
    2823    --exec-prefix=/usr --bindir=/usr/bin &amp;&amp;
    2924make world &amp;&amp;
    3025texconfig dvips paper letter &amp;&amp;
    31 texconfig font rw
    32 </userinput></screen></para>
     26texconfig font rw</userinput></screen></para>
    3327
    3428<note><para>
  • server/mail/exim/exim-config.xml

    r9a88a3b9 r7319b78  
    99<para>Create the exim configuration files with the following commands:
    1010</para>
    11 <para><screen><userinput>
    12 cat &gt;&gt; /etc/aliases &lt;&lt; "EOF"
     11<para><screen><userinput>cat &gt;&gt; /etc/aliases &lt;&lt; "EOF"
    1312postmaster: root
    1413MAILER-DAEMON: root
    1514EOF
    1615exim -v -bi
    17 /usr/sbin/exim -bd -q1m
    18 </userinput></screen></para>
     16/usr/sbin/exim -bd -q1m</userinput></screen></para>
     17
    1918<note><para>To protect an existing <filename>/etc/aliases</filename>
    2019file, we will append these aliases to it if it exists.  This file
  • server/mail/exim/exim-inst.xml

    r9a88a3b9 r7319b78  
    44<para>Before building exim, we need to create a user and group for
    55exim with the following commands:</para>
    6 <para><screen><userinput>
    7 groupadd exim
    8 useradd -g exim exim
    9 </userinput></screen></para>
     6<para><screen><userinput>groupadd exim
     7useradd -g exim exim</userinput></screen></para>
    108
    119<para>Install exim with the following commands:</para>
    1210
    13 <para><screen><userinput>
    14 sed -e 's/^BIN_DIR.*$/BIN_DIRECTORY=\/usr\/sbin/' src/EDITME | \
     11<para><screen><userinput>sed -e 's/^BIN_DIR.*$/BIN_DIRECTORY=\/usr\/sbin/' src/EDITME | \
    1512  sed -e 's/^CONF.*$/CONFIGURE_FILE=\/etc\/exim.conf/' | \
    1613  sed -e 's/^EXIM_USER.*$/EXIM_USER=exim/' | \
     
    1815make &amp;&amp;
    1916make install &amp;&amp;
    20 ln -s /usr/sbin/exim /usr/sbin/sendmail
    21 </userinput></screen></para>
     17ln -s /usr/sbin/exim /usr/sbin/sendmail</userinput></screen></para>
    2218</sect2>
    2319
  • server/mail/qmail/qmail-config.xml

    r9a88a3b9 r7319b78  
    1111entry to <filename>/etc/inetd.conf</filename>: </para>
    1212
    13 <para><screen><userinput>
    14 echo "smtp stream tcp nowait qmaild /var/qmail/bin/tcp-env \
    15 tcp-env /var/qmail/bin/qmail-smtpd" >> /etc/inetd.conf
    16 </userinput></screen></para>
     13<para><screen><userinput>echo "smtp stream tcp nowait qmaild /var/qmail/bin/tcp-env \
     14tcp-env /var/qmail/bin/qmail-smtpd" >> /etc/inetd.conf</userinput></screen></para>
    1715
    1816<para>If xinetd is used, the following command will add the qmaild
    1917entry to <filename>/etc/xinetd.conf</filename>: </para>
    2018
    21 <para><screen><userinput>
    22 cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
     19<para><screen><userinput>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
    2320service smtp
    2421{
     
    3532    log_on_failture         += USERID
    3633}
    37 EOF     
    38 </userinput></screen></para>
     34EOF</userinput></screen></para>
    3935
    4036<para>To automate the running of qmail, use following command to
    4137create the init.d script:</para>
    4238
    43 <para><screen><userinput>
    44 cat &gt; /etc/rc.d/init.d/qmail &lt;&lt; "EOF"
     39<para><screen><userinput>cat &gt; /etc/rc.d/init.d/qmail &lt;&lt; "EOF"
    4540#!/bin/sh
    4641# Begin $rc_base/init.d/qmail
  • server/mail/qmail/qmail-inst.xml

    r9a88a3b9 r7319b78  
    77
    88
    9 <para><screen><userinput>
    10 mkdir /var/qmail &amp;&amp;
     9<para><screen><userinput>mkdir /var/qmail &amp;&amp;
    1110groupadd nofiles &amp;&amp;
    1211useradd -g nofiles -d /var/qmail/alias alias &amp;&amp;
     
    1716useradd -g qmail -d /var/qmail qmailq &amp;&amp;
    1817useradd -g qmail -d /var/qmail qmailr &amp;&amp;
    19 useradd -g qmail -d /var/qmail qmails
    20 </userinput></screen></para>
     18useradd -g qmail -d /var/qmail qmails</userinput></screen></para>
    2119
    2220<para>Install qmail by running the following commands:</para>
    2321
    24 <para><screen><userinput>
    25 make setup check &amp;&amp;
     22<para><screen><userinput>make setup check &amp;&amp;
    2623./config-fast `hostname` &amp;&amp;
    2724cd /var/qmail &amp;&amp;
  • server/mail/sendmail/sendmail-inst.xml

    r9a88a3b9 r7319b78  
    44<para>Before building sendmail, we need to create users, groups and
    55directories that sendmail uses with the following commands:</para>
    6 <para><screen><userinput>
    7 groupadd smmsp &amp;&amp;
     6<para><screen><userinput>groupadd smmsp &amp;&amp;
    87groupadd mail &amp;&amp;
    98useradd -g smmsp -G mail smmsp &amp;&amp;
    109chmod 1777 /tmp &amp;&amp;
    1110chmod 1777 /var/mail &amp;&amp;
    12 mkdir /var/spool/mqueue
    13 </userinput></screen></para>
     11mkdir /var/spool/mqueue</userinput></screen></para>
    1412
    1513<para>Install sendmail with the following commands:</para>
    1614
    17 <para><screen><userinput>
    18 cat &gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"
     15<para><screen><userinput>cat &gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"
    1916define(`confMANGRP',`root')
    2017define(`confMANOWN',`root')
     
    3128sh Build install-cf &amp;&amp;
    3229cd ../../ &amp;&amp;
    33 sh Build install
    34 </userinput></screen></para>
     30sh Build install</userinput></screen></para>
    3531</sect2>
    3632
  • server/other/bind/bind-config-exp.xml

    r9a88a3b9 r7319b78  
    11<sect2>
    22<title>Configuration command explanations</title>
    3 <para><screen><userinput>
    4 groupadd -g 200 named
     3<para><screen><userinput>groupadd -g 200 named
    54useradd -m -g named -u 200 -s /bin/false named
    65cd /home/named
  • server/other/bind/bind-inst.xml

    r9a88a3b9 r7319b78  
    44<para>Install BIND by running the following commands:</para>
    55
    6 <para><screen><userinput>
    7 ./configure --prefix=/usr &amp;&amp;
     6<para><screen><userinput>./configure --prefix=/usr &amp;&amp;
    87make &amp;&amp;
    9 make install
    10 </userinput></screen></para>
     8make install</userinput></screen></para>
    119</sect2>
    1210
  • server/other/cvsserver/cvsserver-inst.xml

    r9a88a3b9 r7319b78  
    1515<para>Create a new CVS repository with the following commands,
    1616logged in as root:</para>
    17 <para><screen><userinput>
    18 mkdir /cvsroot &amp;&amp;
     17<para><screen><userinput>mkdir /cvsroot &amp;&amp;
    1918chmod 1777 /cvsroot &amp;&amp;
    2019export CVSROOT=/cvsroot
     
    2625repository:</para>
    2726
    28 <para><screen><userinput>
    29 export CVSROOT=/cvsroot &amp;&amp;
     27<para><screen><userinput>export CVSROOT=/cvsroot &amp;&amp;
    3028cd sourcedir &amp;&amp;
    31 cvs import -m "repository test" cvstest vendortag releasetag
    32 </userinput></screen></para></sect3>
     29cvs import -m "repository test" cvstest vendortag releasetag</userinput></screen></para></sect3>
    3330
    3431<sect3><title>3. Verify local repository access.</title>
     
    3633with the following command:</para>
    3734
    38 <para><screen><userinput>
    39 cvs co cvstest
    40 </userinput></screen></para></sect3>
     35<para><screen><userinput>cvs co cvstest</userinput></screen></para></sect3>
    4136
    4237<sect3><title>4. Verify remote repository access.</title>
     
    5045
    5146
    52 <para><screen><userinput>
    53 export CVS_RSH=/usr/bin/ssh &amp;&amp;
    54 cvs -d:ext:servername:/cvsroot co cvstest
    55 </userinput></screen></para></sect3>
     47<para><screen><userinput>export CVS_RSH=/usr/bin/ssh &amp;&amp;
     48cvs -d:ext:servername:/cvsroot co cvstest</userinput></screen></para></sect3>
    5649</sect2>
    5750<sect2>
     
    6255commands:</para>
    6356
    64 <para><screen><userinput>
    65 (grep anonymous /etc/passwd || useradd anonymous -s /bin/false) &amp;&amp;
     57<para><screen><userinput>(grep anonymous /etc/passwd || useradd anonymous -s /bin/false) &amp;&amp;
    6658echo anonymous: > /cvsroot/CVSROOT/passwd &amp;&amp;
    67 echo anonymous > /cvsroot/CVSROOT/readers
    68 </userinput></screen></para>
     59echo anonymous > /cvsroot/CVSROOT/readers</userinput></screen></para>
    6960
    7061<para>If you use inetd, the following command will add the pserver
    7162entry to /etc/inetd.conf:</para>
    7263
    73 <para><screen><userinput>
    74 echo "2401  stream  tcp  nowait  root  /usr/bin/cvs cvs -f \
    75         --allow-root=/cvsroot pserver" &gt;&gt; /etc/inetd.conf
    76 </userinput></screen></para>
     64<para><screen><userinput>echo "2401  stream  tcp  nowait  root  /usr/bin/cvs cvs -f \
     65        --allow-root=/cvsroot pserver" &gt;&gt; /etc/inetd.conf</userinput></screen></para>
    7766
    7867<para>Issue a killall -HUP inetd to reread the changed inetd.conf
     
    8271entry to /etc/xinetd.conf:</para>
    8372
    84 <para><screen><userinput>
    85 cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
     73<para><screen><userinput>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
    8674     service cvspserver
    8775     {
     
    9583         server_args = -f --allow-root=/cvsroot pserver
    9684     }
    97 EOF
    98 </userinput></screen></para>
     85EOF</userinput></screen></para>
    9986<para>Issue a killall -HUP xinetd to reread the changed xinetd.conf
    10087file.</para>
     
    10693and execute the following command:</para>
    10794
    108 <para><screen><userinput>
    109 cvs -d:pserver:anonymous@servername:/cvsroot co cvstest
    110 </userinput></screen><note><para>Replace "servername" with the IP
     95<para><screen><userinput>cvs -d:pserver:anonymous@servername:/cvsroot co cvstest</userinput></screen><note><para>Replace "servername" with the IP
    11196address or hostname of the CVS server</para></note></para>
    11297
  • server/other/leafnode/leafnode-config.xml

    r9a88a3b9 r7319b78  
    1212<para>Add a leafnode entry to the <filename>/etc/inetd.conf</filename>
    1313file with the following command:
    14 <screen><userinput>
    15 echo "nntp stream tcp nowait news /usr/sbin/tcpd /usr/sbin/leafnode" \
    16 &gt;&gt; /etc/inetd.conf
    17 </userinput></screen></para>
     14<screen><userinput>echo "nntp stream tcp nowait news /usr/sbin/tcpd /usr/sbin/leafnode" \
     15&gt;&gt; /etc/inetd.conf</userinput></screen></para>
    1816
    1917<para>xinetd configuration</para>
    2018<para>Add a leafnode entry to the <filename>/etc/xinetd.conf</filename>
    2119file with the following command:
    22 <screen><userinput>
    23 cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
     20<screen><userinput>cat &gt;&gt; /etc/xinetd.conf &lt;&lt; "EOF"
    2421        service nntp
    2522        {
     
    3431           per_source      = 3
    3532        }
    36 EOF                                                                 
    37 
    38 </userinput></screen></para>
     33EOF</userinput></screen></para>
    3934
    4035<para>The <filename>/etc/news/config</filename> file must be
     
    4338and save the original for reference : </para>
    4439
    45 <para><screen><userinput>
    46 cp /etc/news/config.example /etc/news/config
    47 </userinput></screen></para>
     40<para><screen><userinput>cp /etc/news/config.example /etc/news/config</userinput></screen></para>
    4841<para>Change the</para>
    4942<para><screen><userinput>server = </userinput></screen></para>
     
    5447following to <filename>/etc/profile</filename> or
    5548<filename>$HOME/.bash_profile</filename> :</para>
    56 <para><screen><userinput>
    57 export NNTPSERVER=127.0.0.1
    58 </userinput></screen></para>
     49<para><screen><userinput>export NNTPSERVER=127.0.0.1</userinput></screen></para>
    5950
    6051</sect3>
  • server/other/leafnode/leafnode-inst.xml

    r9a88a3b9 r7319b78  
    33
    44<para>Install leafnode by running the following commands:</para>
    5 <para><screen><userinput>
    6 groupadd news
     5<para><screen><userinput>groupadd news
    76useradd -g news news
    87./configure --localstatedir=/var --prefix=/usr \
     
    1110make install &amp;&amp;
    1211ldconfig &amp;&amp;
    13 make update
    14 </userinput></screen></para>
     12make update</userinput></screen></para>
    1513</sect2>
    1614
  • server/other/samba/samba-config.xml

    r9a88a3b9 r7319b78  
    6262
    6363<para>Now add the machine trust account for WIN2KBOX:</para>
    64 <para><screen><userinput>
    65 /usr/sbin/useradd -g 100 -d /dev/null -c \
     64<para><screen><userinput>/usr/sbin/useradd -g 100 -d /dev/null -c \
    6665    "machine nickname" -s /bin/false win2kbox$ &amp;&amp;
    6766passwd -l win2kbox$ &amp;&amp;
    68 smbpasswd -a -m win2kbox
    69 </userinput></screen></para>
     67smbpasswd -a -m win2kbox</userinput></screen></para>
    7068
    7169<para>Create the Samba boot script:</para>
     
    111109esac
    112110# End $rc_base/init.d/samba
    113 EOF
    114 
    115 </userinput></screen></para>
     111EOF</userinput></screen></para>
    116112<para>Add the run level symlinks:</para>
    117 <para><screen><userinput>
    118 chmod 754 /etc/rc.d/init.d/samba &amp;&amp;
     113<para><screen><userinput>chmod 754 /etc/rc.d/init.d/samba &amp;&amp;
    119114ln -s  /etc/rc.d/init.d/samba /etc/rc.d/rc0.d/K48samba &amp;&amp;
    120115ln -s  /etc/rc.d/init.d/samba /etc/rc.d/rc1.d/K48samba &amp;&amp;
     
    123118ln -s  /etc/rc.d/init.d/samba /etc/rc.d/rc4.d/S24samba &amp;&amp;
    124119ln -s  /etc/rc.d/init.d/samba /etc/rc.d/rc5.d/S24samba &amp;&amp;
    125 ln -s  /etc/rc.d/init.d/samba /etc/rc.d/rc6.d/K48samba
    126 </userinput></screen></para>
     120ln -s  /etc/rc.d/init.d/samba /etc/rc.d/rc6.d/K48samba</userinput></screen></para>
    127121
    128122<para>Now, we'll use our new boot script to start Samba: </para>
    129 <para><screen><userinput>
    130 /etc/rc.d/init.d/samba start
    131 </userinput></screen></para>
     123<para><screen><userinput>/etc/rc.d/init.d/samba start</userinput></screen></para>
    132124<para>We have to add the SAMBABOX root account to the Samba user list
    133125first in order to join WIN2KBOX to the DOMAIN01 domain: </para>
  • server/other/samba/samba-inst.xml

    r9a88a3b9 r7319b78  
    77</para></note>
    88
    9 <para><screen><userinput>
    10 mkdir -p /etc/samba/private &amp;&amp;
     9<para><screen><userinput>mkdir -p /etc/samba/private &amp;&amp;
    1110mkdir -p /var/cache/samba &amp;&amp;
    1211./configure \
     
    2322echo "swat 901/tcp" &gt;&gt; /etc/services &amp;&amp;
    2423echo "swat stream tcp nowait.400 root /usr/sbin/swat swat" &gt;&gt; \
    25    /etc/inetd.conf
    26 </userinput></screen></para>
     24   /etc/inetd.conf</userinput></screen></para>
    2725</sect2>
    2826
  • server/other/xinetd/xinetd-config.xml

    r9a88a3b9 r7319b78  
    33<para>Create the xinetd.conf file with the following commands: </para>
    44
    5 <para><screen><userinput>
    6 cp /etc/xinetd.conf /etc/xinetd.conf.bak
    7 sed -e 's/etc/sbin/g' xinetd/sample.conf &gt; /etc/xinetd.conf
    8 </userinput></screen></para>
     5<para><screen><userinput>cp /etc/xinetd.conf /etc/xinetd.conf.bak
     6sed -e 's/etc/sbin/g' xinetd/sample.conf &gt; /etc/xinetd.conf</userinput></screen></para>
    97
    108<sect3><title>Config files</title>
     
    1210
    1311<para>Create the xinetd boot script:</para>
    14 <para><screen><userinput>
    15 cat &gt; /etc/rc.d/init.d/xinetd &lt;&lt; "EOF"
     12<para><screen><userinput>cat &gt; /etc/rc.d/init.d/xinetd &lt;&lt; "EOF"
    1613#!/bin/bash
    1714# Begin $rc_base/init.d/xinetd
     
    4744esac
    4845# End $rc_base/init.d/xinetd
    49 EOF
     46EOF</userinput></screen></para>
    5047
    51 </userinput></screen></para>
    5248<para>Add the run level symlinks:</para>
    53 <para><screen><userinput>
    54 chmod 754 /etc/rc.d/init.d/xinetd &amp;&amp;
     49
     50<para><screen><userinput>chmod 754 /etc/rc.d/init.d/xinetd &amp;&amp;
    5551ln -s  /etc/rc.d/init.d/xinetd /etc/rc.d/rc0.d/K49xinetd &amp;&amp;
    5652ln -s  /etc/rc.d/init.d/xinetd /etc/rc.d/rc1.d/K49xinetd &amp;&amp;
     
    6359
    6460<para>Now, we'll use our new boot script to start xinetd: </para>
    65 <para><screen><userinput>
    66 /etc/rc.d/init.d/xinetd start
    67 </userinput></screen></para>
     61<para><screen><userinput>/etc/rc.d/init.d/xinetd start</userinput></screen></para>
    6862
    6963<para>Checking the <filename>/var/log/daemon.log</filename> file
     
    7165similar to the following: </para>
    7266
    73 <para><screen><userinput>
    74 Aug 22 21:40:21 dps10 xinetd[2696]: Server /usr/sbin/in.rlogind is not
     67<para><screen><userinput>Aug 22 21:40:21 dps10 xinetd[2696]: Server /usr/sbin/in.rlogind is not
    7568executable [line=29]
    7669Aug 22 21:40:21 dps10 xinetd[2696]: Error parsing attribute server -
    7770DISABLING SERVICE [line=29]
    7871Aug 22 21:40:21 dps10 xinetd[2696]: Server /usr/sbin/in.rshd is not
    79 executable [line=42]
    80 </userinput></screen></para>
     72executable [line=42]</userinput></screen></para>
    8173
    8274<para>These errors are due to the fact that we don't have most of the
  • server/other/xinetd/xinetd-inst.xml

    r9a88a3b9 r7319b78  
    33
    44<para>Install xinetd by running the following commands:</para>
    5 <para><screen><userinput>
    6 ./configure --prefix=/usr &amp;&amp;
     5<para><screen><userinput>./configure --prefix=/usr &amp;&amp;
    76make &amp;&amp;
    8 make install
    9 </userinput></screen></para>
     7make install</userinput></screen></para>
    108</sect2>
    119
  • xsoft/office/evolution/evolution-inst.xml

    r9a88a3b9 r7319b78  
    66<note><para><xref linkend="db-3.1"></xref> must be installed
    77temporarily in order to install Evolution.</para></note>
    8 <para><screen><userinput>
    9 ./configure --prefix=/opt/gnome --with-db3=/tmp/db-3.1 &amp;&amp;
     8<para><screen><userinput>./configure --prefix=/opt/gnome --with-db3=/tmp/db-3.1 &amp;&amp;
    109make &amp;&amp;
    11 make install
    12 </userinput></screen></para>
     10make install</userinput></screen></para>
    1311
    1412</sect2>
  • xsoft/office/gnucash/gnucash-inst.xml

    r9a88a3b9 r7319b78  
    44<para>Install GnuCash by running the following commands:</para>
    55
    6 <para><screen><userinput>
    7 sed 's/^GTKHTML_LIBS.*$/GTKHTML_LIBS=\`pkg-config --libs gtkhtml-1.1\`/' \configure | \
     6<para><screen><userinput>sed 's/^GTKHTML_LIBS.*$/GTKHTML_LIBS=\`pkg-config --libs gtkhtml-1.1\`/' \configure | \
    87sed 's/^GTKHTML_CFLAGS.*$/GTKHTML_CFLAGS=\`pkg-config --cflags gtkhtml-1.1\`/' > configure.new &amp;&amp;
    98cp configure.new configure &amp;&amp;
     
    1110./configure --prefix=/opt/gnome &amp;&amp;
    1211    make &amp;&amp;
    13     make install
    14 </userinput></screen></para>
     12    make install</userinput></screen></para>
    1513
    1614</sect2>
  • xsoft/other/balsa/balsa-inst.xml

    r9a88a3b9 r7319b78  
    44<para>Install Balsa by running the following commands:</para>
    55
    6 <para><screen><userinput>
    7 ./configure --prefix=/opt/gnome2 --with-ssl &amp;&amp;
     6<para><screen><userinput>./configure --prefix=/opt/gnome2 --with-ssl &amp;&amp;
    87make &amp;&amp;
    9 make install
    10 </userinput></screen></para>
     8make install</userinput></screen></para>
    119
    1210</sect2>
Note: See TracChangeset for help on using the changeset viewer.