2009-06-08 20:41:52 +03:00
|
|
|
# bash completion for FreeBSD portupgrade package
|
|
|
|
|
|
|
|
have portupgrade &&
|
|
|
|
_portupgrade()
|
|
|
|
{
|
2011-04-20 23:08:37 +03:00
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
2009-06-08 20:41:52 +03:00
|
|
|
|
2009-11-23 20:08:52 +02:00
|
|
|
[[ "$prev" == -l || "$prev" == -L || "$prev" == -o ]] && return 0
|
2009-06-08 20:41:52 +03:00
|
|
|
|
2011-04-20 23:08:37 +03:00
|
|
|
local pkgdir=${PKG_DBDIR:-/var/db/pkg}/
|
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=( $( compgen -d "$pkgdir$cur" ) )
|
|
|
|
COMPREPLY=( ${COMPREPLY[@]#$pkgdir} )
|
|
|
|
COMPREPLY=( ${COMPREPLY[@]%-*} )
|
2009-06-08 20:41:52 +03:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
return 0
|
2009-06-08 20:41:52 +03:00
|
|
|
} &&
|
2009-10-22 12:04:29 +03:00
|
|
|
complete -F _portupgrade -o dirnames portupgrade
|
2009-06-08 20:41:52 +03:00
|
|
|
|
|
|
|
have portinstall &&
|
|
|
|
_portinstall()
|
|
|
|
{
|
2011-04-20 23:08:37 +03:00
|
|
|
local cur prev words cword
|
|
|
|
_init_completion || return
|
|
|
|
|
|
|
|
local portsdir indexfile
|
2009-10-04 19:42:50 +02:00
|
|
|
local -a COMPREPLY2
|
|
|
|
|
|
|
|
portsdir=${PORTSDIR:-/usr/ports}/
|
2011-04-21 11:16:11 +03:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
# First try INDEX-5
|
|
|
|
indexfile=$portsdir/INDEX-5
|
|
|
|
# Then INDEX if INDEX-5 does not exist or system is not FreeBSD 5.x
|
2009-11-23 20:08:52 +02:00
|
|
|
[[ "${OSTYPE%.*}" == freebsd5 && -f $indexfile ]] ||
|
|
|
|
indexfile=$portsdir/INDEX
|
2009-10-04 19:42:50 +02:00
|
|
|
|
2009-11-23 20:08:52 +02:00
|
|
|
[[ "$prev" == -l || "$prev" == -L || "$prev" == -o ]] && return 0
|
2009-10-04 19:42:50 +02:00
|
|
|
|
2009-12-15 23:48:10 +02:00
|
|
|
COMPREPLY=( $( command grep -E "^$cur" < $indexfile | cut -d'|' -f1 ) )
|
|
|
|
COMPREPLY2=( $( command grep -E "^[^\|]+\|$portsdir$cur" < $indexfile | \
|
2009-10-04 19:42:50 +02:00
|
|
|
cut -d'|' -f2 ) )
|
|
|
|
COMPREPLY2=( ${COMPREPLY2[@]#$portsdir} )
|
2011-04-06 20:39:21 +03:00
|
|
|
COMPREPLY+=( "${COMPREPLY2[@]}" )
|
2009-10-04 19:42:50 +02:00
|
|
|
|
|
|
|
return 0
|
2009-06-08 20:41:52 +03:00
|
|
|
} &&
|
2009-10-22 12:04:29 +03:00
|
|
|
complete -F _portinstall -o dirnames portinstall
|
2009-06-08 20:41:52 +03:00
|
|
|
|
|
|
|
# _pkg_delete is in pkg_install
|
2011-04-24 18:55:04 +03:00
|
|
|
declare -F _pkg_delete &>/dev/null && have pkg_deinstall && \
|
2009-10-22 12:04:29 +03:00
|
|
|
complete -F _pkg_delete -o dirnames pkg_deinstall
|
2009-10-01 20:54:51 +03:00
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
# mode: shell-script
|
2009-10-04 19:42:50 +02:00
|
|
|
# sh-basic-offset: 4
|
2009-10-01 20:54:51 +03:00
|
|
|
# sh-indent-comment: t
|
2009-10-04 19:42:50 +02:00
|
|
|
# indent-tabs-mode: nil
|
2009-10-01 20:54:51 +03:00
|
|
|
# End:
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|