blob: 991f5c833f6c0f3a771c7d2a447c26c2cb46d8c0 (
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
28
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-remote/vdr-remote-0.4.0-r2.ebuild,v 1.5 2012/05/06 19:31:39 hd_brummy Exp $
EAPI="4"
inherit linux-info vdr-plugin-2
DESCRIPTION="VDR Plugin: use various devices for controlling vdr (keyboards, lirc, remotes bundled with tv-cards)"
HOMEPAGE="http://www.escape-edv.de/endriss/vdr/"
SRC_URI="http://www.escape-edv.de/endriss/vdr/${P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=media-video/vdr-1.2.6"
RDEPEND="${DEPEND}"
src_prepare() {
if kernel_is ge 2 6 34 ; then
sed -i "${S}"/remote.c -e "/fh =/s:O_RDWR:O_WRONLY:"
fi
vdr-plugin-2_src_prepare
}
|