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 53C55138334 for ; Sat, 8 Dec 2018 10:35:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2027CE0B48; Sat, 8 Dec 2018 10:35:15 +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 EB259E0B48 for ; Sat, 8 Dec 2018 10:35:14 +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 132CE335C78 for ; Sat, 8 Dec 2018 10:35:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C92B3266 for ; Sat, 8 Dec 2018 10:35:09 +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: <1544265284.aa5dfa5e093d5efe5cf22c488b1c94344238cc8a.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/xlog/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/xlog/xlog-2.0.15.ebuild X-VCS-Directories: media-radio/xlog/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: aa5dfa5e093d5efe5cf22c488b1c94344238cc8a X-VCS-Branch: master Date: Sat, 8 Dec 2018 10:35:09 +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: 809264ae-f468-4bc6-8c7a-5bfd4c2d12b8 X-Archives-Hash: 9a1f6652cc4de85290811f3714bd81a3 commit: aa5dfa5e093d5efe5cf22c488b1c94344238cc8a Author: Thomas Beierlein gentoo org> AuthorDate: Sat Dec 8 10:33:55 2018 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Sat Dec 8 10:34:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa5dfa5e media-radio/xlog: Fix broken .png files Reported-by: Toralf Förster gentoo.org> Closes: https://bugs.gentoo.org/670616 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Thomas Beierlein gentoo.org> media-radio/xlog/xlog-2.0.15.ebuild | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/media-radio/xlog/xlog-2.0.15.ebuild b/media-radio/xlog/xlog-2.0.15.ebuild index 122b4ea8208..41a2bb14fd6 100644 --- a/media-radio/xlog/xlog-2.0.15.ebuild +++ b/media-radio/xlog/xlog-2.0.15.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -19,6 +19,7 @@ RDEPEND="media-libs/hamlib dev-libs/glib:2 x11-libs/gtk+:2" DEPEND="${RDEPEND} + media-libs/libpng:0 sys-devel/gettext virtual/pkgconfig" @@ -37,6 +38,16 @@ src_prepare() { sed -i -e "s:HAMLIB_LIBS@:HAMLIB_LIBS@ -lm:g" src/Makefile.am || die eautoreconf + # Fix broken png files<< + einfo "Fixing broken png files." + pushd "${S}"/data/doc/manual/output/html + for png in xlog-clock.png xlog-dropdown.png xlog-editbox.png; do + pngfix -q --out=out.png ${png} + mv -f out.png "${png}" || die + done + popd + einfo "done ..." + eapply_user }