Date: Mon, 15 Feb 2021 17:06:19 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r565318 - in head/textproc: . xenv Message-ID: <202102151706.11FH6JaG084031@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Mon Feb 15 17:06:19 2021 New Revision: 565318 URL: https://svnweb.freebsd.org/changeset/ports/565318 Log: Xenv is a text preprocessor that expands references to environment variables in the input text to their actual values. Requested by: maintainer Added: head/textproc/xenv/ head/textproc/xenv/Makefile (contents, props changed) head/textproc/xenv/distinfo (contents, props changed) head/textproc/xenv/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Feb 15 16:44:52 2021 (r565317) +++ head/textproc/Makefile Mon Feb 15 17:06:19 2021 (r565318) @@ -1876,6 +1876,7 @@ SUBDIR += wv2 SUBDIR += xalan-c SUBDIR += xalan-j + SUBDIR += xenv SUBDIR += xerces-c3 SUBDIR += xerces-j SUBDIR += xfce4-dict-plugin Added: head/textproc/xenv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xenv/Makefile Mon Feb 15 17:06:19 2021 (r565318) @@ -0,0 +1,27 @@ +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= xenv +PORTVERSION= 1.1 +CATEGORIES= textproc +MASTER_SITES= https://download.gnu.org.ua/release/xenv/ + +MAINTAINER= zeus@gnu.org.ua +COMMENT= Text preprocessor for environment variable expansion + +LICENSE= GPLv3+ + +MAKE_ARGS= CFLAGS="${CFLAGS} -Wall" +ALL_TARGET= ${PORTNAME} +TEST_TARGET= check + +PLIST_FILES= bin/xenv share/man/man1/xenv.1.gz +PORTDOCS= NEWS README + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/textproc/xenv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xenv/distinfo Mon Feb 15 17:06:19 2021 (r565318) @@ -0,0 +1,3 @@ +TIMESTAMP = 1613051608 +SHA256 (xenv-1.1.tar.gz) = 2109c40f68e33ac55f0ad46a746a732ed1b5d58d19755506d2adcf51981896de +SIZE (xenv-1.1.tar.gz) = 62311 Added: head/textproc/xenv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xenv/pkg-descr Mon Feb 15 17:06:19 2021 (r565318) @@ -0,0 +1,6 @@ +Xenv is a text preprocessor that expands references to environment +variables in the input text to their actual values. Environment variables +are referenced using POSIX-compatible shell syntax. Text is read from the +standard input and expanded text goes to the standard output. + +WWW: https://gnu.org.ua/software/xenv/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102151706.11FH6JaG084031>