From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-830284-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 35176139897
	for <garchives@archives.gentoo.org>; Tue, 25 Aug 2015 16:45:22 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 0E979141E5;
	Tue, 25 Aug 2015 16:45:20 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 85CA0141E9
	for <gentoo-commits@lists.gentoo.org>; Tue, 25 Aug 2015 16:45:19 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 859943409DB
	for <gentoo-commits@lists.gentoo.org>; Tue, 25 Aug 2015 16:45:18 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 22F88155
	for <gentoo-commits@lists.gentoo.org>; Tue, 25 Aug 2015 16:45:17 +0000 (UTC)
From: "Mike Frysinger" <vapier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" <vapier@gentoo.org>
Message-ID: <1440521107.ebdf4c2950f6b8eb2c1e4601d44acf5764878db9.vapier@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-tv/kodi/kodi-9999.ebuild
X-VCS-Directories: media-tv/kodi/
X-VCS-Committer: vapier
X-VCS-Committer-Name: Mike Frysinger
X-VCS-Revision: ebdf4c2950f6b8eb2c1e4601d44acf5764878db9
X-VCS-Branch: master
Date: Tue, 25 Aug 2015 16:45:17 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: ab659970-f40e-40a5-9609-f045dbfbe253
X-Archives-Hash: 1bac37d2ddeac052100ebda53f378757

commit:     ebdf4c2950f6b8eb2c1e4601d44acf5764878db9
Author:     hal <laservader <AT> gmx <DOT> net>
AuthorDate: Tue Aug 25 16:44:12 2015 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Tue Aug 25 16:45:07 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebdf4c29

media-tv/kodi: add kernel config checks #544020

 media-tv/kodi/kodi-9999.ebuild | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/media-tv/kodi/kodi-9999.ebuild b/media-tv/kodi/kodi-9999.ebuild
index 097cfe9..ae8f8bf 100644
--- a/media-tv/kodi/kodi-9999.ebuild
+++ b/media-tv/kodi/kodi-9999.ebuild
@@ -9,7 +9,7 @@ EAPI="5"
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="sqlite"
 
-inherit eutils python-single-r1 multiprocessing autotools
+inherit eutils linux-info python-single-r1 multiprocessing autotools
 
 CODENAME="Helix"
 case ${PV} in
@@ -134,7 +134,14 @@ DEPEND="${COMMON_DEPEND}
 # generated addons package.  #488118
 [[ ${PV} == "9999" ]] && DEPEND+=" virtual/jre"
 
+CONFIG_CHECK="~IP_MULTICAST"
+ERROR_IP_MULTICAST="
+In some cases Kodi needs to access multicast addresses.
+Please consider enabling IP_MULTICAST under Networking options.
+"
+
 pkg_setup() {
+	check_extra_config
 	python-single-r1_pkg_setup
 }