Document --depclean-lib-check[=n].
authorZac Medico <zmedico@gentoo.org>
Wed, 28 Jul 2010 14:55:17 +0000 (07:55 -0700)
committerZac Medico <zmedico@gentoo.org>
Wed, 28 Jul 2010 14:55:17 +0000 (07:55 -0700)
man/emerge.1
pym/_emerge/help.py

index 29c40da0849e2e28c316a10f33320fee7cedf9a2..fbf668d71e9473e95899e843d0c71a8426f98894 100644 (file)
@@ -353,6 +353,12 @@ listed in the dependencies of a package.  Also see \fB\-\-with\-bdeps\fR for
 behavior with respect to build time dependencies that are not strictly
 required.
 .TP
+.BR "\-\-depclean\-lib\-check[=n]"
+Account for library link-level dependencies during
+\fB-\-depclean\fR and \fB-\-prune\fR actions. This
+option is enabled by default. In some cases this can
+be somewhat time\-consuming.
+.TP
 .BR "\-\-emptytree " (\fB\-e\fR)
 Reinstalls target atoms and their entire deep
 dependency tree, as though no packages are currently
index fd49adeb9dad697b427b24bf2ab5e7ec0983153c..fe616ca957d29405de450e524574985a051e3d88 100644 (file)
@@ -378,6 +378,14 @@ def help(myopts, havecolor=1):
                print("              Also see --with-bdeps for behavior with respect to build time")
                print("              dependencies that are not strictly required.")
                print() 
+               print("       " + green("--depclean-lib-check") + "[=%s]" % turquoise("n"))
+               desc = "Account for library link-level dependencies during " + \
+                       "--depclean and --prune actions. This " + \
+                       "option is enabled by default. In some cases this can " + \
+                       "be somewhat time-consuming."
+               for line in wrap(desc, desc_width):
+                       print(desc_indent + line)
+               print()
                print("       "+green("--emptytree")+" ("+green("-e")+" short option)")
                desc = "Reinstalls target atoms and their entire deep " + \
                        "dependency tree, as though no packages are currently " + \