]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/whereis/pathnames.h
Remove spurious newline
[FreeBSD/FreeBSD.git] / usr.bin / whereis / pathnames.h
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright © 2002, Jörg Wunsch
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:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
19  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  * POSSIBILITY OF SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29
30 /* Where to look for libexec */
31 #define PATH_LIBEXEC "/usr/libexec"
32
33 /* Where to look for sources. */
34 #define PATH_SOURCES                                    \
35 "/usr/src/bin:/usr/src/usr.bin:/usr/src/sbin:"          \
36 "/usr/src/usr.sbin:/usr/src/libexec:"                   \
37 "/usr/src/gnu/bin:/usr/src/gnu/usr.bin:"                \
38 "/usr/src/gnu/sbin:/usr/src/gnu/usr.sbin:"              \
39 "/usr/src/gnu/libexec:/usr/src/contrib:"                \
40 "/usr/src/secure/bin:/usr/src/secure/usr.bin:"          \
41 "/usr/src/secure/sbin:/usr/src/secure/usr.sbin:"        \
42 "/usr/src/secure/libexec:/usr/src/crypto:"              \
43 "/usr/src/games"
44
45 /* Each subdirectory of PATH_PORTS will be appended to PATH_SOURCES. */
46 #define PATH_PORTS "/usr/ports"
47
48 /* How to query the current manpath. */
49 #define MANPATHCMD "manpath -q"
50
51 /* How to obtain the location of manpages, and how to match this result. */
52 #define MANWHEREISCMD "man -S1:8:6 -w %s 2>/dev/null"
53 #define MANWHEREISALLCMD "man -a -w %s 2>/dev/null"
54 #define MANWHEREISMATCH "^.* [(]source: (.*)[)]$"
55
56 /* Command used to locate sources that have not been found yet. */
57 #define LOCATECMD "locate '*'/%s 2>/dev/null"