blob: 21af12f7a823a104af625c857a5a5a3feb631537 (
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
29
30
31
32
33
34
35
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-premiereepg/vdr-premiereepg-0.0.6-r1.ebuild,v 1.2 2006/11/02 09:22:40 zzam Exp $
inherit vdr-plugin eutils
DESCRIPTION="VDR Plugin: The plugin parses the extended EPG data which is send by Premiere on their portal channels"
HOMEPAGE="http://www.muempf.de/index.html"
SRC_URI="http://www.muempf.de/down/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
# This plugin uses the libsi-code fixed in v1.4.0-3
DEPEND=">=media-video/vdr-1.4.1"
RDEPEND="${DEPEND}"
PATCHES="${FILESDIR}/${P}-fix-epg.patch"
src_unpack() {
vdr-plugin_src_unpack
cd ${S}
fix_vdr_libsi_include premiereepg.c
}
pkg_postinst() {
vdr-plugin_pkg_postinst
ewarn "You should delete your existing /var/vdr/video/epg.data,"
ewarn "as the Handling of event-IDs has been changed in this release."
}
|