commit: 4dc7071ad1c35e489e57cff37a7fe49d031acefa Author: Craig Andrews <candrews <AT> integralblue <DOT> com> AuthorDate: Tue Jun 6 16:23:33 2017 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Jun 17 19:38:44 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dc7071a
media-plugins/kodi-vfs-sacd: SACD VFS addon for Kodi Adds support for playing SACD to Kodi. Closes: https://github.com/gentoo/gentoo/pull/4874 Package-Manager: Portage-2.3.6, Repoman-2.3.2 .../kodi-vfs-sacd/kodi-vfs-sacd-9999.ebuild | 33 ++++++++++++++++++++++ media-plugins/kodi-vfs-sacd/metadata.xml | 16 +++++++++++ 2 files changed, 49 insertions(+) diff --git a/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-9999.ebuild b/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-9999.ebuild new file mode 100644 index 00000000000..fee0c837892 --- /dev/null +++ b/media-plugins/kodi-vfs-sacd/kodi-vfs-sacd-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils kodi-addon + +DESCRIPTION="SACD VFS addon for Kodi" +HOMEPAGE="https://github.com/notspiff/vfs.sacd" +SRC_URI="" + +case ${PV} in +9999) + SRC_URI="" + EGIT_REPO_URI="git://github.com/notspiff/vfs.sacd.git" + inherit git-r3 + ;; +*) + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/notspiff/vfs.sacd/archive/v${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/vfs.sacd-${PV}" + ;; +esac + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND=" + =dev-libs/libplatform-2* + =media-libs/kodi-platform-9999 + =media-tv/kodi-9999 + " diff --git a/media-plugins/kodi-vfs-sacd/metadata.xml b/media-plugins/kodi-vfs-sacd/metadata.xml new file mode 100644 index 00000000000..a524e95a884 --- /dev/null +++ b/media-plugins/kodi-vfs-sacd/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Craig Andrews</name> + </maintainer> + <maintainer type="project"> + <email>[email protected]</email> + <name>Proxy Maintainers</name> + </maintainer> + <longdescription>SACD VFS addon for Kodi</longdescription> + <upstream> + <remote-id type="github">notspiff/vfs.sacd</remote-id> + </upstream> +</pkgmetadata>
