diff options
author | Doug Barton <dougb@FreeBSD.org> | 2010-05-03 22:28:43 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2010-05-03 22:28:43 +0000 |
commit | 50cfa268042d72eaee24d2e29de507745470c7dc (patch) | |
tree | d0949cec6617f92f76ddffc793e4e0523d5502d7 /ports-mgmt/portmaster | |
parent | 4f7044fee10fc122ae5e674c11c563d1f64d30f7 (diff) |
Notes
Diffstat (limited to 'ports-mgmt/portmaster')
-rw-r--r-- | ports-mgmt/portmaster/files/bash-completions | 3 | ||||
-rw-r--r-- | ports-mgmt/portmaster/files/portmaster.8 | 8 | ||||
-rw-r--r-- | ports-mgmt/portmaster/files/zsh-completions | 1 |
3 files changed, 10 insertions, 2 deletions
diff --git a/ports-mgmt/portmaster/files/bash-completions b/ports-mgmt/portmaster/files/bash-completions index 6486a8d5c774..609ac12ab8da 100644 --- a/ports-mgmt/portmaster/files/bash-completions +++ b/ports-mgmt/portmaster/files/bash-completions @@ -11,7 +11,8 @@ _portmaster () { --check-port-dbdir --list-origins --packages --packages-only \ --packages-build --packages-if-newer --delete-build-only \ --always-fetch --local-packagedir= --packages-delete \ - --no-confirm --no-term-title --index --index-first --index-only \ + --no-confirm --no-term-title --no-index-fetch \ + --index --index-first --index-only \ --help --version' -- $cur ) ) ;; *) COMPREPLY=( $( compgen -d /var/db/pkg/$cur ) ) diff --git a/ports-mgmt/portmaster/files/portmaster.8 b/ports-mgmt/portmaster/files/portmaster.8 index 4c54d7cb8420..a1d0b33efecf 100644 --- a/ports-mgmt/portmaster/files/portmaster.8 +++ b/ports-mgmt/portmaster/files/portmaster.8 @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd May 1, 2010 +.Dd May 3, 2010 .Dt PORTMASTER 8 .Os .Sh NAME @@ -41,6 +41,7 @@ Common Flags: .Op Fl -delete-packages .Op Fl -no-confirm .Op Fl -no-term-title +.Op Fl -no-index-fetch .Op --index|--index-first|--index-only .Op Fl m Ar arguments for make .Op Fl x Ar glob pattern to exclude from building @@ -432,6 +433,8 @@ do not ask the user to confirm the list of ports to be installed and/or updated before proceeding .It Fl -no-term-title do not update the xterm title bar +.It Fl -no-index-fetch +skip fetching the INDEX file .It Fl -index use INDEX-[6-9] exclusively to check if a port is up to date .It Fl -index-first @@ -660,6 +663,9 @@ along with their related options. # Do not update the xterm title bar (--no-term-title) # PM_NO_TERM_TITLE=pm_no_term_title # +# Do not fetch the INDEX file (--no-index-fetch) +# PM_NO_INDEX_FETCH=pm_no_index_fetch +# # Use only the INDEX file to check if a port is out of date (--index) # PM_INDEX=pm_index # diff --git a/ports-mgmt/portmaster/files/zsh-completions b/ports-mgmt/portmaster/files/zsh-completions index f9d8167da682..b76448c6257d 100644 --- a/ports-mgmt/portmaster/files/zsh-completions +++ b/ports-mgmt/portmaster/files/zsh-completions @@ -25,6 +25,7 @@ _arguments -A "-*" : \ "-x[avoid building or updating ports that match this pattern]:glob pattern to exclude from building:->pkgs" \ "--no-confirm[do not ask user to confirm list of ports to be installed and/or updated before proceeding]" \ "--no-term-title[do not update the xterm title bar]" \ + "--no-index-fetch[skip fetching the INDEX file]" \ "--index[use INDEX exclusively to check if a port is up to date]" \ "--index-first[use the INDEX for status, but double-check with the port]" \ "--index-only[do not try to use /usr/ports]" \ |