29 lines
708 B
Bash
29 lines
708 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit vdr-plugin-2
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/jasmin-j/vdr-plugin-${VDRPLUGIN}.git"
|
|
KEYWORDS=""
|
|
S="${WORKDIR}/${P}"
|
|
else
|
|
SRC_URI="https://github.com/jasmin-j/vdr-plugin-${VDRPLUGIN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
S="${WORKDIR}/vdr-plugin-${VDRPLUGIN}-${PV}"
|
|
fi
|
|
|
|
DESCRIPTION="VDR plugin: DDCI2 - Digital Devices CI support"
|
|
HOMEPAGE="https://github.com/jasmin-j/vdr-plugin-ddci2"
|
|
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
IUSE=""
|
|
|
|
DEPEND=">=media-video/vdr-2.1.7"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
DOCS="COPYING HISTORY README"
|