pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/doc/guide/files Ran "make detab".



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7e6e1b871346
branches:  trunk
changeset: 512513:7e6e1b871346
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Wed May 10 22:43:15 2006 +0000

description:
Ran "make detab".

diffstat:

 doc/guide/files/fixes.xml   |  14 +++++++-------
 doc/guide/files/options.xml |  24 ++++++++++++------------
 doc/guide/files/tools.xml   |   6 +++---
 3 files changed, 22 insertions(+), 22 deletions(-)

diffs (120 lines):

diff -r d4f96ae9eb0e -r 7e6e1b871346 doc/guide/files/fixes.xml
--- a/doc/guide/files/fixes.xml Wed May 10 22:42:30 2006 +0000
+++ b/doc/guide/files/fixes.xml Wed May 10 22:43:15 2006 +0000
@@ -1,4 +1,4 @@
-<!-- $NetBSD: fixes.xml,v 1.51 2006/04/16 04:27:18 jlam Exp $ -->
+<!-- $NetBSD: fixes.xml,v 1.52 2006/05/10 22:43:15 rillig Exp $ -->
 
 <chapter id="fixes"> <?dbhtml filename="fixes.html"?>
   <title>Making your package work</title>
@@ -588,9 +588,9 @@
 
     AGE
         The difference between the newest and oldest interfaces that
-       this library implements.  In other words, the library implements
-       all the interface numbers in the range from number `CURRENT -
-       AGE' to `CURRENT'.
+        this library implements.  In other words, the library implements
+        all the interface numbers in the range from number `CURRENT -
+        AGE' to `CURRENT'.
 
     If two libraries have identical CURRENT and AGE numbers, then the
     dynamic linker chooses the library with the greater REVISION number.
@@ -824,8 +824,8 @@
 
 <programlisting>
     FreeBSD     __FreeBSD__
-    DragonFly  __DragonFly__
-    Interix    __INTERIX
+    DragonFly   __DragonFly__
+    Interix     __INTERIX
     Linux       linux, __linux, __linux__
     NetBSD      __NetBSD__
     OpenBSD     __OpenBSD__
@@ -846,7 +846,7 @@
 
 <programlisting>
     GCC         __GNUC__ (major version), __GNUC_MINOR__
-    SunPro     __SUNPRO_C (0x570 for version 5.7)
+    SunPro      __SUNPRO_C (0x570 for version 5.7)
 </programlisting>
 
       </sect3>
diff -r d4f96ae9eb0e -r 7e6e1b871346 doc/guide/files/options.xml
--- a/doc/guide/files/options.xml       Wed May 10 22:42:30 2006 +0000
+++ b/doc/guide/files/options.xml       Wed May 10 22:43:15 2006 +0000
@@ -1,4 +1,4 @@
-<!-- $NetBSD: options.xml,v 1.17 2006/02/12 14:44:59 rillig Exp $ -->
+<!-- $NetBSD: options.xml,v 1.18 2006/05/10 22:43:15 rillig Exp $ -->
 
 <!-- based on: pkgsrc/mk/bsd.options.mk 1.42 -->
 
@@ -36,21 +36,21 @@
 main package <filename>Makefile</filename>.</para>
 
 <programlisting>
-    PKG_OPTIONS_VAR=           PKG_OPTIONS.wibble
-    PKG_SUPPORTED_OPTIONS=             wibble-foo ldap
-    PKG_OPTIONS_OPTIONAL_GROUPS=       database
-    PKG_OPTIONS_GROUP.database=        mysql pgsql
-    PKG_SUGGESTED_OPTIONS=             wibble-foo
-    PKG_OPTIONS_LEGACY_VARS+=  WIBBLE_USE_OPENLDAP:ldap
-    PKG_OPTIONS_LEGACY_OPTS+=  foo:wibble-foo
+    PKG_OPTIONS_VAR=                PKG_OPTIONS.wibble
+    PKG_SUPPORTED_OPTIONS=          wibble-foo ldap
+    PKG_OPTIONS_OPTIONAL_GROUPS=    database
+    PKG_OPTIONS_GROUP.database=     mysql pgsql
+    PKG_SUGGESTED_OPTIONS=          wibble-foo
+    PKG_OPTIONS_LEGACY_VARS+=       WIBBLE_USE_OPENLDAP:ldap
+    PKG_OPTIONS_LEGACY_OPTS+=       foo:wibble-foo
 
     .include "../../mk/bsd.prefs.mk"
 
     # this package was previously named wibble2
     .if defined(PKG_OPTIONS.wibble2)
-    PKG_LEGACY_OPTIONS+=  ${PKG_OPTIONS.wibble2}
+    PKG_LEGACY_OPTIONS+=            ${PKG_OPTIONS.wibble2}
     PKG_OPTIONS_DEPRECATED_WARNINGS+= \
-            "Deprecated variable PKG_OPTIONS.wibble2 used, use "${PKG_OPTIONS_VAR:Q}" instead."
+            "Deprecated variable PKG_OPTIONS.wibble2 used, use ${PKG_OPTIONS_VAR instead."
     .endif
 
     .include "../../mk/bsd.options.mk"
@@ -61,7 +61,7 @@
     ### FOO support
     ###
     .if !empty(PKG_OPTIONS:Mwibble-foo)
-    CONFIGURE_ARGS+=   --enable-foo
+    CONFIGURE_ARGS+=    --enable-foo
     .endif
 
     ###
@@ -69,7 +69,7 @@
     ###
     .if !empty(PKG_OPTIONS:Mldap)
     .  include "../../databases/openldap/buildlink3.mk"
-    CONFIGURE_ARGS+=   --enable-ldap=${BUILDLINK_PREFIX.openldap}
+    CONFIGURE_ARGS+=    --enable-ldap=${BUILDLINK_PREFIX.openldap}
     .endif
 
     ###
diff -r d4f96ae9eb0e -r 7e6e1b871346 doc/guide/files/tools.xml
--- a/doc/guide/files/tools.xml Wed May 10 22:42:30 2006 +0000
+++ b/doc/guide/files/tools.xml Wed May 10 22:43:15 2006 +0000
@@ -1,4 +1,4 @@
-<!-- $NetBSD: tools.xml,v 1.2 2006/01/16 00:29:23 rillig Exp $ -->
+<!-- $NetBSD: tools.xml,v 1.3 2006/05/10 22:43:15 rillig Exp $ -->
 
 <chapter id="tools">
 <title>Tools needed for building or running</title>
@@ -71,8 +71,8 @@
 </para>
 
 <programlisting>
-USE_TOOLS+=    mktemp:pkgsrc
-USE_TOOLS+=    gmake perl:run pkg-config
+USE_TOOLS+=     mktemp:pkgsrc
+USE_TOOLS+=     gmake perl:run pkg-config
 </programlisting>
 
 <para>



Home | Main Index | Thread Index | Old Index