blob: cf77d84318e13deefce4001403effe552912de6c (
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
44
45
46
47
48
49
50
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-epgsearch/vdr-epgsearch-0.9.19.ebuild,v 1.1 2006/11/03 23:04:20 zzam Exp $
inherit vdr-plugin
DESCRIPTION="Video Disk Recorder epgsearch plugin"
HOMEPAGE="http://www.cwieninger.de.vu/html/vdr-epg-search.html"
SRC_URI="http://people.freenet.de/cwieninger/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=media-video/vdr-1.3.45"
src_unpack() {
vdr-plugin_src_unpack
cd ${S}
fix_vdr_libsi_include conflictcheck.c
}
src_install() {
vdr-plugin_src_install
diropts "-m755 -o vdr -g vdr"
keepdir /etc/vdr/plugins/epgsearch
cd ${S}
emake install-doc MANDIR="${D}/usr/share/man"
dodoc MANUAL
}
pkg_postinst() {
vdr-plugin_pkg_postinst
if has_version "<media-plugins/vdr-epgsearch-0.9.18"; then
einfo "Moving config-files to new location /etc/vdr/plugins/epgsearch"
cd ${ROOT}/etc/vdr/plugins
local f
local moved=""
for f in epgsearch*.* .epgsearch*; do
[[ -e ${f} ]] || continue
mv "${f}" "${ROOT}/etc/vdr/plugins/epgsearch"
moved="${moved} ${f}"
done
einfo "These files were moved:${moved}"
fi
}
|