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 25685138334 for ; Sat, 10 Nov 2018 23:55:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C490E0E1B; Sat, 10 Nov 2018 23:55:42 +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 1C302E0E1B for ; Sat, 10 Nov 2018 23:55:42 +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 92E5E335CCB for ; Sat, 10 Nov 2018 23:55:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7DB43DB for ; Sat, 10 Nov 2018 23:55:38 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1541894134.c620bdc2b3a0872b6bc6ef0a9c624a411328db0d.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/zathura/, app-text/zathura/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/zathura/files/zathura-find-libm.patch app-text/zathura/zathura-0.4.1.ebuild X-VCS-Directories: app-text/zathura/ app-text/zathura/files/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: c620bdc2b3a0872b6bc6ef0a9c624a411328db0d X-VCS-Branch: master Date: Sat, 10 Nov 2018 23:55:38 +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: 5e697c90-33d7-44f6-a3ec-6ebfe3b28b79 X-Archives-Hash: e3b8a1b4ce306630213f223e206340f1 commit: c620bdc2b3a0872b6bc6ef0a9c624a411328db0d Author: Mikle Kolyada gentoo org> AuthorDate: Sat Nov 10 23:54:43 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Nov 10 23:55:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c620bdc2 app-text/zathura: find libm properly Closes: https://bugs.gentoo.org/669850 Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-text/zathura/files/zathura-find-libm.patch | 26 ++++++++++++++++++++++++++ app-text/zathura/zathura-0.4.1.ebuild | 2 ++ 2 files changed, 28 insertions(+) diff --git a/app-text/zathura/files/zathura-find-libm.patch b/app-text/zathura/files/zathura-find-libm.patch new file mode 100644 index 00000000000..4995238fb8d --- /dev/null +++ b/app-text/zathura/files/zathura-find-libm.patch @@ -0,0 +1,26 @@ +From cc99b8d3491ce0cd30ba56decc33d811478bab0c Mon Sep 17 00:00:00 2001 +From: Sebastian Ramacher +Date: Tue, 30 Oct 2018 00:39:19 +0100 +Subject: [PATCH] Search for m instead of libm (fixes #757) + +Thanks to Franz Trischberger for the fix. +--- + meson.build | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/meson.build b/meson.build +index f54f104..afe9ae8 100644 +--- a/meson.build ++++ b/meson.build +@@ -36,7 +36,7 @@ dbusinterfacesdir = join_paths(datadir, 'dbus-1', 'interfaces') + plugindir = join_paths(get_option('libdir'), 'zathura') + + # required dependencies +-libm = cc.find_library('libm', required: false) ++libm = cc.find_library('m', required: false) + girara = dependency('girara-gtk3', version: '>=0.2.9') + glib = dependency('glib-2.0', version: '>=2.50') + gio = dependency('gio-unix-2.0', required: host_machine.system() != 'windows') +-- +2.18.0 + diff --git a/app-text/zathura/zathura-0.4.1.ebuild b/app-text/zathura/zathura-0.4.1.ebuild index 1b9071f73e7..446cef59dfa 100644 --- a/app-text/zathura/zathura-0.4.1.ebuild +++ b/app-text/zathura/zathura-0.4.1.ebuild @@ -21,6 +21,8 @@ LICENSE="ZLIB" SLOT="0" IUSE="+magic seccomp sqlite synctex test" +PATCHES=( "${FILESDIR}"/${PN}-find-libm.patch ) + RDEPEND="dev-libs/appstream >=dev-libs/girara-0.3.1 >=dev-libs/glib-2.50:2