Add xmlprpr.

An XML pretty printer created to format XML that doesn't make use of
mixed content. In the default mode each element is put on a separate
line with consistent indentation. It can also separate attributes onto
individual lines, sort attributes in a specified or alphabetic order,
expand self closing tags, and more.

Note that the distribution calls this tool "xmlpp", but it has been
renamed so as not to conflict with an xmlpp already in the ports tree.

WWW: http://software.decisionsoft.com/tools.html

PR:		ports/92946
Submitted by:	Paul Chvostek <paul+ports@it.ca>
This commit is contained in:
Jean-Yves Lefort 2006-02-11 07:14:24 +00:00
parent 7c020a4939
commit 7e63466156
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=155718
4 changed files with 43 additions and 0 deletions

View file

@ -813,6 +813,7 @@
SUBDIR += xmlindent
SUBDIR += xmlpp
SUBDIR += xmlppm
SUBDIR += xmlprpr
SUBDIR += xmlpull
SUBDIR += xmlroff
SUBDIR += xmlstarlet

26
textproc/xmlprpr/Makefile Normal file
View file

@ -0,0 +1,26 @@
# New ports collection makefile for: xmlprpr
# Date created: Sun Oct 9 10:33:37 EDT 2005
# Whom: Paul Chvostek <paul+ports@it.ca>
#
# $FreeBSD$
#
PORTNAME= xmlprpr
PORTVERSION= 1.32
CATEGORIES= textproc
MASTER_SITES= http://software.decisionsoft.com/software/
DISTFILES= xmlpp.pl
EXTRACT_ONLY=
MAINTAINER= paul+ports@it.ca
COMMENT= A XML pretty printer
USE_PERL5= yes
NO_WRKSUBDIR= yes
NO_BUILD= yes
PLIST_FILES= bin/xmlprpr
do-install:
${INSTALL_SCRIPT} ${_DISTDIR}/${_DISTFILES} ${PREFIX}/bin/xmlprpr
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (xmlpp.pl) = ea353effc32e136ddd05b345fa0f757a
SHA256 (xmlpp.pl) = b4a21130076455c4503ef55fe738a7c955e4111a5aed6a878877a4df473a7287
SIZE (xmlpp.pl) = 9466

View file

@ -0,0 +1,13 @@
An XML pretty printer created to format XML that doesn't make use of
mixed content. In the default mode each element is put on a separate
line with consistent indentation. It can also separate attributes onto
individual lines, sort attributes in a specified or alphabetic order,
expand self closing tags, and more.
Note that the distribution calls this tool "xmlpp", but it has been
renamed so as not to conflict with an xmlpp already in the ports tree.
WWW: http://software.decisionsoft.com/tools.html
- Paul Chvostek
paul+ports@it.ca