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 B31A1138334 for ; Mon, 20 May 2019 16:17:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6C63E0830; Mon, 20 May 2019 16:17:30 +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 9BA49E0830 for ; Mon, 20 May 2019 16:17:30 +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 5C1E4344C18 for ; Mon, 20 May 2019 16:17:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 395AF5EC for ; Mon, 20 May 2019 16:17:27 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1558369024.48d645dcf43ea91f1a543f4d42735cb805464cbb.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/geda/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/geda/geda-1.9.2-r1.ebuild X-VCS-Directories: sci-electronics/geda/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: 48d645dcf43ea91f1a543f4d42735cb805464cbb X-VCS-Branch: master Date: Mon, 20 May 2019 16:17:27 +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: 95f1532b-e433-4f83-b7ed-b46f28c148b4 X-Archives-Hash: 7418eead99436b6d1f32af789b75e9e1 commit: 48d645dcf43ea91f1a543f4d42735cb805464cbb Author: Thomas Beierlein gentoo org> AuthorDate: Mon May 20 16:17:04 2019 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Mon May 20 16:17:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d645dc sci-electronics/geda: Add missing library to linker stage. Thanks for reporting: Constantin Runge cssbook.de> Closes: https://bugs.gentoo.org/684870 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Thomas Beierlein gentoo.org> sci-electronics/geda/geda-1.9.2-r1.ebuild | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/sci-electronics/geda/geda-1.9.2-r1.ebuild b/sci-electronics/geda/geda-1.9.2-r1.ebuild index 2a44a907ab4..08129958fc6 100644 --- a/sci-electronics/geda/geda-1.9.2-r1.ebuild +++ b/sci-electronics/geda/geda-1.9.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -52,6 +52,19 @@ src_prepare() { sed -i -e 's/\texamples$//' Makefile.in || die fi + # add missing GIO_LIB Bug #684870 + sed -i -e 's/gsymcheck_LDFLAGS =/gsymcheck_LDFLAGS = $(GIO_LIBS)/' \ + gsymcheck/src/Makefile.am || die + + sed -i -e 's/gnetlist_LDFLAGS =/gnetlist_LDFLAGS = $(GIO_LIBS)/' \ + gnetlist/src/Makefile.am || die + + sed -i -e 's/gschlas_LDFLAGS =/gschlas_LDFLAGS = $(GIO_LIBS)/' \ + utils/gschlas/Makefile.am || die + + sed -i -e 's/sarlacc_schem_LDFLAGS =/sarlacc_schem_LDFLAGS = $(GIO_LIBS)/' \ + contrib/sarlacc_schem/Makefile.am || die + eautoreconf }