From owner-svn-ports-all@FreeBSD.ORG Mon Jun 23 21:43:10 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB5BA4EE; Mon, 23 Jun 2014 21:43:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D885727CE; Mon, 23 Jun 2014 21:43:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5NLh944071687; Mon, 23 Jun 2014 21:43:09 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5NLh9ne071680; Mon, 23 Jun 2014 21:43:09 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201406232143.s5NLh9ne071680@svn.freebsd.org> From: "Jason E. Hale" Date: Mon, 23 Jun 2014 21:43:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359012 - head/print/latexdiff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2014 21:43:10 -0000 Author: jhale Date: Mon Jun 23 21:43:08 2014 New Revision: 359012 URL: http://svnweb.freebsd.org/changeset/ports/359012 QAT: https://qat.redports.org/buildarchive/r359012/ Log: - Update to 1.0.3 - Support staging - Add LICENSE - Store unversioned distfile in a versioned subdirectory - Convert PLIST_FILES/MAN1 to pkg-plist - Add WWW to pkg-descr - Take maintainership (previous maintainer no longer uses FreeBSD) PR: 191307 Submitted by: jhale Approved by: Zeliboba@mail.ru (previous maintainer) Added: head/print/latexdiff/pkg-plist (contents, props changed) Modified: head/print/latexdiff/Makefile head/print/latexdiff/distinfo head/print/latexdiff/pkg-descr Modified: head/print/latexdiff/Makefile ============================================================================== --- head/print/latexdiff/Makefile Mon Jun 23 21:42:46 2014 (r359011) +++ head/print/latexdiff/Makefile Mon Jun 23 21:43:08 2014 (r359012) @@ -2,47 +2,28 @@ # $FreeBSD$ PORTNAME= latexdiff -PORTVERSION= 0.5 -PORTREVISION= 2 +PORTVERSION= 1.0.3 CATEGORIES= print perl5 -MASTER_SITES= ${MASTER_SITE_TEX_CTAN} -MASTER_SITE_SUBDIR= support +MASTER_SITES= TEX_CTAN/support DISTNAME= ${PORTNAME} +DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} -MAINTAINER= Zeliboba@mail.ru +MAINTAINER= jhale@FreeBSD.org COMMENT= Determine and mark up significant differences between latex files -RUN_DEPENDS+= bash:${PORTSDIR}/shells/bash +LICENSE= GPLv3 USES= perl5 zip USE_PERL5= run NO_BUILD= yes -MAN1= latexdiff.1 \ - latexdiff-vc.1 \ - latexrevise.1 - -PLIST_FILES= bin/latexdiff \ - bin/latexdiff-fast \ - bin/latexdiff-so \ - bin/latexdiff-vc \ - bin/latexdiff-wrap \ - bin/latexrevise - -NO_STAGE= yes -post-patch: - ${REINPLACE_CMD} -e "s,\/bin\/bash,${LOCALBASE}\/bin\/bash," \ - ${WRKSRC}/contrib/latexdiff-wrap - do-install: - ${MKDIR} ${PREFIX}/bin ${MANPREFIX}/man/man1 - ( cd ${WRKSRC} && ${INSTALL_SCRIPT} latexdiff-fast latexdiff-so \ - latexdiff-vc latexrevise contrib/latexdiff-wrap ${PREFIX}/bin && \ - ${INSTALL_MAN} latexdiff.1 latexdiff-vc.1 latexrevise.1 \ - ${MANPREFIX}/man/man1 ) - ${LN} -s ${PREFIX}/bin/latexdiff-so ${PREFIX}/bin/latexdiff - -test: - ( cd ${WRKSRC} && ${MAKE} test-so test-fast ) +.for i in latexdiff-fast latexdiff-so latexdiff-vc latexrevise + ${INSTALL_SCRIPT} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/bin +.endfor +.for m in latexdiff.1 latexdiff-vc.1 latexrevise.1 + ${INSTALL_MAN} ${WRKSRC}/${m} ${STAGEDIR}${MAN1PREFIX}/man/man1 +.endfor + ${LN} -s latexdiff-so ${STAGEDIR}${PREFIX}/bin/latexdiff .include Modified: head/print/latexdiff/distinfo ============================================================================== --- head/print/latexdiff/distinfo Mon Jun 23 21:42:46 2014 (r359011) +++ head/print/latexdiff/distinfo Mon Jun 23 21:43:08 2014 (r359012) @@ -1,2 +1,2 @@ -SHA256 (latexdiff.zip) = 7a99ac274c7552b1acf617d27866b40573469acafde0fb680231e58b2e08ddcf -SIZE (latexdiff.zip) = 310412 +SHA256 (latexdiff/1.0.3/latexdiff.zip) = 34ec0e39f974273695d72eac92c0a16e55dc534f5011258a70c99e19e830d9ad +SIZE (latexdiff/1.0.3/latexdiff.zip) = 434247 Modified: head/print/latexdiff/pkg-descr ============================================================================== --- head/print/latexdiff/pkg-descr Mon Jun 23 21:42:46 2014 (r359011) +++ head/print/latexdiff/pkg-descr Mon Jun 23 21:43:08 2014 (r359012) @@ -12,3 +12,5 @@ editing of the difference file can be us behaviour and accept or reject selected changes only. There are also scripts to handle multiple-file documents, and files under version control. + +WWW: http://www.ctan.org/tex-archive/support/latexdiff Added: head/print/latexdiff/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/latexdiff/pkg-plist Mon Jun 23 21:43:08 2014 (r359012) @@ -0,0 +1,8 @@ +bin/latexdiff +bin/latexdiff-fast +bin/latexdiff-so +bin/latexdiff-vc +bin/latexrevise +man/man1/latexdiff.1.gz +man/man1/latexdiff-vc.1.gz +man/man1/latexrevise.1.gz