From owner-svn-src-head@FreeBSD.ORG Sat Nov 22 20:55:37 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C16E7D1; Sat, 22 Nov 2014 20:55:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 190C7235; Sat, 22 Nov 2014 20:55:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAMKta9j095379; Sat, 22 Nov 2014 20:55:36 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAMKtaAp095377; Sat, 22 Nov 2014 20:55:36 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201411222055.sAMKtaAp095377@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 22 Nov 2014 20:55:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r274893 - in head/usr.bin: . preconv X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Nov 2014 20:55:37 -0000 Author: bapt Date: Sat Nov 22 20:55:36 2014 New Revision: 274893 URL: https://svnweb.freebsd.org/changeset/base/274893 Log: Add the preconv utility from mandoc project it recodes multibyte UNIX manual files into mandoc(1) Added: head/usr.bin/preconv/ head/usr.bin/preconv/Makefile (contents, props changed) Modified: head/usr.bin/Makefile Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Sat Nov 22 20:55:21 2014 (r274892) +++ head/usr.bin/Makefile Sat Nov 22 20:55:36 2014 (r274893) @@ -129,6 +129,7 @@ SUBDIR= alias \ pathchk \ perror \ pr \ + preconv \ printenv \ printf \ procstat \ Added: head/usr.bin/preconv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/usr.bin/preconv/Makefile Sat Nov 22 20:55:36 2014 (r274893) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../contrib/mdocml + +PROG= preconv + +.include