From owner-dev-commits-ports-all@freebsd.org Mon Jul 5 12:23:30 2021 Return-Path: Delivered-To: dev-commits-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 A185C65C276; Mon, 5 Jul 2021 12:23:30 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GJPwy4DrGz3GFH; Mon, 5 Jul 2021 12:23:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6F67325F9A; Mon, 5 Jul 2021 12:23:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 165CNUWR085088; Mon, 5 Jul 2021 12:23:30 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 165CNUll085087; Mon, 5 Jul 2021 12:23:30 GMT (envelope-from git) Date: Mon, 5 Jul 2021 12:23:30 GMT Message-Id: <202107051223.165CNUll085087@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Adriaan de Groot Subject: git: d8d6d6af0c75 - main - graphics/poppler: make boost a build-time dependency MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: adridg X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: d8d6d6af0c7555b0bb2af494ba2b74c92bb7db92 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jul 2021 12:23:30 -0000 The branch main has been updated by adridg: URL: https://cgit.FreeBSD.org/ports/commit/?id=d8d6d6af0c7555b0bb2af494ba2b74c92bb7db92 commit d8d6d6af0c7555b0bb2af494ba2b74c92bb7db92 Author: Adriaan de Groot AuthorDate: 2021-07-05 09:09:18 +0000 Commit: Adriaan de Groot CommitDate: 2021-07-05 12:23:28 +0000 graphics/poppler: make boost a build-time dependency Poppler uses Boost small-vectors for efficiency (over std::vector) when the Splash renderer is enabled. Small-vectors are header-only, so there is no need to depend on the whole boost-libs at runtime. The PR asks to drop Boost entirely; we're not going to do that, but as a build-dep it avoids installed-size bloat. Bump PORTREVISION also of related ports to make sure they are rebuilt; don't need to re-do all consumers because Boost was not linked anyway. PR: 256821 --- graphics/poppler-glib/Makefile | 2 +- graphics/poppler-qt5/Makefile | 2 +- graphics/poppler-utils/Makefile | 2 +- graphics/poppler/Makefile | 5 +++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/graphics/poppler-glib/Makefile b/graphics/poppler-glib/Makefile index 639d50d648ea..3a0237c47bfc 100644 --- a/graphics/poppler-glib/Makefile +++ b/graphics/poppler-glib/Makefile @@ -1,6 +1,6 @@ # Created by: Michael Johnson -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= GLib bindings to poppler diff --git a/graphics/poppler-qt5/Makefile b/graphics/poppler-qt5/Makefile index 5817eaf3853e..16d3aeb64d90 100644 --- a/graphics/poppler-qt5/Makefile +++ b/graphics/poppler-qt5/Makefile @@ -1,4 +1,4 @@ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -qt5 COMMENT= Qt 5 bindings to poppler diff --git a/graphics/poppler-utils/Makefile b/graphics/poppler-utils/Makefile index e762bf7224b8..e9579593b9b2 100644 --- a/graphics/poppler-utils/Makefile +++ b/graphics/poppler-utils/Makefile @@ -1,6 +1,6 @@ # Created by: Michael Nottebrock -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= Poppler's xpdf-workalike command line utilities # ' diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile index bfa291c0f17a..bbb54dad755f 100644 --- a/graphics/poppler/Makefile +++ b/graphics/poppler/Makefile @@ -2,6 +2,7 @@ PORTNAME= poppler DISTVERSION= 21.06.1 +PORTREVISION= 1 CATEGORIES= graphics print MASTER_SITES= https://poppler.freedesktop.org/ @@ -17,8 +18,8 @@ LIB_DEPENDS= libnspr4.so:devel/nspr \ libtiff.so:graphics/tiff \ libfreetype.so:print/freetype2 \ libnss3.so:security/nss \ - libfontconfig.so:x11-fonts/fontconfig \ - libboost_system.so:devel/boost-libs + libfontconfig.so:x11-fonts/fontconfig +BUILD_DEPENDS= ${LOCALBASE}/include/boost/container/small_vector.hpp:devel/boost-libs RUN_DEPENDS= poppler-data>0:graphics/poppler-data USES= compiler:c++11-lang cpe cmake:insource gnome jpeg libtool \