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 CBD74138330 for ; Sat, 27 Aug 2016 16:28:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB93EE0AE6; Sat, 27 Aug 2016 16:28:00 +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 78406E0AE6 for ; Sat, 27 Aug 2016 16:28:00 +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 3483934087E for ; Sat, 27 Aug 2016 16:27:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA19E1B9B for ; Sat, 27 Aug 2016 16:27:56 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1472315268.f0e7d3a13581b299286888b7c5080d18906a29c5.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/quarter/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/quarter/quarter-1.0.0-r1.ebuild X-VCS-Directories: media-libs/quarter/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: f0e7d3a13581b299286888b7c5080d18906a29c5 X-VCS-Branch: master Date: Sat, 27 Aug 2016 16:27:56 +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: 6a4e3673-2bd2-43d4-9715-aa211b636c89 X-Archives-Hash: ab0b2be1b3c8b9eb157f9eccaf1b713d commit: f0e7d3a13581b299286888b7c5080d18906a29c5 Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Aug 27 16:27:48 2016 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Aug 27 16:27:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0e7d3a1 media-libs/quarter: fix GL underlinking, bug #369967 Before the change shared library had undefined glEnable() symbol. Easy to test as: $ LDFLAGS="-Wl,--no-undefined" emerge -1 quarter .libs/libQuarter_la-QuarterWidget.o: In function `SIM::Coin3D::Quarter::QuarterWidget::initializeGL()': QuarterWidget.cpp:(.text+0xac6): undefined reference to `glEnable' Reported-by: Diego Elio Pettenò Bug: https://bugs.gentoo.org/show_bug.cgi?id=369967 Package-Manager: portage-2.3.0 media-libs/quarter/quarter-1.0.0-r1.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/media-libs/quarter/quarter-1.0.0-r1.ebuild b/media-libs/quarter/quarter-1.0.0-r1.ebuild index 4d863b3..e6e370a 100644 --- a/media-libs/quarter/quarter-1.0.0-r1.ebuild +++ b/media-libs/quarter/quarter-1.0.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit autotools-utils +inherit autotools-utils flag-o-matic MY_P="${P/q/Q}" @@ -23,6 +23,7 @@ RDEPEND=" dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtopengl:4 + virtual/opengl " DEPEND="${RDEPEND} virtual/pkgconfig @@ -38,6 +39,8 @@ PATCHES=( DOCS=(AUTHORS NEWS README) src_configure() { + append-libs -lGL #369967, library calls glEnable() + local myeconfargs=( htmldir="${ROOT}usr/share/doc/${PF}/html" --enable-pkgconfig