blob: 7a81f7814c2cfcefb59d9e18ee62e5e021553fa4 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-solitaire/vdr-solitaire-0.0.2.ebuild,v 1.2 2007/07/10 23:09:00 mr_bones_ Exp $
inherit vdr-plugin
DESCRIPTION="VDR plugin: Solitaire game"
HOMEPAGE="http://www.djdagobert.com/vdr/solitaire/index.html"
SRC_URI="http://www.djdagobert.com/vdr/solitaire/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=media-video/vdr-1.3.25"
PATCHES="${FILESDIR}/${P}.patch
${FILESDIR}/${P}-vdr-1.5.5.diff"
SOLITAIRE_DATA_DIR="/usr/share/vdr/solitaire"
src_unpack() {
vdr-plugin_src_unpack
cd ${S}
sed -i cards.c cursor.c \
-e 's#cPlugin::ConfigDirectory("solitaire")#"'${SOLITAIRE_DATA_DIR}'"#'
}
src_install() {
vdr-plugin_src_install
insinto "${SOLITAIRE_DATA_DIR}"
doins "${S}"/solitaire/*.xpm
}
|