blob: 682ab627786b5169b444a50653bcfd73e3ddd1e3 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-extrecmenu/vdr-extrecmenu-1.1.ebuild,v 1.1 2007/10/22 19:23:42 zzam Exp $
inherit vdr-plugin eutils
S=${WORKDIR}/${VDRPLUGIN}-${PV}
DESCRIPTION="Video Disk Recorder - Extended recordings menu Plugin"
HOMEPAGE="http://martins-kabuff.de/extrecmenu.html"
SRC_URI="http://martins-kabuff.de/download/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=media-video/vdr-1.3.7"
src_unpack() {
vdr-plugin_src_unpack
if grep -q fskProtection /usr/include/vdr/timers.h; then
sed -i "s:#WITHPINPLUGIN:WITHPINPLUGIN:" Makefile
fi
}
|