From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5235B1396D0 for ; Sat, 30 Sep 2017 18:45:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72171E0C11; Sat, 30 Sep 2017 18:45:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4EFE7E0C11 for ; Sat, 30 Sep 2017 18:45:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 584063417F6 for ; Sat, 30 Sep 2017 18:45:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E38529095 for ; Sat, 30 Sep 2017 18:45:46 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1506797099.2621815419bebb7633efdadfc10cfb25f4a7ebf6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pdf2djvu/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pdf2djvu/pdf2djvu-0.9.4.ebuild X-VCS-Directories: app-text/pdf2djvu/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2621815419bebb7633efdadfc10cfb25f4a7ebf6 X-VCS-Branch: master Date: Sat, 30 Sep 2017 18:45:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6e65e9c6-f3e6-48ed-9ac4-c864d13989c8 X-Archives-Hash: ffde3d358c2a5ea80f00c42af4ec264d commit: 2621815419bebb7633efdadfc10cfb25f4a7ebf6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Sep 30 18:01:01 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Sep 30 18:44:59 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26218154 app-text/pdf2djvu: Fix build with app-text/poppler-0.57 Gentoo-bug: 626874 Package-Manager: Portage-2.3.10, Repoman-2.3.3 app-text/pdf2djvu/pdf2djvu-0.9.4.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-text/pdf2djvu/pdf2djvu-0.9.4.ebuild b/app-text/pdf2djvu/pdf2djvu-0.9.4.ebuild index af5fbd00e70..d046e0746aa 100644 --- a/app-text/pdf2djvu/pdf2djvu-0.9.4.ebuild +++ b/app-text/pdf2djvu/pdf2djvu-0.9.4.ebuild @@ -5,7 +5,7 @@ EAPI=5 PYTHON_COMPAT=( python2_7 ) -inherit python-any-r1 toolchain-funcs +inherit python-any-r1 toolchain-funcs flag-o-matic DESCRIPTION="A tool to create DjVu files from PDF files" HOMEPAGE="http://jwilk.net/software/pdf2djvu" @@ -39,6 +39,12 @@ pkg_setup() { use test && python-any-r1_pkg_setup } +src_prepare() { + # bug 626874, poppler headers require C++11 + append-cxxflags -std=c++11 + default +} + src_configure() { local openmp=--disable-openmp use openmp && tc-has-openmp && openmp=--enable-openmp