[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, systemd, updated. clfs-2.1.0-963-geb96161

git git at cross-lfs.org
Thu May 8 20:36:22 PDT 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cross-LFS Book".

The branch, systemd has been updated
       via  eb9616190836c04a2de8a2414a26be5b6e1a1745 (commit)
       via  a6857bbb86a21fc2fabce476aa0879316222252d (commit)
      from  6abe3a066ae6fbe0b6ee7bfbaae589af41230047 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit eb9616190836c04a2de8a2414a26be5b6e1a1745
Author: William Harrington <kb0iic at cross-lfs.org>
Date:   Thu May 8 12:35:59 2014 -0500

    Remove man 1.6g i18n patch from patches.

diff --git a/patches/man-1.6g-i18n-1.patch b/patches/man-1.6g-i18n-1.patch
deleted file mode 100644
index be9908d..0000000
--- a/patches/man-1.6g-i18n-1.patch
+++ /dev/null
@@ -1,334 +0,0 @@
-Submitted By: Joe Ciccone <jciccone at gmail.com>
-Date: 2011-01-08
-Initial Package Version: 1.6f
-Upstream Status: Unkown
-Origin: Mandriva
-Description: i18n Updates
-
-diff -Naur man-1.6g.orig/catopen/catopen.c man-1.6g/catopen/catopen.c
---- man-1.6g.orig/catopen/catopen.c	2005-08-20 19:26:06.000000000 -0400
-+++ man-1.6g/catopen/catopen.c	2011-01-08 20:29:31.874658039 -0500
-@@ -9,22 +9,63 @@
- extern char *index (const char *, int);         /* not always in <string.h> */
- extern char *my_malloc(int);	/* in util.c */
- 
-+/* if the program has sgid/suid privileges then getenv doesn't return
-+ * NLSPATH; so we set here a good default value.
-+ */
- #ifndef DEFAULT_NLSPATH
- # if __GLIBC__ >= 2
--#  define DEFAULT_NLSPATH "/usr/share/locale/%L/%N"
-+#  define DEFAULT_NLSPATH "/usr/share/locale/%L/%N:/usr/share/locale/%l_%t/%N:/usr/share/locale/%l/%N"
- # else
- #  define DEFAULT_NLSPATH "/usr/lib/locale/%N/%L"
- # endif
- #endif
- 
--static nl_catd my_catopenpath(char *name, char *path);
-+static nl_catd my_catopenpath(char *name, char *path, char *lang);
- 
- static				/* this source included in gripes.c */
- nl_catd
- my_catopen(char *name, int oflag) {
--  nl_catd fd;
-+  nl_catd fd = (nl_catd) -1;
-+
-+  /* using first the my_catopenpath, which looks with LANGUAGE
-+   * and only if it fails ressort to catopen, it gives better i18n
-+   */
-+  {
-+    char *nlspath, *lang, *s;
- 
--  fd = catopen(name, oflag);
-+    /*
-+     * "If NLSPATH does not exist in the environment, or if a
-+     * message catalog cannot be opened in any of the paths specified
-+     * by NLSPATH, then an implementation defined default path is used"
-+     */
-+    nlspath = getenv("NLSPATH");
-+    if (!nlspath)
-+      nlspath = DEFAULT_NLSPATH;
-+ 
-+    lang = getenv("LANGUAGE");
-+    if (!lang)
-+      lang = getenv("LC_ALL");
-+    if (!lang)
-+      lang = getenv("LC_MESSAGES");
-+    if (!lang)
-+      lang = getenv("LANG");
-+    if (!lang)
-+      lang = "";
-+ 
-+    while(*lang && (fd == (nl_catd) -1)) {
-+      s = index(lang, ':');
-+      if (s) *s = 0;
-+        fd = my_catopenpath(name, nlspath, lang);
-+      if (s) lang=s+1;
-+      else lang = "";
-+    }
-+    if (fd == (nl_catd) -1)
-+      fd = my_catopenpath(name, nlspath, "en");
-+  }
-+
-+  /* still not found, use the system catopen */
-+  if (fd == (nl_catd) -1)
-+    fd = catopen(name, oflag);
- 
-   if (fd == (nl_catd) -1 && oflag) {
-     oflag = 0;
-@@ -32,8 +73,6 @@
-   }
- 
-   if (fd == (nl_catd) -1) {
--    char *nlspath;
--
-     /* The libc catopen fails - let us see if we can do better */
-     /* The quotes below are from X/Open, XPG 1987, Vol. 3. */
- 
-@@ -58,17 +97,6 @@
- #endif
-     }
- 
--    /*
--     * "If NLSPATH does not exist in the environment, or if a
--     * message catalog cannot be opened in any of the paths specified
--     * by NLSPATH, then an implementation defined default path is used"
--     */
--
--    nlspath = getenv("NLSPATH");
--    if (nlspath)
--      fd = my_catopenpath(name, nlspath);
--    if (fd == (nl_catd) -1)
--      fd = my_catopenpath(name, DEFAULT_NLSPATH);
-   }
-   return fd;
- }
-@@ -90,15 +118,13 @@
-  *
-  */
- static nl_catd
--my_catopenpath(char *name, char *nlspath) {
--  int fd;
-+my_catopenpath(char *name, char *nlspath, char *lang) {
-   nl_catd cfd = (nl_catd) -1;
--  char *path0, *path, *s, *file, *lang, *lang_l, *lang_t, *lang_c;
-+  char *path0, *path, *s, *file, *lang_l, *lang_t, *lang_c;
-   int langsz, namesz, sz, lang_l_sz, lang_t_sz, lang_c_sz;
- 
-   namesz = strlen(name);
- 
--  lang = getenv("LANG");
-   if (!lang)
-     lang = "";
-   langsz = strlen(lang);
-@@ -194,14 +220,9 @@
-       path = s+1;
-     } else
-       path = 0;
--    fd = open(file, O_RDONLY);
--    if (fd != -1) {
--      /* we found the right catalog - but we don't know the
--	 type of nl_catd, so close it again and ask libc */
--      close(fd);
--      cfd = catopen(file, 0);
--      break;
--    }
-+	cfd = catopen(file, 0);
-+	if (cfd != (nl_catd) -1)
-+			break;
-   }
- 
-   free(path0);
-diff -Naur man-1.6g.orig/configure man-1.6g/configure
---- man-1.6g.orig/configure	2010-12-31 15:28:46.000000000 -0500
-+++ man-1.6g/configure	2011-01-08 20:29:31.874658039 -0500
-@@ -416,9 +416,9 @@
-       fi
-     done
-   done
--  troff=""
--  nroff=""
--  jnroff=""
-+  troff=/usr/bin/troff
-+  nroff=/usr/bin/nroff
-+  jnroff=/usr/bin/nroff
-   eqn=""
-   neqn=""
-   jneqn=""
-@@ -476,29 +476,32 @@
-   done
- # -Tlatin1 is bad when utf8 is used, but needed for groff, not for nroff
- # Hmm - also needed for nroff, to prevent double conversion on uxterm
-+  Fgroff=/usr/bin/groff
-+  Fnroff=/usr/bin/nroff
-+  Fjnroff=/usr/bin/nroff
-   if test $Fgroff = "missing"
-   then
-     if test $Fnroff = "missing"
-     then
--      nroff="nroff -Tlatin1 -mandoc"
-+      nroff="nroff -Tutf8 -mandoc"
-     else
--      nroff="$Fnroff -Tlatin1 -mandoc"
-+      nroff="$Fnroff -Tutf8 -mandoc"
-     fi
-     troff="troff -mandoc"
-     echo "Warning: could not find groff"
-   else
-     if test $Fnroff = "missing"
-     then
--      nroff="$Fgroff -Tlatin1 -mandoc"
-+      nroff="$Fgroff -Tutf8 -mandoc"
-     else
--      nroff="$Fnroff -Tlatin1 -mandoc"
-+      nroff="$Fnroff -Tutf8 -mandoc"
-     fi
-     troff="$Fgroff -Tps -mandoc"
--    jnroff="$Fgroff -Tnippon -mandocj"
-+    jnroff="$Fjnroff -Tutf8 -mandocj"
-   fi
-   eqn="$Fgeqn -Tps"
--  neqn="$Fgeqn -Tlatin1"
--  jneqn="$Fgeqn -Tnippon"
-+  neqn="$Fgeqn -Tutf8"
-+  jneqn="$Fgeqn -Tutf8"
-   tbl="$Fgtbl"
-   col="$Fcol"
-   vgrind="$Fvgrind"
-@@ -964,7 +967,7 @@
- 
- # What sections do we anticipate?
- 
--tmpsections="1 1p 8 2 3 3p 4 5 6 7 9 0p tcl n l p o"
-+tmpsections="1 1p 8 2 3 3p 3pm 4 5 6 7 9 0p tcl n l p o"
- 
- if [ x$default = x ]; then
-   echo ""
-diff -Naur man-1.6g.orig/msgs/inst.sh man-1.6g/msgs/inst.sh
---- man-1.6g.orig/msgs/inst.sh	2005-08-20 19:26:06.000000000 -0400
-+++ man-1.6g/msgs/inst.sh	2011-01-08 20:29:31.874658039 -0500
-@@ -27,8 +27,7 @@
- for j in $M; do
-   if [ -f $j ]; then
-     i=`echo $j | sed -e 's/mess.//; s/.cat//'`
--    dest=`echo $locdir | sed -e "s/%N/man/; s/%L/$i/"`
--    dest=${PREFIX}$dest
-+    dest=${PREFIX}/`echo $locdir | sed -e "s/%N/man/; s/%L/$i/"`
-     echo "mkdir -p `dirname $dest`"
-     mkdir -p `dirname $dest`;
-     echo "install -c -m 644 $j $dest"
-diff -Naur man-1.6g.orig/src/apropos.sh man-1.6g/src/apropos.sh
---- man-1.6g.orig/src/apropos.sh	2005-08-20 19:26:06.000000000 -0400
-+++ man-1.6g/src/apropos.sh	2011-01-08 20:29:31.874658039 -0500
-@@ -60,16 +60,56 @@
-     esac
- done
- 
-+# list of languages to look for
-+LANG_LIST=`echo $LANGUAGE:$LC_ALL:$LC_MESSAGES:$LANG | tr ':' ' '`
-+DIR_LIST=""
-+for d in /var/cache/man $manpath /usr/lib
-+do
-+    for l in $LANG_LIST
-+    do
-+        if [ -d $d/$l ]
-+        then
-+            # check that the path is not already in the list
-+            if ! echo "$DIR_LIST" | grep " $d/$l\b" > /dev/null
-+            then
-+                DIR_LIST="$DIR_LIST $d/$l"
-+            fi
-+        fi
-+    done
-+    DIR_LIST="$DIR_LIST $d"
-+    # check that the path is not already in the list
-+    if ! echo "$DIR_LIST" | grep " $d\b" > /dev/null
-+    then
-+        DIR_LIST="$DIR_LIST $d/$l"
-+    fi
-+done
-+
- while [ "$1" != "" ]
- do
-     found=0
--    for d in /var/cache/man $manpath /usr/lib
-+    # in order not to display lines in more than one language for
-+    # a same man page; we check that a given man page name
-+    # hasn't already been displayed
-+    BAZ=""
-+    for d in $DIR_LIST
-     do
-         if [ -f $d/whatis ]
-         then
--            if grep -"$grepopt1" "$grepopt2""$1" $d/whatis
-+            if FOO=`grep -"$grepopt1" "$grepopt2""$1" $d/whatis`
-             then
--                found=1
-+                # the LC_ALL=C is needed in case the text is
-+                # in a different encoding than the locale
-+                BAR=`echo -e "$FOO" | LC_ALL=C sed 's/ - .*$//' | tr ' []' '_' | sort -u`
-+                for i in $BAR
-+                do
-+                    if ! echo "$BAZ" | grep "$i" > /dev/null
-+                    then
-+                        BAZ="$BAZ $i"
-+                        i="^`echo $i | sed 's:_\+:\\\(\[_ \]\\\|\\\[\\\|\\\]\\\)\\\+:g'`"
-+                        echo -e "$FOO" | grep "$i"
-+                        found=1
-+                    fi
-+                done
- # Some people are satisfied with a single occurrence
- # But it is better to give all
- #               break
-diff -Naur man-1.6g.orig/src/makewhatis.sh man-1.6g/src/makewhatis.sh
---- man-1.6g.orig/src/makewhatis.sh	2007-09-17 14:35:14.000000000 -0400
-+++ man-1.6g/src/makewhatis.sh	2011-01-08 20:29:31.878656601 -0500
-@@ -55,6 +55,9 @@
- dc=
- for d in /usr/man/preformat /usr/man /usr/share/man/preformat /usr/share/man
- do
-+    if [ -n "$LANG" -a -d "$d/$LANG" ]; then
-+	if [ x$dc = x ]; then dm="$d/$LANG"; else dm=$dc:"$d/$LANG"; fi
-+    fi
-     if [ -d $d ]; then
- 	if [ x$dc = x ]; then dc=$d; else dc=$dc:$d; fi
-     fi
-@@ -227,7 +230,7 @@
- 	    section=$i
- 	    curdir=$mandir/${pages}$i
- 	    export section verbose curdir
--	    find $mandir/${pages}$i/. -name '*' $findarg0 $findarg -print | $AWK '
-+	    find $mandir/${pages}$i/. -name '*' $findarg0 $findarg -print | LC_ALL=C $AWK -v MAN_NAME="$MAN_NAME" -v MAN_DESCRIPTION="$MAN_DESCRIPTION" '
- 
- 	    function readline() {
-               if (use_zcat || use_bzcat || use_lzcat) {
-@@ -315,6 +318,7 @@
- 		  if ($1 ~ /^\.[Ss][HhYS]/ ||
- 		    (pages == "cat" &&
- 		    ($1 ~ /^S[yYeE]/ || $1 ~ /^DESCRIPTION/ ||
-+		     $1 ~ MAN_DESCRIPTION ||
- 		     $1 ~ /^COMMAND/ || $1 ~ /^OVERVIEW/ ||
- 		     $1 ~ /^STRUCTURES/ || $1 ~ /^INTRODUCTION/ ||
- 		     $0 ~ /^[^ ]/))) {
-diff -Naur man-1.6g.orig/src/manpath.c man-1.6g/src/manpath.c
---- man-1.6g.orig/src/manpath.c	2006-08-03 17:18:33.000000000 -0400
-+++ man-1.6g/src/manpath.c	2011-01-08 20:29:31.878656601 -0500
-@@ -282,13 +282,14 @@
- 		/* We cannot use "lang = setlocale(LC_MESSAGES, NULL)" or so:
- 		   the return value of setlocale is an opaque string. */
- 		/* POSIX prescribes the order: LC_ALL, LC_MESSAGES, LANG */
--		if((lang = getenv("LC_ALL")) != NULL)
-+	        /* LANGUAGE is GNU/Linux and overrules all */
-+		if((lang = getenv("LANGUAGE")) != NULL)
- 			split2(dir, lang, add_to_mandirlist_x, perrs);
--		if((lang = getenv("LC_MESSAGES")) != NULL)
-+		else if((lang = getenv("LC_ALL")) != NULL)
- 			split2(dir, lang, add_to_mandirlist_x, perrs);
--		if((lang = getenv("LANG")) != NULL)
-+		else if((lang = getenv("LC_MESSAGES")) != NULL)
- 			split2(dir, lang, add_to_mandirlist_x, perrs);
--		if((lang = getenv("LANGUAGE")) != NULL)
-+		else if((lang = getenv("LANG")) != NULL)
- 			split2(dir, lang, add_to_mandirlist_x, perrs);
- 		add_to_mandirlist_x(dir, 0, perrs);
- 	}

commit a6857bbb86a21fc2fabce476aa0879316222252d
Author: William Harrington <kb0iic at cross-lfs.org>
Date:   Thu May 8 12:35:43 2014 -0500

    Remove man xml files from final-system common and multilib.

diff --git a/BOOK/final-system/common/man.xml b/BOOK/final-system/common/man.xml
deleted file mode 100644
index 29cb5c4..0000000
--- a/BOOK/final-system/common/man.xml
+++ /dev/null
@@ -1,203 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-  <!ENTITY % general-entities SYSTEM "../../general.ent">
-  %general-entities;
-]>
-
-<sect1 id="ch-system-man" role="wrap">
-  <?dbhtml filename="man.html"?>
-
-  <title>Man-&man-version;</title>
-
-  <indexterm zone="ch-system-man">
-    <primary sortas="a-Man">Man</primary>
-  </indexterm>
-
-  <sect2 role="package">
-    <title/>
-
-    <para>The Man package contains programs for finding and viewing man
-    pages.</para>
-
-  </sect2>
-
-  <sect2 role="installation">
-    <title>Installation of Man</title>
-
-    <para os="p1">This patch adds support for Internationalization:</para>
-
-<screen os="p2"><userinput>patch -Np1 -i ../&man-i18n-patch;</userinput></screen>
-
-    <para os="a">A few adjustments need to be made to the sources of Man.</para>
-
-    <para os="b">First, a <command>sed</command> substitution is
-    needed to add the <option>-R</option> switch to the
-    <envar>PAGER</envar> variable so that escape sequences are
-    properly handled by Less:</para>
-
-<screen os="c"><userinput>sed -i 's at -is@&R at g' configure</userinput></screen>
-
-    <para os="d">Another couple of <command>sed</command> substitutions
-    comment out the <quote>MANPATH /usr/man</quote> and
-    <quote>MANPATH /usr/local/man</quote> lines in the
-    <filename>man.conf</filename> file to prevent redundant
-    results when using programs such as <command>whatis</command>:</para>
-
-<screen os="e"><userinput>sed -i 's at MANPATH./usr/man@#&@g' src/man.conf.in
-sed -i 's at MANPATH./usr/local/man@#&@g' src/man.conf.in</userinput></screen>
-
-    <para os="h">Prepare Man for compilation:</para>
-
-<screen os="i"><userinput>./configure -confdir=/etc -mandir=/usr/share/man</userinput></screen>
-
-    <variablelist os="j">
-      <title>The meaning of the configure options:</title>
-
-      <varlistentry>
-      <term><parameter>-confdir=/etc</parameter></term>
-      <listitem>
-        <para>This tells the <command>man</command> program to look for the
-        <filename>man.conf</filename> configuration file in the <filename
-        class="directory">/etc</filename> directory.</para>
-      </listitem>
-      </varlistentry>
-    </variablelist>
-
-    <para os="k">Compile the package:</para>
-
-<screen os="l"><userinput>make</userinput></screen>
-
-    <para os="m">This package does not come with a test suite.</para>
-
-    <para os="n">Install the package:</para>
-
-<screen os="o"><userinput>make install</userinput></screen>
-
-    <note os="p">
-      <para>If you will be working on a terminal that does not support
-      text attributes such as color and bold, you can disable Select
-      Graphic Rendition (SGR) escape sequences by editing the
-      <filename>man.conf</filename> file and adding the <option>-c</option>
-      option to the <envar>NROFF</envar> variable. If you use multiple
-      terminal types for one computer it may be better to selectively add
-      the <envar>GROFF_NO_SGR</envar> environment variable for the terminals
-      that do not support SGR.</para>
-    </note>
-
-    <para os="q">If the character set of the locale uses 8-bit characters, search
-    for the line beginning with <quote>NROFF</quote> in
-    <filename>/etc/man.conf</filename>, and verify that it matches the
-    following:</para>
-
-<screen os="r">NROFF /usr/bin/nroff -Tlatin1 -mandoc</screen>
-
-    <para os="s">Note that <quote>latin1</quote> should be used even if it is not
-    the character set of the locale. The reason is that, according to the
-    specification, <command>groff</command> has no means of typesetting
-    characters outside International Organization for Standards (ISO) 8859-1
-    without some strange escape codes. When formatting man pages,
-    <command>groff</command> thinks that they are in the ISO 8859-1 encoding
-    and this <parameter>-Tlatin1</parameter> switch tells
-    <command>groff</command> to use the same encoding for output. Since
-    <command>groff</command> does no recoding of input characters, the f
-    ormatted result is really in the same encoding as input, and therefore
-    it is usable as the input for a pager.</para>
-
-    <para os="t">This does not solve the problem of a non-working
-    <command>man2dvi</command> program for localized man pages in
-    non-ISO 8859-1 locales. Also, it does not work with multibyte
-    character sets. The first problem does not currently have a solution.
-    The second issue is not of concern because the CLFS installation does
-    not support multibyte character sets.</para>
-
-  </sect2>
-
-  <sect2 id="contents-man" role="content">
-    <title>Contents of Man</title>
-
-    <segmentedlist>
-      <segtitle>Installed programs</segtitle>
-
-      <seglistitem>
-        <seg>apropos, makewhatis, man, man2dvi, man2html, and whatis</seg>
-      </seglistitem>
-    </segmentedlist>
-
-    <variablelist>
-      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
-      <?dbfo list-presentation="list"?>
-      <?dbhtml list-presentation="table"?>
-
-      <varlistentry id="apropos">
-        <term><command>apropos</command></term>
-        <listitem>
-          <para>Searches the <command>whatis</command> database and
-          displays the short descriptions of system commands that contain
-          a given string</para>
-          <indexterm zone="ch-system-man apropos">
-            <primary sortas="b-apropos">apropos</primary>
-          </indexterm>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry id="makewhatis">
-        <term><command>makewhatis</command></term>
-        <listitem>
-          <para>Builds the <command>whatis</command> database; it reads all
-          the man pages in the <envar>MANPATH</envar> and writes the name
-          and a short description in the <command>whatis</command> database
-          for each page</para>
-          <indexterm zone="ch-system-man makewhatis">
-            <primary sortas="b-makewhatis">makewhatis</primary>
-          </indexterm>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry id="man">
-        <term><command>man</command></term>
-        <listitem>
-          <para>Formats and displays the requested on-line man page</para>
-          <indexterm zone="ch-system-man man">
-            <primary sortas="b-man">man</primary>
-          </indexterm>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry id="man2dvi">
-        <term><command>man2dvi</command></term>
-        <listitem>
-          <para>Converts a man page into dvi format</para>
-          <indexterm zone="ch-system-man man2dvi">
-            <primary sortas="b-man2dvi">man2dvi</primary>
-          </indexterm>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry id="man2html">
-        <term><command>man2html</command></term>
-        <listitem>
-          <para>Converts a man page into HTML</para>
-          <indexterm zone="ch-system-man man2html">
-            <primary sortas="b-man2html">man2html</primary>
-          </indexterm>
-        </listitem>
-      </varlistentry>
-
-      <varlistentry id="whatis">
-        <term><command>whatis</command></term>
-        <listitem>
-          <para>Searches the <command>whatis</command> database and
-          displays the short descriptions of system commands that
-          contain the given keyword as a separate word</para>
-          <indexterm zone="ch-system-man whatis">
-            <primary sortas="b-whatis">whatis</primary>
-          </indexterm>
-        </listitem>
-      </varlistentry>
-
-    </variablelist>
-
-  </sect2>
-
-</sect1>
diff --git a/BOOK/final-system/multilib/man.xml b/BOOK/final-system/multilib/man.xml
deleted file mode 100644
index 36aa976..0000000
--- a/BOOK/final-system/multilib/man.xml
+++ /dev/null
@@ -1,108 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
-  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
-  <!ENTITY % general-entities SYSTEM "../../general.ent">
-  %general-entities;
-]>
-
-<sect1 id="ch-system-man" role="wrap">
-  <?dbhtml filename="man.html"?>
-
-  <title>Man-&man-version;</title>
-
-  <indexterm zone="ch-system-man">
-    <primary sortas="a-Man">Man</primary>
-  </indexterm>
-
-  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-  href="../common/man.xml"
-  xpointer="xpointer(//*[@role='package'])"/>
-
-  <sect2 role="installation">
-    <title>Installation of Man</title>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='p1'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='p2'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='a'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='b'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='c'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='d'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='e'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='h'])"/>
-
-<screen os="i"><userinput>CC="gcc ${BUILD64}" ./configure -confdir=/etc</userinput></screen>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='j'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='k'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='l'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='m'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='n'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='o'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='p'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='q'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='r'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='s'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/man.xml"
-    xpointer="xpointer(//*[@os='t'])"/>
-
-  </sect2>
-
-  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-  href="../common/man.xml"
-  xpointer="xpointer(id('contents-man'))"/>
-
-</sect1>

-----------------------------------------------------------------------

Summary of changes:
 BOOK/final-system/common/man.xml   |  203 ----------------------
 BOOK/final-system/multilib/man.xml |  108 ------------
 patches/man-1.6g-i18n-1.patch      |  334 ------------------------------------
 3 files changed, 0 insertions(+), 645 deletions(-)
 delete mode 100644 BOOK/final-system/common/man.xml
 delete mode 100644 BOOK/final-system/multilib/man.xml
 delete mode 100644 patches/man-1.6g-i18n-1.patch


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list