svn commit: r43853 - head/en_US.ISO8859-1/books/porters-handbook/porting-samplem

Warren Block wblock at FreeBSD.org
Sun Feb 9 23:19:18 UTC 2014


Author: wblock
Date: Sun Feb  9 23:19:17 2014
New Revision: 43853
URL: http://svnweb.freebsd.org/changeset/doc/43853

Log:
  Whitespace-only fixes, translators please ignore.

Modified:
  head/en_US.ISO8859-1/books/porters-handbook/porting-samplem/chapter.xml

Modified: head/en_US.ISO8859-1/books/porters-handbook/porting-samplem/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/porting-samplem/chapter.xml	Sun Feb  9 23:16:49 2014	(r43852)
+++ head/en_US.ISO8859-1/books/porters-handbook/porting-samplem/chapter.xml	Sun Feb  9 23:19:17 2014	(r43853)
@@ -5,22 +5,24 @@
      $FreeBSD$
 -->
 
-<chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0" xml:id="porting-samplem">
+<chapter xmlns="http://docbook.org/ns/docbook"
+  xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0"
+  xml:id="porting-samplem">
+
+  <title>A Sample <filename>Makefile</filename></title>
+
+  <para>Here is a sample <filename>Makefile</filename> that you can
+    use to create a new port.  Make sure you remove all the extra
+    comments (ones between brackets)!</para>
+
+  <para>It is recommended that you follow this format (ordering of
+    variables, empty lines between sections, etc.).  This format is
+    designed so that the most important information is easy to locate.
+    We recommend that you use
+    <link linkend="porting-portlint">portlint</link> to check the
+    <filename>Makefile</filename>.</para>
 
-    <title>A Sample <filename>Makefile</filename></title>
-
-    <para>Here is a sample <filename>Makefile</filename> that you can
-      use to create a new port.  Make sure you remove all the extra
-      comments (ones between brackets)!</para>
-
-    <para>It is recommended that you follow this format (ordering of
-      variables, empty lines between sections, etc.).  This format is
-      designed so that the most important information is easy to
-      locate.  We recommend that you use
-      <link linkend="porting-portlint">portlint</link> to check the
-      <filename>Makefile</filename>.</para>
-
-    <programlisting>[the header...just to make it easier for us to identify the ports.]
+  <programlisting>[the header...just to make it easier for us to identify the ports.]
 # Created by: Satoshi Asami <asami at FreeBSD.org>
 [The optional <emphasis>Created by:</emphasis> line names the person who originally
 created the port.  Note that the <quote>:</quote> is followed by a space
@@ -99,5 +101,4 @@ pre-install:
 [and then the epilogue]
 
 .include <bsd.port.mk></programlisting>
-  </chapter>
-
+</chapter>


More information about the svn-doc-all mailing list