33 lines
718 B
Bash
33 lines
718 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit git-2 cmake-utils
|
|
|
|
EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.hts"
|
|
EGIT_BRANCH="Jarvis"
|
|
|
|
DESCRIPTION="Tvheadend Live TV and Radio PVR client addon for Kodi"
|
|
HOMEPAGE="https://github.com/kodi-pvr/pvr.hts"
|
|
SRC_URI=""
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE=""
|
|
|
|
# libplatform changed in version 2 from platform to p8-platform which makes it incompatible
|
|
DEPEND="=dev-libs/libplatform-1*
|
|
=media-libs/kodi-platform-16*
|
|
=media-tv/kodi-16*"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DCMAKE_INSTALL_LIBDIR="${EPREFIX}"/usr/lib/kodi
|
|
)
|
|
|
|
cmake-utils_src_configure
|
|
}
|