From owner-cvs-src-old@FreeBSD.ORG Fri Oct 1 03:59:37 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07B93106564A for ; Fri, 1 Oct 2010 03:59:37 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E91B38FC19 for ; Fri, 1 Oct 2010 03:59:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o913xaRK068008 for ; Fri, 1 Oct 2010 03:59:36 GMT (envelope-from gordon@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o913xaQE068007 for cvs-src-old@freebsd.org; Fri, 1 Oct 2010 03:59:36 GMT (envelope-from gordon@repoman.freebsd.org) Message-Id: <201010010359.o913xaQE068007@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to gordon@repoman.freebsd.org using -f From: Gordon Tetlow Date: Fri, 1 Oct 2010 03:59:18 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/man Makefile apropos.1 man.1 man.conf.5 man.sh manpath.1 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Oct 2010 03:59:37 -0000 gordon 2010-10-01 03:59:18 UTC FreeBSD src repository Added files: usr.bin/man Makefile apropos.1 man.1 man.conf.5 man.sh manpath.1 Log: SVN rev 213317 on 2010-10-01 03:59:18Z by gordon Implementaiton of man, manpath, whatis, and apropos written entirely in sh. Features of this new version in favor of the old one: BSD licensed -- old one is GPL. Imports configuration from /etc/man.conf and LOCALBASE/etc/man.d/*.conf allowing ports to extend the base functionality. The pluggable configuration can supplement the manual search path (retiring use.perl), add locales, and override language specific toolsets (attempt to merge the japanese/man port into the base system as much as possible). Much effort has been made to make this version mirror the functionality of the existing implementation. For 99% of users, it should be a drop in replacement. PR: gnu/143271, gnu/4419 Reviewed by: dougb (previous versions) Approved by: wes (mentor) Revision Changes Path 1.3 +11 -0 src/usr.bin/man/Makefile (new) 1.1 +88 -0 src/usr.bin/man/apropos.1 (new) 1.3 +299 -0 src/usr.bin/man/man.1 (new) 1.3 +142 -0 src/usr.bin/man/man.conf.5 (new) 1.1 +847 -0 src/usr.bin/man/man.sh (new) 1.1 +123 -0 src/usr.bin/man/manpath.1 (new)