diff options
Diffstat (limited to 'chapter06/shadow.xml')
-rw-r--r-- | chapter06/shadow.xml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/chapter06/shadow.xml b/chapter06/shadow.xml index c5a5ebc9c..2fc671da9 100644 --- a/chapter06/shadow.xml +++ b/chapter06/shadow.xml @@ -25,8 +25,8 @@ <segtitle>&diskspace;</segtitle> <seglistitem> - <seg>0.4 SBU</seg> - <seg>14.7 MB</seg> + <seg>0.3 SBU</seg> + <seg>18.6 MB</seg> </seglistitem> </segmentedlist> @@ -81,6 +81,22 @@ find man -name Makefile -exec sed -i '/groups/d' {} \;</userinput></screen> <screen><userinput>sed -i -e 's/ ko//' -e 's/ zh_CN zh_TW//' man/Makefile</userinput></screen> + <para>Shadow supplies other manual pages in a UTF-8 encoding. Man-DB + can display these in the recommended encodings by using the convert-mans + script which we installed.</para> + +<screen><userinput> for i in de es fi fr id it pt_BR; do + convert-mans UTF-8 ISO-8859-1 man/${i}/*.? +done + +for i in cs hu pl; do + convert-mans UTF-8 ISO-8859-2 man/${i}/*.? +done + +convert-mans UTF-8 EUC-JP man/ja/*.? +convert-mans UTF-8 KOI8-R man/ru/*.? +convert-mans UTF-8 ISO-8859-9 man/tr/*.?</userinput></screen> + <para>Compile the package:</para> <screen><userinput>make</userinput></screen> |