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 86E6913835B for ; Sun, 29 Nov 2020 15:11:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E578E0849; Sun, 29 Nov 2020 15:11:06 +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 66807E0849 for ; Sun, 29 Nov 2020 15:11:06 +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 CA21C3411D9 for ; Sun, 29 Nov 2020 15:11:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 186D5468 for ; Sun, 29 Nov 2020 15:11:03 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1606662647.9b4cd61f8a70df0509efdd41034f904f211d19bc.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/mathgl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/mathgl/mathgl-2.4.1-r2.ebuild X-VCS-Directories: sci-libs/mathgl/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 9b4cd61f8a70df0509efdd41034f904f211d19bc X-VCS-Branch: master Date: Sun, 29 Nov 2020 15:11:03 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6b1b0104-f114-479b-af9a-cd132d9d485b X-Archives-Hash: f1d8801463bd360ae989423efcf859d4 commit: 9b4cd61f8a70df0509efdd41034f904f211d19bc Author: Marek Szuba gentoo org> AuthorDate: Sun Nov 29 14:53:31 2020 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sun Nov 29 15:10:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b4cd61f sci-libs/mathgl: drop USE=lua support It had a missing build-time dependency on dev-lang/swig, and having fixed this I found out that even with unslotted Lua, it: - installs the module directly into /usr/lib64 instead of the correct cmod directory, - has the module linked against liblua, which is a huge no-no, and - fails to load (even when moved to the correct directory) due to undefined symbols. Signed-off-by: Marek Szuba gentoo.org> sci-libs/mathgl/mathgl-2.4.1-r2.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sci-libs/mathgl/mathgl-2.4.1-r2.ebuild b/sci-libs/mathgl/mathgl-2.4.1-r2.ebuild index 871e6edae56..b9f2abff3f8 100644 --- a/sci-libs/mathgl/mathgl-2.4.1-r2.ebuild +++ b/sci-libs/mathgl/mathgl-2.4.1-r2.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz mirror://sourceforge/${PN}/STIX_ LICENSE="LGPL-3" SLOT="0/7.5.0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc fltk gif glut gsl hdf hdf5 jpeg lua mpi octave opengl openmp pdf +IUSE="doc fltk gif glut gsl hdf hdf5 jpeg mpi octave opengl openmp pdf png qt5 static-libs threads wxwidgets zlib" LANGS="ru" @@ -32,7 +32,6 @@ RDEPEND=" hdf? ( sci-libs/hdf ) hdf5? ( >=sci-libs/hdf5-1.8[mpi=] ) jpeg? ( virtual/jpeg:0 ) - lua? ( >=dev-lang/lua-5.1:0 ) octave? ( >=sci-mathematics/octave-3.4.0 ) openmp? ( sys-cluster/openmpi ) pdf? ( media-libs/libharu ) @@ -110,7 +109,6 @@ src_configure() { -Denable-hdf4=$(usex hdf) -Denable-hdf5=$(usex hdf5) -Denable-jpeg=$(usex jpeg) - -Denable-lua=$(usex lua) -Denable-mpi=$(usex mpi) -Denable-octave=$(usex octave) -Denable-opengl=$(usex opengl)