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 B94FE138330 for ; Wed, 14 Sep 2016 22:28:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5FD1BE0888; Wed, 14 Sep 2016 22:28:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E1157E0888 for ; Wed, 14 Sep 2016 22:28:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 992B3340A38 for ; Wed, 14 Sep 2016 22:28:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01562247A for ; Wed, 14 Sep 2016 22:28:12 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1473892052.fc7a9facd7afd81edbc0d408f53e7e714d2a27d5.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/openjade/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/openjade/openjade-1.3.2-r6.ebuild X-VCS-Directories: app-text/openjade/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: fc7a9facd7afd81edbc0d408f53e7e714d2a27d5 X-VCS-Branch: master Date: Wed, 14 Sep 2016 22:28:12 +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: 07fbb3a0-6461-4c22-b7a1-73403403e69e X-Archives-Hash: 3b2587ece213163e86f10718f3c27fed commit: fc7a9facd7afd81edbc0d408f53e7e714d2a27d5 Author: David Seifert gentoo org> AuthorDate: Wed Sep 14 22:27:11 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Sep 14 22:27:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc7a9fac app-text/openjade: Allow for compiling with GCC 6 Gentoo-bug: 592590 * Fix overlong DESCRIPTION Package-Manager: portage-2.3.0 app-text/openjade/openjade-1.3.2-r6.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app-text/openjade/openjade-1.3.2-r6.ebuild b/app-text/openjade/openjade-1.3.2-r6.ebuild index 6f9aba7..f6bd9b7 100644 --- a/app-text/openjade/openjade-1.3.2-r6.ebuild +++ b/app-text/openjade/openjade-1.3.2-r6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -6,7 +6,7 @@ EAPI=5 inherit autotools sgml-catalog eutils flag-o-matic multilib -DESCRIPTION="Jade is an implementation of DSSSL - an ISO standard for formatting SGML and XML documents" +DESCRIPTION="Jade is an implementation of DSSSL for formatting SGML and XML documents" HOMEPAGE="http://openjade.sourceforge.net" SRC_URI="mirror://sourceforge/openjade/${P}.tar.gz" @@ -50,6 +50,11 @@ src_prepare() { } src_configure() { + # avoids dead-store elimination optimization + # leading to segfaults on GCC 6 + # bug #592590 + append-cxxflags -fno-lifetime-dse + # We need Prefix env, bug #287358 export CONFIG_SHELL="${CONFIG_SHELL:-${BASH}}" econf \