187c16275SDevin Teske# Copyright (c) 2013 Devin Teske 287c16275SDevin Teske# All rights reserved. 387c16275SDevin Teske# 487c16275SDevin Teske# Redistribution and use in source and binary forms, with or without 587c16275SDevin Teske# modification, are permitted provided that the following conditions 687c16275SDevin Teske# are met: 787c16275SDevin Teske# 1. Redistributions of source code must retain the above copyright 887c16275SDevin Teske# notice, this list of conditions and the following disclaimer. 987c16275SDevin Teske# 2. Redistributions in binary form must reproduce the above copyright 1087c16275SDevin Teske# notice, this list of conditions and the following disclaimer in the 1187c16275SDevin Teske# documentation and/or other materials provided with the distribution. 1287c16275SDevin Teske# 1387c16275SDevin Teske# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 1487c16275SDevin Teske# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1587c16275SDevin Teske# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1687c16275SDevin Teske# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 1787c16275SDevin Teske# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 1887c16275SDevin Teske# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 1987c16275SDevin Teske# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2087c16275SDevin Teske# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2187c16275SDevin Teske# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2287c16275SDevin Teske# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2387c16275SDevin Teske# SUCH DAMAGE. 2487c16275SDevin Teske# 2587c16275SDevin Teske 2687c16275SDevin Teske# 27*6dcefcacSDevin Teske# Title that will be shown in the bsdconfig menu. 28*6dcefcacSDevin Teske# 2987c16275SDevin Teskemenu_title="Packages" 30*6dcefcacSDevin Teske 3187c16275SDevin Teske# 32*6dcefcacSDevin Teske# A short descriptive line shown at the bottom of the bsdconfig menu. keep it 33*6dcefcacSDevin Teske# short because any line longer than the terminal width will be truncated. 34*6dcefcacSDevin Teske# 3587c16275SDevin Teskemenu_help="Install pre-packaged software for FreeBSD" 36*6dcefcacSDevin Teske 3787c16275SDevin Teske# 38*6dcefcacSDevin Teske# Two-part variable that defines an action to take when `keyword' is passed on 39*6dcefcacSDevin Teske# a bsdconfig command line. Variable takes the form "keyword|command" and 40*6dcefcacSDevin Teske# multiple occurrences of the variable (with different `keyword's, or different 41*6dcefcacSDevin Teske# `keyword's AND `command's) are allowed. If `command' begins with a '/' then 42*6dcefcacSDevin Teske# the full path to the program is needed. If `command' begins with anything 43*6dcefcacSDevin Teske# else it is a path relative to the directory this INDEX file is in. `keyword' 44*6dcefcacSDevin Teske# can be i18n'ed but `command' is the name of a script. 45*6dcefcacSDevin Teske# 4687c16275SDevin Teskemenu_selection="packages|packages" 47*6dcefcacSDevin Teske 4887c16275SDevin Teske# 49*6dcefcacSDevin Teske# ------------ Items below this line do NOT need i18n translation ------------ 5087c16275SDevin Teske# 51*6dcefcacSDevin Teske# Name of the program to be run when this menu choice is selected. If it begins 52*6dcefcacSDevin Teske# with a '/' then the full path to the program is needed. If it begins with 53*6dcefcacSDevin Teske# anything else it is a path relative to the directory this INDEX file is in. 54*6dcefcacSDevin Teske# 5587c16275SDevin Teskemenu_program="packages" 56