From owner-svn-ports-all@freebsd.org Sat Oct 19 03:08:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C43F214D216; Sat, 19 Oct 2019 03:08:42 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46w7CG4s63z4Z1w; Sat, 19 Oct 2019 03:08:42 +0000 (UTC) (envelope-from cy@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8B38E1C152; Sat, 19 Oct 2019 03:08:42 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9J38gAK011761; Sat, 19 Oct 2019 03:08:42 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9J38f7S011755; Sat, 19 Oct 2019 03:08:41 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201910190308.x9J38f7S011755@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Sat, 19 Oct 2019 03:08:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r514746 - in branches/2019Q4/graphics/xpdf3: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in branches/2019Q4/graphics/xpdf3: . files X-SVN-Commit-Revision: 514746 X-SVN-Commit-Repository: ports 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.29 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: Sat, 19 Oct 2019 03:08:42 -0000 Author: cy Date: Sat Oct 19 03:08:41 2019 New Revision: 514746 URL: https://svnweb.freebsd.org/changeset/ports/514746 Log: MFH: r513783 r513785 r513786 Pacify stage-qa in DEVELOPER mode. Update WWW. PR: 241066 Submitted by: naddy Backport fix for CVE-2019-16927 and CVE-2019-9877 from xpdf4. PR: 241066 Submitted by: naddy Approved by: portmgr (miwi) Added: branches/2019Q4/graphics/xpdf3/files/patch-xpdf_TextOutputDev.cc - copied unchanged from r513786, head/graphics/xpdf3/files/patch-xpdf_TextOutputDev.cc Modified: branches/2019Q4/graphics/xpdf3/Makefile branches/2019Q4/graphics/xpdf3/pkg-descr Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/graphics/xpdf3/Makefile ============================================================================== --- branches/2019Q4/graphics/xpdf3/Makefile Fri Oct 18 23:23:38 2019 (r514745) +++ branches/2019Q4/graphics/xpdf3/Makefile Sat Oct 19 03:08:41 2019 (r514746) @@ -2,7 +2,7 @@ PORTNAME= xpdf PORTVERSION= 3.04 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics print MASTER_SITES= http://mirrors.rit.edu/zi/ \ ftp://ftp.foolabs.com/pub/xpdf/ \ @@ -24,7 +24,9 @@ LIB_DEPENDS= libfreetype.so:print/freetype2 \ libpng.so:graphics/png GNU_CONFIGURE= yes -USES= gmake cpe localbase +USES= gmake cpe localbase xorg +USE_XORG= ice sm x11 xext xt + CPE_VENDOR= foolabs CONFIGURE_ARGS= --enable-opi \ --with-freetype2-library="${LOCALBASE}/lib" \ Copied: branches/2019Q4/graphics/xpdf3/files/patch-xpdf_TextOutputDev.cc (from r513786, head/graphics/xpdf3/files/patch-xpdf_TextOutputDev.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q4/graphics/xpdf3/files/patch-xpdf_TextOutputDev.cc Sat Oct 19 03:08:41 2019 (r514746, copy of r513786, head/graphics/xpdf3/files/patch-xpdf_TextOutputDev.cc) @@ -0,0 +1,15 @@ +--- xpdf/TextOutputDev.cc.orig 2019-10-04 19:39:06 UTC ++++ xpdf/TextOutputDev.cc +@@ -2472,6 +2472,12 @@ TextBlock *TextPage::split(GList *charsA, int rot) { + + //----- compute the horizontal and vertical profiles + ++ if (xMin / splitPrecision < 0.5 * INT_MIN || ++ xMax / splitPrecision > 0.5 * INT_MAX || ++ yMin / splitPrecision < 0.5 * INT_MIN || ++ xMax / splitPrecision > 0.5 * INT_MAX) { ++ return NULL; ++ } + // add some slack to the array bounds to avoid floating point + // precision problems + xMinI = (int)floor(xMin / splitPrecision) - 1; Modified: branches/2019Q4/graphics/xpdf3/pkg-descr ============================================================================== --- branches/2019Q4/graphics/xpdf3/pkg-descr Fri Oct 18 23:23:38 2019 (r514745) +++ branches/2019Q4/graphics/xpdf3/pkg-descr Sat Oct 19 03:08:41 2019 (r514746) @@ -5,4 +5,4 @@ PDF software. It can also convert PDF input to ps, text, and info formats; and split out fonts and images. -WWW: http://www.foolabs.com/xpdf/ +WWW: https://www.xpdfreader.com/