summaryrefslogtreecommitdiff
path: root/ports-mgmt
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2009-12-07 07:15:04 +0000
committerDoug Barton <dougb@FreeBSD.org>2009-12-07 07:15:04 +0000
commit42fb40ecd6b7852f3a2f0ab4eb705771679a77f5 (patch)
treeaf64699068cd36b15754315431ae0ff52c506eb9 /ports-mgmt
parentThis is svn version r200201 (diff)
Update for version 2.13
Notes
Notes: svn path=/head/; revision=245321
Diffstat (limited to 'ports-mgmt')
-rw-r--r--ports-mgmt/portmaster/Makefile2
-rw-r--r--ports-mgmt/portmaster/files/bash-completions5
-rw-r--r--ports-mgmt/portmaster/pkg-descr6
3 files changed, 8 insertions, 5 deletions
diff --git a/ports-mgmt/portmaster/Makefile b/ports-mgmt/portmaster/Makefile
index 2749084609c8..52e81a4ed7f6 100644
--- a/ports-mgmt/portmaster/Makefile
+++ b/ports-mgmt/portmaster/Makefile
@@ -8,7 +8,7 @@
#
PORTNAME= portmaster
-PORTVERSION= 2.12
+PORTVERSION= 2.13
CATEGORIES= ports-mgmt
MASTER_SITES= # none
DISTFILES= # none
diff --git a/ports-mgmt/portmaster/files/bash-completions b/ports-mgmt/portmaster/files/bash-completions
index 54af34c34c73..475675b1605f 100644
--- a/ports-mgmt/portmaster/files/bash-completions
+++ b/ports-mgmt/portmaster/files/bash-completions
@@ -8,7 +8,10 @@ _portmaster () {
*/*) COMPREPLY=( $( compgen -d /usr/ports/$cur ) ) ;;
--*) COMPREPLY=( $( compgen -W '--force-config --show-work \
--clean-distfiles --clean-distfiles-all --check-depends \
- --check-port-dbdir --list-origins --help --version' -- $cur ) )
+ --check-port-dbdir --list-origins --packages --packages-only \
+ --packages-build --packages-if-newer --delete-build-only \
+ --always-fetch --local-packagedir= \
+ --help --version' -- $cur ) )
;;
*) COMPREPLY=( $( compgen -d /var/db/pkg/$cur ) )
COMPREPLY=( ${COMPREPLY[@]#/var/db/pkg/} )
diff --git a/ports-mgmt/portmaster/pkg-descr b/ports-mgmt/portmaster/pkg-descr
index b5f9e86f12d8..3702942c63ca 100644
--- a/ports-mgmt/portmaster/pkg-descr
+++ b/ports-mgmt/portmaster/pkg-descr
@@ -1,6 +1,5 @@
This script uses the existing ports infrastructure to track dependencies,
-and to keep those dependencies up to date. Because it is written in /bin/sh,
-it needs no other languages installed.
+and keep them up to date. It is written in /bin/sh so it has no dependencies.
Portmaster has the following features:
* User can specify the port to upgrade (or install) either by directory
@@ -11,7 +10,6 @@ Portmaster has the following features:
* Runs make config recursively through all ports before starting build
* Recursively checks and upgrades (or installs) all dependencies
* User can force upgrades of all dependent ports
- * Runs make clean before starting the build (can be disabled)
* Offers the user the opportunity to delete stale distfiles
* Supports /usr/ports/MOVED
* Supports non-default settings of PORTSDIR and PKG_DBDIR
@@ -20,5 +18,7 @@ Portmaster has the following features:
* Options to make packages out of installed, and new ports
* Option to clean out stale port dependencies
* Downloads distfiles in the background
+ * Packages can be used for installation either exclusively, if available,
+ or only for build dependencies
WWW: http://dougbarton.us/portmaster.html