Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Oct 2020 13:29:37 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r551389 - in head/textproc: . fmtlatex
Message-ID:  <202010041329.094DTc2M023505@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Sun Oct  4 13:29:37 2020
New Revision: 551389
URL: https://svnweb.freebsd.org/changeset/ports/551389

Log:
  Add textproc/fmtlatex
  
  fmtlatex is able to put a LaTeX document into a canonical formatting form,
  which is then suitable for comparing genuine content differences between
  various revisions of the same document rather than just formatting differences.
  
  WWW: https://github.com/loopspace/fmtlatex

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sun Oct  4 13:16:11 2020	(r551388)
+++ head/textproc/Makefile	Sun Oct  4 13:29:37 2020	(r551389)
@@ -202,6 +202,7 @@
     SUBDIR += fldiff
     SUBDIR += flex
     SUBDIR += flip
+    SUBDIR += fmtlatex
     SUBDIR += fo-aspell
     SUBDIR += foiltex
     SUBDIR += fop

Added: head/textproc/fmtlatex/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/fmtlatex/Makefile	Sun Oct  4 13:29:37 2020	(r551389)
@@ -0,0 +1,33 @@
+# $FreeBSD$
+
+PORTNAME=	fmtlatex
+DISTVERSION=	g20130930
+CATEGORIES=	textproc perl5
+
+MAINTAINER=	0mp@FreeBSD.org
+COMMENT=	Reformat LaTeX documents suitable for version control
+
+LICENSE=	GPLv2+
+
+USES=		perl5 shebangfix
+USE_GITHUB=	yes
+GH_ACCOUNT=	loopspace
+GH_TAGNAME=	e76acd9
+SHEBANG_FILES=	${PORTNAME}
+
+NO_ARCH=	yes
+NO_BUILD=	yes
+
+PLIST_FILES=	bin/${PORTNAME}
+PORTDOCS=	Bugs ChangeLog
+
+OPTIONS_DEFINE=	DOCS
+
+do-install:
+	${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+
+post-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/textproc/fmtlatex/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/fmtlatex/distinfo	Sun Oct  4 13:29:37 2020	(r551389)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1601816624
+SHA256 (loopspace-fmtlatex-g20130930-e76acd9_GH0.tar.gz) = 3ed255dbd435b52fb68b9bb1953c3c45cf5a3e6a7593e75f604f2a10a2c41608
+SIZE (loopspace-fmtlatex-g20130930-e76acd9_GH0.tar.gz) = 6539

Added: head/textproc/fmtlatex/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/fmtlatex/pkg-descr	Sun Oct  4 13:29:37 2020	(r551389)
@@ -0,0 +1,5 @@
+fmtlatex is able to put a LaTeX document into a canonical formatting form,
+which is then suitable for comparing genuine content differences between
+various revisions of the same document rather than just formatting differences.
+
+WWW: https://github.com/loopspace/fmtlatex



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