Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Feb 2014 23:19:17 +0000 (UTC)
From:      Warren Block <wblock@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r43853 - head/en_US.ISO8859-1/books/porters-handbook/porting-samplem
Message-ID:  <201402092319.s19NJHlS085148@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 &lt;asami@FreeBSD.org&gt;
 [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 &lt;bsd.port.mk&gt;</programlisting>
-  </chapter>
-
+</chapter>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402092319.s19NJHlS085148>