svn commit: r425401 - in head/textproc: . minixmlto

Baptiste Daroussin bapt at FreeBSD.org
Sat Nov 5 17:03:23 UTC 2016


Author: bapt
Date: Sat Nov  5 17:03:21 2016
New Revision: 425401
URL: https://svnweb.freebsd.org/changeset/ports/425401

Log:
  Add minixmlto which is a very tiny script that is a minimalistic alternative to xmlto
  
  The goal is not to support every features of xmlto, but just the strict minimum
  in order to prevent potential circular dependencies, and have a possibility to
  greatly reduce the number of dependencies

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sat Nov  5 16:59:36 2016	(r425400)
+++ head/textproc/Makefile	Sat Nov  5 17:03:21 2016	(r425401)
@@ -482,6 +482,7 @@
     SUBDIR += mifluz
     SUBDIR += miller
     SUBDIR += minised
+    SUBDIR += minixmlto
     SUBDIR += mk-aspell
     SUBDIR += mkcatalog
     SUBDIR += ml-aspell

Added: head/textproc/minixmlto/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/minixmlto/Makefile	Sat Nov  5 17:03:21 2016	(r425401)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	minixmlto
+PORTVERSION=	0.0.1
+CATEGORIES=	textproc
+
+MAINTAINER=	bapt at FreeBSD.org
+COMMENT=	Minimalistic alternative to xmlto
+
+LICENSE=	BSD2CLAUSE
+
+RUN_DEPENDS=	docbook-xsl>0:textproc/docbook-xsl \
+		xsltproc:textproc/libxslt \
+		html2text:textproc/html2text
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	bapt
+PLIST_FILES=	bin/minixmlto
+
+.include <bsd.port.mk>

Added: head/textproc/minixmlto/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/minixmlto/distinfo	Sat Nov  5 17:03:21 2016	(r425401)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1478364938
+SHA256 (bapt-minixmlto-0.0.1_GH0.tar.gz) = 7349923751fac497daa1ca67f967d3633fb3e2eb83fe87228c88a002895d8639
+SIZE (bapt-minixmlto-0.0.1_GH0.tar.gz) = 1500

Added: head/textproc/minixmlto/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/minixmlto/pkg-descr	Sat Nov  5 17:03:21 2016	(r425401)
@@ -0,0 +1,3 @@
+Minimalistic alternative to xmlto
+
+WWW: https://github.com/bapt/minixmlto


More information about the svn-ports-head mailing list