35 lines
666 B
Bash
35 lines
666 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
|
|
inherit vdr-plugin-2 git-2
|
|
|
|
EGIT_REPO_URI="git://github.com/pipelka/vdr-plugin-xvdr.git"
|
|
|
|
DESCRIPTION="VDR plugin: XVDR Streamserver Plugin"
|
|
HOMEPAGE="https://github.com/pipelka/vdr-plugin-xvdr"
|
|
SRC_URI=""
|
|
KEYWORDS=""
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
DEPEND=">=media-video/vdr-1.6"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S=${WORKDIR}/${PN}-plugin
|
|
|
|
src_prepare() {
|
|
vdr-plugin-2_src_prepare
|
|
|
|
fix_vdr_libsi_include "${S}"/src/live/livepatfilter.h
|
|
}
|
|
|
|
src_install() {
|
|
vdr-plugin-2_src_install
|
|
|
|
insinto /etc/vdr/plugins/xvdr
|
|
doins xvdr/*.conf
|
|
diropts -gvdr -ovdr
|
|
}
|