blob: 54b0c67b4cf3eb94a4f795ef37bfa5f3a7f08b0b (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-graphtft/vdr-graphtft-0.2.2-r1.ebuild,v 1.6 2010/09/26 16:36:36 hd_brummy Exp $
EAPI="2"
inherit vdr-plugin
DESCRIPTION="VDR plugin: GraphTFT"
HOMEPAGE="http://www.vdr-wiki.de/wiki/index.php/Graphtft-plugin"
SRC_URI="http://www.jwendel.de/vdr/${P}.tar.bz2
http://www.jwendel.de/vdr/DeepBlue-horchi-0.0.11.tar.bz2"
KEYWORDS="~x86 ~amd64"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
IUSE="directfb graphtft-fe imagemagick"
DEPEND=">=media-video/vdr-1.6.0_p2-r1[graphtft]
media-libs/imlib2[png,jpeg]
imagemagick? ( media-gfx/imagemagick[png] )
gnome-base/libgtop
>=media-video/ffmpeg-0.4.8_p20090201
directfb? ( dev-libs/DirectFB )
graphtft-fe? ( x11-libs/qt-gui:4
media-libs/imlib2[png,jpeg,X] )"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}_gentoo.diff"
"${FILESDIR}/${P}-gcc44.patch"
"${FILESDIR}/${P}-glibc210.patch"
"${FILESDIR}/${P}-avutil50.patch" )
extpatch_v_check() {
EXTPATCH_V="`cat /var/db/pkg/media-video/vdr-*/vdr-*.ebuild | grep EXT_V | head -n 1 | cut -c8-9`"
if [ "${EXTPATCH_V}" -lt "65" ]; then
echo
eerror "You need an update of vdr with a newer EXTENSIONSPATCH version!"
eerror "minimal version of Extensionspatch = 65!"
eerror "graphtft will not work fullfilled"
echo
fi
}
pkg_setup() {
vdr-plugin_pkg_setup
extpatch_v_check
}
src_unpack() {
vdr-plugin_src_unpack
rm -r "${S}"/documents/CVS
}
src_prepare() {
sed -i Makefile -e "s: WITH_X_COMM = 1:#WITH_X_COMM = 1:"
use graphtft-fe && sed -e Makefile \
-i "s:#WITH_X_COMM:WITH_X_COMM:"
vdr-plugin_src_prepare
sed -i "${S}"/imlibrenderer/fbrenderer/fbrenderer.c \
-i "${S}"/imlibrenderer/dvbrenderer/mpeg2encoder.c \
-i "${S}"/imlibrenderer/fbrenderer/mpeg2decoder.c \
-i "${S}"/imlibrenderer/fbrenderer/mpeg2decoder.h \
-e "s:ffmpeg/avcodec.h:libavcodec/avcodec.h:"
sed -i "${S}"/imlibrenderer/fbrenderer/mpeg2decoder.c \
-i "${S}"/imlibrenderer/dvbrenderer/mpeg2encoder.c \
-e "s:ffmpeg/swscale.h:libswscale/swscale.h:"
}
src_compile() {
vdr-plugin_src_compile
if use graphtft-fe; then
cd "${S}"/graphtft-fe
sed -i build.sh -e "s:qmake-qt4:qmake:"
./clean.sh
./build.sh || die "build.sh failed"
fi
}
src_install() {
vdr-plugin_src_install
insinto /usr/share/vdr/graphTFT/themes/DeepBlue/
doins -r "${WORKDIR}"/DeepBlue/*
dodoc "${S}"/documents/*
if use graphtft-fe; then
cd "${S}"/graphtft-fe && dobin graphtft-fe
doinit graphtft-fe
fi
}
pkg_postinst() {
vdr-plugin_pkg_postinst
if use graphtft-fe; then
echo
elog "Graphtft-fe user:"
elog "Edit /etc/conf.d/vdr.graphtft"
elog "/etc/init.d/graphtft-fe start"
echo
fi
}
|