svn commit: r321876 - in head/textproc: . p5-texcount

Wen Heping wen at FreeBSD.org
Thu Jun 27 08:56:19 UTC 2013


Author: wen
Date: Thu Jun 27 08:56:18 2013
New Revision: 321876
URL: http://svnweb.freebsd.org/changeset/ports/321876

Log:
  TeXcount is a Perl script that counts the number of words in the
  text of LaTeX files. It has rules for handling most of the common
  macros and provides colour coded output indicating which parts have
  been counted.
  
  WWW: http://app.uio.no/ifi/texcount/
  
  PR:		179189
  Submitted by:	Hakisho Nukama <nukama at gmail.com>

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Thu Jun 27 08:47:26 2013	(r321875)
+++ head/textproc/Makefile	Thu Jun 27 08:56:18 2013	(r321876)
@@ -1044,6 +1044,7 @@
     SUBDIR += p5-libxml
     SUBDIR += p5-pod2pdf
     SUBDIR += p5-podlators
+    SUBDIR += p5-texcount
     SUBDIR += p5-xmltv
     SUBDIR += pa-aspell
     SUBDIR += par

Added: head/textproc/p5-texcount/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-texcount/Makefile	Thu Jun 27 08:56:18 2013	(r321876)
@@ -0,0 +1,26 @@
+# Created by: Hakisho Nukama <Nukama at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	texcount
+PORTVERSION=	2.3
+CATEGORIES=	textproc perl5
+MASTER_SITES=	TEX_CTAN/support
+PKGNAMEPREFIX=	p5-
+DISTNAME=	${PORTNAME}
+
+MAINTAINER=	nukama+maintainer at gmail.com
+COMMENT=	Perl module for LaTeX statistics
+
+#LICENSE=	LPPL13c
+
+NO_BUILD=	yes
+
+USE_ZIP=	YES
+USE_PERL5_RUN=	YES
+
+PLIST_FILES+=	bin/texcount
+
+do-install:
+	@${INSTALL_SCRIPT} ${WRKSRC}/texcount.pl ${PREFIX}/bin/texcount
+
+.include <bsd.port.mk>

Added: head/textproc/p5-texcount/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-texcount/distinfo	Thu Jun 27 08:56:18 2013	(r321876)
@@ -0,0 +1,2 @@
+SHA256 (texcount.zip) = 8d19ddd3baceecf2266297ff5264ebb4235e96b3620f314b6ce87dc297cab878
+SIZE (texcount.zip) = 393384

Added: head/textproc/p5-texcount/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-texcount/pkg-descr	Thu Jun 27 08:56:18 2013	(r321876)
@@ -0,0 +1,6 @@
+TeXcount is a Perl script that counts the number of words in the 
+text of LaTeX files. It has rules for handling most of the common 
+macros and provides colour coded output indicating which parts have 
+been counted. 
+
+WWW: http://app.uio.no/ifi/texcount/


More information about the svn-ports-all mailing list