blob: 542b843d75cfeed3582ee8c9fe6bc58c1c135921 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-spider/vdr-spider-0.1.2.ebuild,v 1.3 2008/03/30 12:22:00 zzam Exp $
inherit vdr-plugin
DESCRIPTION="VDR plugin: Spider patience game"
HOMEPAGE="http://toms-cafe.de/vdr/spider/"
SRC_URI="http://toms-cafe.de/vdr/spider/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=media-video/vdr-1.3.47"
SPIDER_DATA_DIR="/usr/share/vdr/spider"
src_unpack() {
vdr-plugin_src_unpack
cd "${S}"
sed -i spider.c -e 's:ConfigDirectory(Name()):"'${SPIDER_DATA_DIR}'":'
}
src_install() {
vdr-plugin_src_install
insinto "${SPIDER_DATA_DIR}"
doins "${S}"/spider/*.xpm
}
|