From owner-svn-ports-head@FreeBSD.ORG Mon Mar 2 11:04:48 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13C5BCD3; Mon, 2 Mar 2015 11:04:48 +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 DA3D1224; Mon, 2 Mar 2015 11:04:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t22B4l16092712; Mon, 2 Mar 2015 11:04:47 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t22B4ku1092706; Mon, 2 Mar 2015 11:04:46 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201503021104.t22B4ku1092706@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 2 Mar 2015 11:04:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380248 - in head/textproc: . texi2mdoc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Mar 2015 11:04:48 -0000 Author: bapt Date: Mon Mar 2 11:04:46 2015 New Revision: 380248 URL: https://svnweb.freebsd.org/changeset/ports/380248 QAT: https://qat.redports.org/buildarchive/r380248/ Log: The texi2mdoc utility is a converter from Texinfo into mdoc. It is a standalone ISC-licensed ISO C utility and should compile on any modern UNIX system. WWW: http://mdocml.bsd.lv/texi2mdoc/ Added: head/textproc/texi2mdoc/ head/textproc/texi2mdoc/Makefile (contents, props changed) head/textproc/texi2mdoc/distinfo (contents, props changed) head/textproc/texi2mdoc/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Mar 2 10:50:14 2015 (r380247) +++ head/textproc/Makefile Mon Mar 2 11:04:46 2015 (r380248) @@ -1487,6 +1487,7 @@ SUBDIR += tex2im SUBDIR += texi2db SUBDIR += texi2html + SUBDIR += texi2mdoc SUBDIR += textogif SUBDIR += the_silver_searcher SUBDIR += ti-hunspell Added: head/textproc/texi2mdoc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/texi2mdoc/Makefile Mon Mar 2 11:04:46 2015 (r380248) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= texi2mdoc +PORTVERSION= 0.1.2 +CATEGORIES= textproc +MASTER_SITES= http://mdocml.bsd.lv/texi2mdoc/snapshots/ + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Convert Texinfo data to mdoc input + +LICENSE= ISCL + +USES= tar:tgz + +PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/textproc/texi2mdoc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/texi2mdoc/distinfo Mon Mar 2 11:04:46 2015 (r380248) @@ -0,0 +1,2 @@ +SHA256 (texi2mdoc-0.1.2.tgz) = 7a45fd87c27cc8970a18db9ddddb2f09f18b8dd5152bf0ca377c3a5e7d304bfe +SIZE (texi2mdoc-0.1.2.tgz) = 23101 Added: head/textproc/texi2mdoc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/texi2mdoc/pkg-descr Mon Mar 2 11:04:46 2015 (r380248) @@ -0,0 +1,4 @@ +The texi2mdoc utility is a converter from Texinfo into mdoc. It is a standalone +ISC-licensed ISO C utility and should compile on any modern UNIX system. + +WWW: http://mdocml.bsd.lv/texi2mdoc/