From: David Rhodus Date: Thu, 25 Mar 2004 16:41:01 +0000 (+0000) Subject: Next time I'll run cvs update to make sure I've added X-Git-Tag: v2.0.1~11679 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/b136f6b5d45c1630f9658aea1031ca1b2ea9fa52 Next time I'll run cvs update to make sure I've added all the new files. --- diff --git a/usr.bin/whereis/pathnames.h b/usr.bin/whereis/pathnames.h new file mode 100644 index 0000000000..c82e59848a --- /dev/null +++ b/usr.bin/whereis/pathnames.h @@ -0,0 +1,57 @@ +/* + * Copyright © 2002, Jörg Wunsch + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + * + * $FreeBSD: src/usr.bin/whereis/pathnames.h,v 1.4 2002/08/22 01:50:51 johan Exp $ + * $DragonFly: src/usr.bin/whereis/pathnames.h,v 1.1 2004/03/25 16:41:01 drhodus Exp $ + */ + +/* Where to look for libexec and games */ +#define PATH_LIBEXEC "/usr/libexec" +#define PATH_GAMES "/usr/games" + +/* Where to look for sources. */ +#define PATH_SOURCES \ +"/usr/src/bin:/usr/src/usr.bin:/usr/src/sbin:" \ +"/usr/src/usr.sbin:/usr/src/libexec:" \ +"/usr/src/gnu/bin:/usr/src/gnu/usr.bin:" \ +"/usr/src/gnu/sbin:/usr/src/gnu/usr.sbin:" \ +"/usr/src/gnu/libexec:/usr/src/contrib:" \ +"/usr/src/secure/bin:/usr/src/secure/usr.bin:" \ +"/usr/src/secure/sbin:/usr/src/secure/usr.sbin:" \ +"/usr/src/secure/libexec:/usr/src/crypto:" \ +"/usr/src/games" + +/* Each subdirectory of PATH_PORTS will be appended to PATH_SOURCES. */ +#define PATH_PORTS "/usr/ports" + +/* How to query the current manpath. */ +#define MANPATHCMD "manpath -q" + +/* How to obtain the location of manpages, and how to match this result. */ +#define MANWHEREISCMD "man -S1:8:6 -w %s 2>/dev/null" +#define MANWHEREISALLCMD "man -a -w %s 2>/dev/null" +#define MANWHEREISMATCH "^.* [(]source: (.*)[)]$" + +/* Command used to locate sources that have not been found yet. */ +#define LOCATECMD "locate '*'/%s 2>/dev/null"