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 4EB181382C5 for ; Wed, 4 Apr 2018 23:04:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 753C7E0B11; Wed, 4 Apr 2018 23:04:30 +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 4FD79E0B11 for ; Wed, 4 Apr 2018 23:04: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 3B01E335C59 for ; Wed, 4 Apr 2018 23:04:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7321127E for ; Wed, 4 Apr 2018 23:04:26 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1522882979.e72a525503c4714cb04624df5d320971ff0c45cd.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/spacefm/files/, x11-misc/spacefm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/spacefm/files/spacefm-9999-include-sysmacros.patch x11-misc/spacefm/spacefm-9999.ebuild X-VCS-Directories: x11-misc/spacefm/ x11-misc/spacefm/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e72a525503c4714cb04624df5d320971ff0c45cd X-VCS-Branch: master Date: Wed, 4 Apr 2018 23:04:26 +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: 862273b2-4f97-4ff8-ada1-4ff1d1469d42 X-Archives-Hash: 14637b0eaa881c7fc67f34d3813c3e08 commit: e72a525503c4714cb04624df5d320971ff0c45cd Author: Marty E. Plummer startmail com> AuthorDate: Wed Apr 4 01:30:37 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Apr 4 23:02:59 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e72a5255 x11-misc/spacefm: fixed compilation Similar bug as #603000, just needed to adjust the patch. Package-Manager: Portage-2.3.27, Repoman-2.3.9 x11-misc/spacefm/files/spacefm-9999-include-sysmacros.patch | 11 +++++++++++ x11-misc/spacefm/spacefm-9999.ebuild | 4 ++++ 2 files changed, 15 insertions(+) diff --git a/x11-misc/spacefm/files/spacefm-9999-include-sysmacros.patch b/x11-misc/spacefm/files/spacefm-9999-include-sysmacros.patch new file mode 100644 index 00000000000..3a586bba439 --- /dev/null +++ b/x11-misc/spacefm/files/spacefm-9999-include-sysmacros.patch @@ -0,0 +1,11 @@ +--- a/src/main.c ++++ b/src/main.c +@@ -30,6 +30,8 @@ + + #include + ++#include /* for major/minor, dev_t */ ++ + #include "main-window.h" + + #include "vfs-file-info.h" diff --git a/x11-misc/spacefm/spacefm-9999.ebuild b/x11-misc/spacefm/spacefm-9999.ebuild index 4bc9c19d81a..fefb9fc512a 100644 --- a/x11-misc/spacefm/spacefm-9999.ebuild +++ b/x11-misc/spacefm/spacefm-9999.ebuild @@ -38,6 +38,10 @@ DEPEND="${RDEPEND} virtual/pkgconfig sys-devel/gettext" +PATCHES=( + "${FILESDIR}"/${PN}-9999-include-sysmacros.patch +) + src_configure() { econf \ --htmldir=/usr/share/doc/${PF}/html \