kodi-pvr-mythtv-4.14.1.ebuild 640 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Copyright 1999-2017 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=6
  4. inherit cmake-utils kodi-addon
  5. DESCRIPTION="MythTV PVR for Kodi"
  6. HOMEPAGE="https://github.com/janbar/pvr.mythtv"
  7. SRC_URI=""
  8. case ${PV} in
  9. 9999)
  10. SRC_URI=""
  11. EGIT_REPO_URI="git://github.com/janbar/pvr.mythtv.git"
  12. inherit git-r3
  13. ;;
  14. *)
  15. KEYWORDS="~amd64 ~x86"
  16. SRC_URI="https://github.com/janbar/pvr.mythtv/archive/${PV}.tar.gz -> ${P}.tar.gz"
  17. S="${WORKDIR}/pvr.mythtv-${PV}"
  18. ;;
  19. esac
  20. LICENSE="GPL-2"
  21. SLOT="0"
  22. IUSE=""
  23. DEPEND="
  24. sys-libs/zlib
  25. =media-tv/kodi-17*
  26. =media-libs/kodi-platform-17*
  27. "
  28. RDEPEND="
  29. ${DEPEND}
  30. "