From owner-svn-ports-branches@freebsd.org Sat Mar 5 11:48:36 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFCAD9DA725; Sat, 5 Mar 2016 11:48:36 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 818CDA5C; Sat, 5 Mar 2016 11:48:36 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u25BmZr4092014; Sat, 5 Mar 2016 11:48:35 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u25BmZZK092013; Sat, 5 Mar 2016 11:48:35 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201603051148.u25BmZZK092013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 5 Mar 2016 11:48:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r410170 - branches/2016Q1/textproc/dblatex X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Mar 2016 11:48:37 -0000 Author: rakuco Date: Sat Mar 5 11:48:35 2016 New Revision: 410170 URL: https://svnweb.freebsd.org/changeset/ports/410170 Log: MFH: r410097 Make print/tex-dvipsk a runtime dependency. Two reasons for this: 1. Document builds can fail without it even when using pdftex. From dblatex -d -D: Build uwm-pc-user-guide.pdf pdflatex failed Unexpected error occured Traceback (most recent call last): File "/usr/local/lib/python2.7/site-packages/dbtexmf/core/dbtex.py", line 332, in compile donefiles = self._compile() File "/usr/local/lib/python2.7/site-packages/dbtexmf/core/dbtex.py", line 400, in _compile self.make_bin() File "/usr/local/lib/python2.7/site-packages/dbtexmf/core/dbtex.py", line 317, in make_bin batch=self.texbatch) File "/usr/local/lib/python2.7/site-packages/dbtexmf/dblatex/runtex.py", line 113, in compile self.texer.compile(texfile) File "/usr/local/lib/python2.7/site-packages/dbtexmf/dblatex/grubber/texbuilder.py", line 73, in compile raise OSError("%s compilation failed" % self.tex.program) OSError: pdflatex compilation failed /tmp/tmpe0bJK0 not removed From tail -n 11 /tmp/tmpe0bJK0/uwm-pc-user-guide.log: Here is how much of TeX's memory you used: 22571 strings out of 493117 331796 string characters out of 6138550 659827 words of memory out of 5000000 19593 multiletter control sequences out of 15000+600000 89643 words of font info for 150 fonts, out of 8000000 for 9000 1141 hyphenation exceptions out of 8191 48i,21n,51p,484b,2429s stack positions out of 5000i,2500n,10000p,300000b,80000s !pdfTeX error: pdflatex (file 8r.enc): cannot open encoding file for reading ==> Fatal error occurred, no output PDF file produced! 2. dvips is a valid backend to specify with dblatex -b. PR: 201592 Submitted by: Jason Bacon Approved by: portmgr (miwi) Modified: branches/2016Q1/textproc/dblatex/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/textproc/dblatex/Makefile ============================================================================== --- branches/2016Q1/textproc/dblatex/Makefile Sat Mar 5 11:00:28 2016 (r410169) +++ branches/2016Q1/textproc/dblatex/Makefile Sat Mar 5 11:48:35 2016 (r410170) @@ -3,6 +3,7 @@ PORTNAME= dblatex PORTVERSION= 0.3.6 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -15,7 +16,7 @@ RUN_DEPENDS= xsltproc:${PORTSDIR}/textpr USES= tar:bzip2 python:2 USE_PYTHON= distutils autoplist -USE_TEX= tex +USE_TEX= dvipsk:run tex NO_ARCH= yes PYDISTUTILS_INSTALLARGS+= --catalogs=${LOCALBASE}/share/xml/catalog.ports