Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Nov 2014 21:51:59 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r373178 - in head/textproc: . pod2mdoc
Message-ID:  <201411232151.sANLpx8a006439@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sun Nov 23 21:51:58 2014
New Revision: 373178
URL: https://svnweb.freebsd.org/changeset/ports/373178
QAT: https://qat.redports.org/buildarchive/r373178/

Log:
  The pod2mdoc utility is a converter from POD into mdoc. It's meant to operate
  like pod2man; however, it doesn't require a Perl installation: pod2mdoc is a
  standalone ISC-licensed ISO C utility and should compile on any modern UNIX
  system.
  
  WWW: http://mdocml.bsd.lv/pod2mdoc/

Added:
  head/textproc/pod2mdoc/
  head/textproc/pod2mdoc/Makefile   (contents, props changed)
  head/textproc/pod2mdoc/distinfo   (contents, props changed)
  head/textproc/pod2mdoc/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sun Nov 23 21:43:52 2014	(r373177)
+++ head/textproc/Makefile	Sun Nov 23 21:51:58 2014	(r373178)
@@ -1142,6 +1142,7 @@
     SUBDIR += plover
     SUBDIR += po4a
     SUBDIR += pocketreader
+    SUBDIR += pod2mdoc
     SUBDIR += popup
     SUBDIR += popup-stacks
     SUBDIR += ppower4

Added: head/textproc/pod2mdoc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/pod2mdoc/Makefile	Sun Nov 23 21:51:58 2014	(r373178)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	pod2mdoc
+PORTVERSION=	0.1
+CATEGORIES=	textproc
+MASTER_SITES=	http://mdocml.bsd.lv/pod2mdoc/snapshots/
+
+MAINTAINER=	bapt@FreeBSD.org
+COMMENT=	Convert POD data to mdoc input
+
+LICENSE=	ISCL
+
+USES=	tar:tgz
+ALL_TARGET=	pod2mdoc
+
+PLIST_FILES=	bin/pod2mdoc \
+		man/man1/pod2mdoc.1.gz
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/pod2mdoc ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/pod2mdoc.1 ${STAGEDIR}${PREFIX}/man/man1
+
+.include <bsd.port.mk>

Added: head/textproc/pod2mdoc/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/pod2mdoc/distinfo	Sun Nov 23 21:51:58 2014	(r373178)
@@ -0,0 +1,2 @@
+SHA256 (pod2mdoc-0.1.tgz) = ebde31b464356529f8fd04e87b5cd520d8a96710feb212c7a9b0029de35a8015
+SIZE (pod2mdoc-0.1.tgz) = 14674

Added: head/textproc/pod2mdoc/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/pod2mdoc/pkg-descr	Sun Nov 23 21:51:58 2014	(r373178)
@@ -0,0 +1,6 @@
+The pod2mdoc utility is a converter from POD into mdoc. It's meant to operate
+like pod2man; however, it doesn't require a Perl installation: pod2mdoc is a
+standalone ISC-licensed ISO C utility and should compile on any modern UNIX
+system.
+
+WWW: http://mdocml.bsd.lv/pod2mdoc/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411232151.sANLpx8a006439>