Deleted Added
sdiff udiff text old ( 251361 ) new ( 251758 )
full compact
1if [ ! "$_PACKAGES_PACKAGES_SUBR" ]; then _PACKAGES_PACKAGES_SUBR=1
2#
3# Copyright (c) 2013 Devin Teske
4# All Rights Reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:

--- 10 unchanged lines hidden (view full) ---

19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20# DAMAGES (INLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25# SUCH DAMAGE.
26#
27# $FreeBSD: head/usr.sbin/bsdconfig/share/packages/packages.subr 251361 2013-06-04 03:30:44Z dteske $
28#
29############################################################ INCLUDES
30
31BSDCFG_SHARE="/usr/share/bsdconfig"
32. $BSDCFG_SHARE/common.subr || exit 1
33f_dprintf "%s: loading includes..." "$0"
34f_include $BSDCFG_SHARE/dialog.subr
35f_include $BSDCFG_SHARE/strings.subr

--- 562 unchanged lines hidden (view full) ---

598 --title \"\$DIALOG_TITLE\" \
599 --backtitle \"\$DIALOG_BACKTITLE\" \
600 --hline \"\$hline\" \
601 --ok-label \"\$msg_proceed\" \
602 --cancel-label \"\$msg_cancel\" \
603 --menu \"\$prompt\" \
604 $height $width $rows \
605 $menu_list \
606 2> /dev/null
607 local retval=$?
608
609 #
610 # XXX
611 #
612 f_show_msg "Coming soon..."
613 #
614 # XXX
615 #
616
617 return $retval
618}
619
620# f_package_config
621#
622# Allow the user to configure packages and install them. Initially, a list of
623# package categories is loaded/displayed. When the user selects a category,
624# the menus for that category are built (unlike sysinstall which built all
625# category menus up-front -- which also took forever, despite the fact that

--- 159 unchanged lines hidden ---