blob: e27a5bd708f30273dfbbc354be19697f0310c644 (
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
36
37
38
39
40
41
42
43
|
# Copyright 2004-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-subtitles/vdr-subtitles-0.5.0.ebuild,v 1.5 2008/04/29 11:31:12 zzam Exp $
inherit vdr-plugin eutils
IUSE=""
DESCRIPTION="VDR Plugin: Decode and display DVB subtitles"
HOMEPAGE="http://virtanen.org/vdr/subtitles/"
SRC_URI="http://virtanen.org/vdr/subtitles/files/${P}.tgz
http://www.saunalahti.fi/~rahrenbe/vdr/patches/${P}-purkkapaikka.diff.gz
mirror://vdrfiles/${PN}/${P}.tgz"
KEYWORDS="~amd64 x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND=">=media-video/vdr-1.3.7"
pkg_setup() {
if has_version ">=media-video/vdr-1.6.0"; then
eerror "Plugin not needed up from vdr-1.6.0"
die "Plugin not needed up from vdr-1.6.0"
fi
if [[ ! -f /usr/include/vdr/dvbsub.h ]]; then
eerror "please compile VDR with USE=\"subtitles\""
die "can not compile packet without subtitles-support from vdr"
fi
vdr-plugin_pkg_setup
}
src_unpack() {
vdr-plugin_src_unpack unpack
cd "${S}"
if has_version ">=media-video/vdr-1.5.8"; then
epatch "${WORKDIR}/${P}-purkkapaikka.diff"
fi
fix_vdr_libsi_include subfilter.c
vdr-plugin_src_unpack all_but_unpack
}
|