blob: 616f124626c48b3ad9bcef76bb2fbff530942537 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit vdr-plugin-2
GIT_VERSION="c810abffbf6dc6f1f354b0c545abe65311203fd8"
DESCRIPTION="VDR plugin: control a horz. or vert. actuator attached through the parallel port"
HOMEPAGE="https://ventoso.org/luca/vdr/"
SRC_URI="https://github.com/olivluca/vdr-actuator-plugin/archive/${GIT_VERSION}.tar.gz -> ${PF}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
DEPEND=">=media-video/vdr-2.4"
S="${WORKDIR}/${PN}-plugin-${GIT_VERSION}"
src_prepare() {
vdr-plugin-2_src_prepare
fix_vdr_libsi_include "${S}/scanfilter.h"
fix_vdr_libsi_include "${S}/scanfilter.c"
}
|