Changeset d8614521
- Timestamp:
- 01/30/2005 11:01:56 PM (18 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 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, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 00e4e18
- Parents:
- c2688a0
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
basicnet/netutils/whois.xml
rc2688a0 rd8614521 52 52 commands:</para> 53 53 54 <screen><userinput><command>make && 55 make prefix=/usr install</command></userinput></screen> 54 <screen><userinput><command>make</command></userinput></screen> 55 56 <para>Now, as the root user:</para> 57 58 <screen><userinput role='root'><command>make prefix=/usr install</command></userinput></screen> 56 59 57 60 </sect2> … … 62 65 <segmentedlist> 63 66 <segtitle>Installed Programs</segtitle> 67 <segtitle>Installed Libraries</segtitle> 68 <segtitle>Installed Directories</segtitle> 64 69 <seglistitem> 65 70 <seg>whois</seg> 71 <seg>None</seg> 72 <seg>None</seg> 66 73 </seglistitem> 67 74 </segmentedlist> -
general/genlib/popt.xml
rc2688a0 rd8614521 68 68 cp configure.in configure.ac && 69 69 touch configure.in configure.ac && 70 make && 71 make install</command></userinput></screen> 70 make</command></userinput></screen> 71 72 <para>Now, as the root user:</para> 73 74 <screen><userinput role='root'><command>make install</command></userinput></screen> 72 75 73 76 </sect2> … … 91 94 <segtitle>Installed Library</segtitle> 92 95 <seglistitem> 93 <seg>libpopt </seg>96 <seg>libpopt.[so,a]</seg> 94 97 </seglistitem> 95 98 </segmentedlist> … … 100 103 101 104 <varlistentry id="libpopt"> 102 <term><filename role='library'>libpopt. so</filename></term>105 <term><filename role='library'>libpopt.[so,a]</filename></term> 103 106 <listitem> 104 107 <para> is used to parse command-line options.</para> 105 108 <indexterm zone="popt libpopt"> 106 <primary sortas="c-libpopt">libpopt </primary>109 <primary sortas="c-libpopt">libpopt.[so,a]</primary> 107 110 </indexterm> 108 111 </listitem> -
general/prog/ruby.xml
rc2688a0 rd8614521 63 63 <screen><userinput><command>./configure --prefix=/usr \ 64 64 --enable-shared --enable-pthread && 65 make && 66 make install && 65 make</command></userinput></screen> 66 67 <para>Now, as the root user:</para> 68 69 <screen><userinput role='root'><command>make install && 67 70 make install-doc</command></userinput></screen> 68 71 -
general/prog/tcl.xml
rc2688a0 rd8614521 55 55 commands:</para> 56 56 57 <screen><userinput><command> VERSION=&tcl-version; &&58 V=`echo $VERSION | cut -d "." -f 1,2` &&59 DIR=$PWD &&57 <screen><userinput><command>export VERSION=&tcl-version; && 58 export V=`echo $VERSION | cut -d "." -f 1,2` && 59 export DIR=$PWD && 60 60 cd unix && 61 61 ./configure --prefix=/usr --enable-threads && … … 65 65 sed -i \ 66 66 "s,^TCL_LIB_FILE='libtcl${V}..TCL_DBGX..so',TCL_LIB_FILE=\"libtcl${V}\$\{TCL_DBGX\}.so\"," \ 67 tclConfig.sh && 68 make install && 67 tclConfig.sh</command></userinput></screen> 68 69 <para>Now, as the root user:</para> 70 71 <screen><userinput role='root'><command>make install && 69 72 install -d /usr/include/tcl${V}/unix && 70 73 install -m644 *.h /usr/include/tcl${V}/unix/ && … … 76 79 ln -sf tclsh${V} /usr/bin/tclsh</command></userinput></screen> 77 80 81 <para>Clean up the unprivileged user's environment using the following 82 commands:</para> 83 84 <screen><userinput><command>unset VERSION && 85 unset V && 86 unset DIR</command></userinput></screen> 87 88 <!-- 78 89 <caution><para>If you build the package as an ordinary user and then switch to 79 90 root to install the package, ensure you set the environment variables 80 91 <envar>V</envar> and <envar>VERSION</envar> before running the installation 81 92 commands.</para></caution> 93 --> 82 94 83 95 </sect2> … … 92 104 package assumes that the source that is used to build 93 105 <application>Tcl</application> is always kept around for compiling packages 94 that depend on <application>Tcl</application>. These <command>sed</command> 's106 that depend on <application>Tcl</application>. These <command>sed</command>s 95 107 remove the reference to the build directory and replace them by saner system 96 108 wide locations.</para> … … 108 120 <segmentedlist> 109 121 <segtitle>Installed Program</segtitle> 110 <segtitle>Installed Librar y</segtitle>122 <segtitle>Installed Libraries</segtitle> 111 123 <segtitle>Installed Directories</segtitle> 112 124 <seglistitem> 113 125 <seg>tclsh</seg> 114 <seg>libtcl </seg>126 <seg>libtcl.so and libtclstub8.4.a</seg> 115 127 <seg>/usr/lib/tcl8.4 and /usr/include/tcl8.4</seg></seglistitem> 116 128 </segmentedlist> -
general/prog/tk.xml
rc2688a0 rd8614521 55 55 commands:</para> 56 56 57 <screen><userinput><command> VERSION=&tk-version; &&58 V=`echo $VERSION | cut -d "." -f 1,2` &&59 DIR=$PWD &&57 <screen><userinput><command>export VERSION=&tk-version; && 58 export V=`echo $VERSION | cut -d "." -f 1,2` && 59 export DIR=$PWD && 60 60 cd unix && 61 61 ./configure --prefix=/usr --enable-threads && 62 62 make && 63 63 sed -i "s:${DIR}/unix:/usr/lib:" tkConfig.sh && 64 sed -i "s:${DIR}:/usr/include/tk${V}:" tkConfig.sh && 65 make install && 64 sed -i "s:${DIR}:/usr/include/tk${V}:" tkConfig.sh</command></userinput></screen> 65 66 <para>Now, as the root user:</para> 67 68 <screen><userinput role='root'><command>make install && 66 69 install -d /usr/include/tk${V}/unix && 67 70 install -m644 *.h /usr/include/tk${V}/unix/ && … … 73 76 ln -sf wish${V} /usr/bin/wish</command></userinput></screen> 74 77 78 <para>Clean up the unprivileged user's environment using the following 79 commands:</para> 80 81 <screen><userinput><command>unset VERSION && 82 unset V && 83 unset DIR</command></userinput></screen> 84 85 <!-- 75 86 <caution><para>If you build the package as an ordinary user and then switch to 76 87 root to install the package, ensure you set the environment variables 77 88 <envar>V</envar> and <envar>VERSION</envar> before running the installation 78 89 commands.</para></caution> 90 --> 79 91 80 92 </sect2> … … 106 118 <segmentedlist> 107 119 <segtitle>Installed Program</segtitle> 108 <segtitle>Installed Librar y</segtitle>120 <segtitle>Installed Libraries</segtitle> 109 121 <segtitle>Installed Directories</segtitle> 110 122 <seglistitem> 111 123 <seg>wish</seg> 112 <seg>libtk </seg>124 <seg>libtk.so and libtkstub8.4.a</seg> 113 125 <seg>/usr/lib/tk8.4 and /usr/include/tk8.4</seg></seglistitem> 114 126 </segmentedlist> -
introduction/welcome/changelog.xml
rc2688a0 rd8614521 23 23 <itemizedlist> 24 24 25 <listitem><para>January 30th, 2005 [dj]: Fixed crac lib_dict_path check25 <listitem><para>January 30th, 2005 [dj]: Fixed cracklib_dict_path check 26 26 in Linux_PAM configure. Added change to 27 27 Linux-PAM-linkage-2.patch.</para></listitem> -
multimedia/cdwriteutils/udftools.xml
rc2688a0 rd8614521 62 62 </sect2> 63 63 64 <sect2 >64 <sect2 id="udftools-kernel"> 65 65 <title>Installation of the kernel patch</title> 66 <indexterm zone="udftools udftools-kernel"> 67 <primary sortas="d-UDF-File-System">UDF File System</primary> 68 </indexterm> 66 69 67 70 <warning> -
postlfs/shells/tcsh.xml
rc2688a0 rd8614521 55 55 56 56 <screen><userinput><command>./configure --prefix=/usr && 57 make && 58 make install && 57 make</command></userinput></screen> 58 59 <para>Now, as the root user:</para> 60 61 <screen><userinput role='root'><command>make install && 59 62 make install.man && 60 63 ln -sf /usr/bin/tcsh /bin/csh</command></userinput></screen> … … 115 118 <segmentedlist> 116 119 <segtitle>Installed Program</segtitle> 120 <segtitle>Installed Libraries</segtitle> 121 <segtitle>Installed Directories</segtitle> 117 122 <seglistitem> 118 123 <seg>tcsh</seg> 124 <seg>None</seg> 125 <seg>None</seg> 119 126 </seglistitem> 120 127 </segmentedlist> -
postlfs/shells/zsh.xml
rc2688a0 rd8614521 61 61 62 62 <screen><userinput><command>./configure --prefix=/usr && 63 make && 64 make install</command></userinput></screen> 63 make</command></userinput></screen> 64 65 <para>Now, as the root user:</para> 66 67 <screen><userinput role='root'><command>make install</command></userinput></screen> 65 68 66 69 </sect2> … … 98 101 <segmentedlist> 99 102 <segtitle>Installed Program</segtitle> 103 <segtitle>Installed Libraries</segtitle> 104 <segtitle>Installed Directories</segtitle> 100 105 <seglistitem> 101 106 <seg>zsh</seg> 107 <seg>None</seg> 108 <seg>None</seg> 102 109 </seglistitem> 103 110 </segmentedlist> -
server/mail/sendmail.xml
rc2688a0 rd8614521 66 66 <para>Before building <application>Sendmail</application>, create the users, 67 67 groups and directories that <application>Sendmail</application> requires 68 with the following commands :</para>69 70 <screen><userinput ><command>groupadd smmsp &&68 with the following commands issued as the root user:</para> 69 70 <screen><userinput role='root'><command>groupadd smmsp && 71 71 groupadd mail && 72 72 useradd -c "Sendmail Daemon" -g smmsp -G mail smmsp && … … 88 88 cd ../cf/cf && 89 89 cp generic-linux.mc sendmail.mc && 90 sh Build sendmail.cf && 91 mkdir /etc/mail && 90 sh Build sendmail.cf</command></userinput></screen> 91 92 <para>Now, as the root user:</para> 93 94 <screen><userinput role='root'><command>install -v -d -m755 /etc/mail && 92 95 sh Build install-cf && 93 96 cd ../../ && 94 97 sh Build install && 95 cp - R cf/* /etc/mail &&96 cp cf/cf/{submit,sendmail}.mc /etc/mail &&98 cp -v -R cf/* /etc/mail && 99 cp -v cf/cf/{submit,sendmail}.mc /etc/mail && 97 100 for manpage in sendmail editmap mailstats makemap praliases smrsh 98 101 do 99 install - m444 $manpage/$manpage.8/usr/share/man/man8102 install -v -m444 $manpage/$manpage.8 /usr/share/man/man8 100 103 done && 101 install - m444 sendmail/aliases.5 /usr/share/man/man5 &&102 install - m444 sendmail/mailq.1 /usr/share/man/man1 &&103 install - m444 sendmail/newaliases.1 /usr/share/man/man1 &&104 install - m444 vacation/vacation.1 /usr/share/man/man1</command></userinput></screen>104 install -v -m444 sendmail/aliases.5 /usr/share/man/man5 && 105 install -v -m444 sendmail/mailq.1 /usr/share/man/man1 && 106 install -v -m444 sendmail/newaliases.1 /usr/share/man/man1 && 107 install -v -m444 vacation/vacation.1 /usr/share/man/man1</command></userinput></screen> 105 108 106 109 <para><emphasis>Note:</emphasis> See the source tree … … 122 125 <screen><userinput><command>cd doc/op && 123 126 sed -i -e 's/groff/GROFF_NO_SGR=1 groff/' Makefile && 124 make op.txt op.pdf && 125 install -d -m 755 /usr/share/doc/sendmail-&sendmail-version; && 126 install -m 644 op.ps op.txt op.pdf /usr/share/doc/sendmail-&sendmail-version; && 127 make op.txt op.pdf</command></userinput></screen> 128 129 <para>Now, as the root user:</para> 130 131 <screen><userinput role='root'><command>install -v -d -m755 /usr/share/doc/sendmail-&sendmail-version; && 132 install -v -m644 op.ps op.txt op.pdf \ 133 /usr/share/doc/sendmail-&sendmail-version; && 127 134 cd ../../</command></userinput></screen> 128 135 … … 165 172 <para>Create the <filename>/etc/mail/local-host-names</filename> and 166 173 <filename>/etc/mail/aliases</filename> files using the following 167 commands :</para>168 169 <screen><userinput ><command>echo $(hostname) > /etc/mail/local-host-names174 commands as the root user:</para> 175 176 <screen><userinput role='root'><command>echo $(hostname) > /etc/mail/local-host-names 170 177 cat > /etc/mail/aliases << "EOF"</command> 171 178 postmaster: root … … 195 202 <primary sortas="f-sendmail-init">sendmail</primary></indexterm> 196 203 197 <screen><userinput ><command>make install-sendmail</command></userinput></screen>204 <screen><userinput role='root'><command>make install-sendmail</command></userinput></screen> 198 205 199 206 <note><para>The -qNm option to <command>sendmail</command>, where N is number … … 211 218 <segmentedlist> 212 219 <segtitle>Installed Programs</segtitle> 213 <segtitle>Installed Directory</segtitle> 220 <segtitle>Installed Libraries</segtitle> 221 <segtitle>Installed Directories</segtitle> 214 222 <seglistitem> 215 223 <seg>editmap, hoststat, mailstats, mailq, makemap, newaliases, praliases, 216 224 purgestat, sendmail, smrsh and vacation</seg> 225 <seg>None</seg> 217 226 <seg>/etc/mail and /usr/share/doc/sendmail-&sendmail-version;</seg> 218 227 </seglistitem>
Note:
See TracChangeset
for help on using the changeset viewer.