blob: 0e8dc122f82fc6df4ea282fe094032eb19d9411e (
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-2008 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.3 2008/04/28 08:55:14 zzam 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
}
|