From owner-svn-ports-head@FreeBSD.ORG Thu Jun 27 08:56:19 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 919FC900; Thu, 27 Jun 2013 08:56:19 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6AC2F1349; Thu, 27 Jun 2013 08:56:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5R8uJcL069240; Thu, 27 Jun 2013 08:56:19 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5R8uI2H069236; Thu, 27 Jun 2013 08:56:18 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201306270856.r5R8uI2H069236@svn.freebsd.org> From: Wen Heping Date: Thu, 27 Jun 2013 08:56:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321876 - in head/textproc: . p5-texcount X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jun 2013 08:56:19 -0000 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 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 +# $FreeBSD$ + +PORTNAME= texcount +PORTVERSION= 2.3 +CATEGORIES= textproc perl5 +MASTER_SITES= TEX_CTAN/support +PKGNAMEPREFIX= p5- +DISTNAME= ${PORTNAME} + +MAINTAINER= nukama+maintainer@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 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/