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 67DA3139082 for ; Mon, 27 Nov 2017 17:45:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0B0AE0EFE; Mon, 27 Nov 2017 17:45:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B22C3E0EFE for ; Mon, 27 Nov 2017 17:45:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A539433BEC7 for ; Mon, 27 Nov 2017 17:45:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 011BAA985 for ; Mon, 27 Nov 2017 17:45:06 +0000 (UTC) From: "Andreas Hüttel" 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 Hüttel" Message-ID: <1511804682.7a0a8d6e5c3b03291d696124367821116ccbe5d4.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pdftk/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pdftk/pdftk-2.02.ebuild X-VCS-Directories: app-text/pdftk/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 7a0a8d6e5c3b03291d696124367821116ccbe5d4 X-VCS-Branch: master Date: Mon, 27 Nov 2017 17:45:06 +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: 35cb3230-ecfe-4826-b505-8127b82af530 X-Archives-Hash: d7b5e78e991ef0bf082e744767e258f7 commit: 7a0a8d6e5c3b03291d696124367821116ccbe5d4 Author: Andreas K. Huettel gentoo org> AuthorDate: Mon Nov 27 17:43:52 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Mon Nov 27 17:44:42 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a0a8d6e app-text/pdftk: Make this build with gcc-5 for now Hardwire pdftk to use gcc-5.4.0, and depend on it Bug: https://bugs.gentoo.org/562568 Package-Manager: Portage-2.3.16, Repoman-2.3.6 app-text/pdftk/pdftk-2.02.ebuild | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app-text/pdftk/pdftk-2.02.ebuild b/app-text/pdftk/pdftk-2.02.ebuild index 0aa09e4f2ac..d026f23fdf6 100644 --- a/app-text/pdftk/pdftk-2.02.ebuild +++ b/app-text/pdftk/pdftk-2.02.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -13,8 +13,10 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux" -DEPEND="sys-devel/gcc[gcj]" -RDEPEND="${DEPEND}" +RDEPEND="sys-devel/gcc:5.4.0[gcj]" +DEPEND="${RDEPEND} + sys-devel/gcc-config +" S="${WORKDIR}/${P}-dist/${PN}" @@ -27,6 +29,9 @@ src_compile() { unset CLASSPATH unset JAVA_HOME + # We need gcc-5 because of Java + export PATH="$(gcc-config -B 5.4.0):${PATH}" + # Parallel make fails; confirmed, still not fixed in version 2.02. emake -j1 -f "${S}"/Makefile.Debian || die "Compilation failed." }