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 4B011138334 for ; Sat, 20 Oct 2018 16:37:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCB8EE08C3; Sat, 20 Oct 2018 16:36:59 +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 931B0E08C3 for ; Sat, 20 Oct 2018 16:36:59 +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 C50AA335CFC for ; Sat, 20 Oct 2018 16:36:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36B80449 for ; Sat, 20 Oct 2018 16:36:54 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1540053338.49c4e24ad6284b415e2479fbb77a6e54037dfe0c.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/w3mimgfb/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/w3mimgfb/w3mimgfb-0.9.1.ebuild X-VCS-Directories: media-gfx/w3mimgfb/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 49c4e24ad6284b415e2479fbb77a6e54037dfe0c X-VCS-Branch: master Date: Sat, 20 Oct 2018 16:36:54 +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: 7e577982-1eaf-4c52-bcfa-c72b10ff3c56 X-Archives-Hash: c17472d92b6df9eaef1f391be09aaebe commit: 49c4e24ad6284b415e2479fbb77a6e54037dfe0c Author: Pacho Ramos gentoo org> AuthorDate: Sat Oct 20 16:00:19 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Oct 20 16:35:38 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49c4e24a media-gfx/w3mimgfb: Fix linking issues (#655080 by Chris Torske) Closes: https://bugs.gentoo.org/655080 Signed-off-by: Pacho Ramos gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 media-gfx/w3mimgfb/w3mimgfb-0.9.1.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/media-gfx/w3mimgfb/w3mimgfb-0.9.1.ebuild b/media-gfx/w3mimgfb/w3mimgfb-0.9.1.ebuild index aa180059c55..47def669f9b 100644 --- a/media-gfx/w3mimgfb/w3mimgfb-0.9.1.ebuild +++ b/media-gfx/w3mimgfb/w3mimgfb-0.9.1.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 - +EAPI=7 inherit toolchain-funcs DESCRIPTION="Image viewer for w3m under frame buffer environment" @@ -16,13 +15,16 @@ IUSE="" DEPEND="media-libs/stimg" RDEPEND="${DEPEND} - virtual/w3m" + virtual/w3m +" src_prepare() { + default sed \ -e '/^CC/d' \ -e '/^CFLAGS/d' \ -e '/^LDFLAGS/d' \ + -e 's/LIBS= -lstimg/LIBS= -lstimg -lpng -ljpeg -ltiff/g' \ -i Makefile || die tc-export CC }