blob: 73bbfa31ec17525eac874918fa77f68692fd4e4c (
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.17-r1.ebuild,v 1.3 2005/05/28 00:20:46 carlo Exp $
inherit myth flag-o-matic eutils toolchain-funcs
DESCRIPTION="Homebrew PVR project"
HOMEPAGE="http://www.mythtv.org/"
SRC_URI="http://www.mythtv.org/mc/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE="alsa arts dvb lcd lirc nvidia cle266 opengl xv mmx" # ieee1394"
DEPEND=">=media-libs/freetype-2.0
>=media-sound/lame-3.93.1
>=x11-libs/qt-3.1
dev-db/mysql
alsa? ( >=media-libs/alsa-lib-0.9 )
>=sys-apps/sed-4
arts? ( kde-base/arts )
dvb? ( media-libs/libdvb )
lcd? ( app-misc/lcdproc )
lirc? ( app-misc/lirc )
nvidia? ( media-video/nvidia-glx )
|| ( >=net-misc/wget-1.9.1 >=media-tv/xmltv-0.5.34 )"
# ieee1394? ( sys-libs/libraw1394 )
RDEPEND="${DEPEND}
!media-tv/mythfrontend"
pkg_setup() {
local qt_use="$(</var/db/pkg/`best_version x11-libs/qt`/USE)"
if ! has mysql ${qt_use} ; then
eerror "Qt is missing MySQL support. Please add"
eerror "'mysql' to your USE flags, and re-emerge Qt."
die "Qt needs MySQL support"
fi
if use nvidia; then
echo
ewarn "You enabled the 'nvidia' USE flag, you must have a GeForce 4 or"
ewarn "greater to use this. Otherwise, you'll have crashes with MythTV"
echo
fi
}
setup_pro() {
if [ "${ARCH}" == "amd64" ] || ! use mmx; then
sed -e "s:DEFINES += MMX:DEFINES -= MMX:" \
-i 'settings.pro' || "Removal of MMX failed"
fi
if ! use xv ; then
sed -e 's:CONFIG += using_xv:#CONFIG += using_xv:' \
-e 's:EXTRA_LIBS += -L/usr/X11R6/lib:#EXTRA_LIBS += -L/usr/X11R6/lib:' \
-i 'settings.pro' || die "disable xv failed"
fi
if use lcd ; then
sed -e 's:#DEFINES += LCD_DEVICE:DEFINES += LCD_DEVICE:' \
-i 'settings.pro' || die "enable lcd sed failed"
fi
if use alsa ; then
sed -e 's:#CONFIG += using_alsa:CONFIG += using_alsa:' \
-e 's:#ALSA_LIBS = -lasound:ALSA_LIBS = -lasound:' \
-i 'settings.pro' || die "enable alsa sed failed"
fi
if use arts ; then
sed -e 's:artsc/artsc.h:artsc.h:' \
-i "libs/libmyth/audiooutputarts.h" || die "sed failed"
sed -e 's:#CONFIG += using_arts:CONFIG += using_arts:' \
-e 's:#ARTS_LIBS = .*:ARTS_LIBS = `artsc-config --libs`:' \
-e 's:#EXTRA_LIBS += -L/opt/.*:EXTRA_LIBS += `artsc-config --libs`:' \
-e 's:#INCLUDEPATH += /opt/.*:QMAKE_CXXFLAGS += `artsc-config --cflags`:' \
-i 'settings.pro' || die "enable arts sed failed"
fi
if use dvb ; then
sed -e 's:#CONFIG += using_dvb:CONFIG += using_dvb:' \
-e 's:#DEFINES += USING_DVB:DEFINES += USING_DVB:' \
-e 's:#INCLUDEPATH += /usr/src/.*:INCLUDEPATH += /usr/include/linux/dvb:' \
-i 'settings.pro' || die "enable dvb sed failed"
fi
if use lirc ; then
sed -e 's:#CONFIG += using_lirc:CONFIG += using_lirc:' \
-e 's:#LIRC_LIBS = -llirc_client:LIRC_LIBS = -llirc_client:' \
-i 'settings.pro' || die "enable lirc sed failed"
fi
if use nvidia ; then
sed -e 's:#CONFIG += using_xvmc:CONFIG += using_xvmc:' \
-e 's:#DEFINES += USING_XVMC:DEFINES += USING_XVMC:' \
-e 's:#EXTRA_LIBS += -lXvMCNVIDIA:EXTRA_LIBS += -lXvMCNVIDIA:' \
-i 'settings.pro' || die "enable nvidia xvmc sed failed"
fi
if use nvidia && use cle266; then
die "You can not have USE="cle266" and USE="nvidia" at the same time. Must disable one or the other."
fi
if use cle266 ; then
sed -e 's:#CONFIG += using_xvmc using_xvmc_vld:CONFIG += using_xvmc using_xvmc_vld:' \
-e 's:#DEFINES += USING_XVMC USING_XVMC_VLD:DEFINES += USING_XVMC USING_XVMC_VLD:' \
-e 's:#EXTRA_LIBS += -lviaXvMC -lXvMC:EXTRA_LIBS += -lviaXvMC -lXvMC:' \
-i 'settings.pro' || die "enable cle266 sed failed"
fi
if ! use cle266 ; then # needed because nvidia and cle266 are not compatible
sed -e 's:CONFIG += using_xvmc using_xvmc_vld:#CONFIG += using_xvmc using_xvmc_vld:' \
-e 's:DEFINES += USING_XVMC USING_XVMC_VLD:#DEFINES += USING_XVMC USING_XVMC_VLD:' \
-e 's:EXTRA_LIBS += -lviaXvMC -lXvMC:#EXTRA_LIBS += -lviaXvMC -lXvMC:' \
-i 'settings.pro' || die "disable VLD XvMC sed failed"
fi
# if use ieee1394 ; then
# sed -e 's:#CONFIG += using_firewire:CONFIG += using_firewire:' \
# -e 's:#DEFINES += USING_FIREWIRE:DEFINES += USING_FIREWIRE:' \
# -e 's:#EXTRA_LIBS += -lraw1394 -liec61883:EXTRA_LIBS += -lraw1394 -liec61883:' \
# -i 'settings.pro' || die "failed to enable firewire support"
# fi
if use opengl ; then
sed -e 's:#DEFINES += USING_OPENGL_VSYNC:DEFINES += USING_OPENGL_VSYNC:' \
-e 's:#EXTRA_LIBS += -lGL:EXTRA_LIBS += -lGL:' \
-e 's:#CONFIG += using_opengl:CONFIG += using_opengl:' \
-i 'settings.pro' || die "enable opengl sed failed"
fi
#Gentoo X ebuilds always have XrandrX
sed -e 's:#CONFIG += using_xrandr:CONFIG += using_xrandr:' \
-e 's:#DEFINES += USING_XRANDR:DEFINES += USING_XRANDR:' \
-i 'settings.pro' || die "enable xrandr sed failed"
}
src_unpack() {
if use cle266; then
ewarn "If you have a VIA ITX board with XvMC VLD on it... you need to pull the sources for this stuff yourself"
ewarn "and install it yourself before continuing. It is currently not packaged up and requires drm patches to Xorg"
ewarn "these patches are not in the xorg-x11. http://bugs.gentoo.org/show_bug.cgi?id=82125"
sleep 5
fi
# if use ieee1394; then
# ewarn "The required libraries to use firewire support are only available via Subversion. They are not stable enough to"
# ewarn "be packaged up in Portage. This is only here as a courtesy for users that use it and have installed the libraries"
# ewarn "themselves manually. http://bugs.gentoo.org/show_bug.cgi?id=81767"
# sleep 5
# fi
# Fix bugs 40964 and 42943.
filter-flags -fforce-addr -fPIC
# fix bug 67832, 81610, etc
is-flag "-march=pentium4" && replace-flags "-O3" "-O2"
is-flag "-march=pentium4" && replace-flags "-0s" "-O2"
is-flag "-march=athlon-xp" && replace-flags "-O3" "-O2"
myth_src_unpack || die "unpack failed"
cd ${S}
# Fix bug with daylight savings time
epatch ${FILESDIR}/mythtv-0.17-qt334-dst-fix.patch
}
src_compile() {
export QMAKESPEC="linux-g++"
econf || die
sed -i -e "s:OPTFLAGS=.*:OPTFLAGS=${CFLAGS}:g" config.mak
qmake -o "Makefile" "${PN}.pro"
make qmake || die
emake -C libs/libavcodec CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
emake -C libs/libavformat CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
emake -C libs/libmythsamplerate CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
emake -C libs/libmythsoundtouch CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
emake -C libs/libmythmpeg2 CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
emake -C libs/libmyth CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
emake -C libs/libmythtv CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
emake -C libs CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
}
src_install() {
myth_src_install || die "install failed"
newbin "setup/setup" "mythsetup"
insinto /usr/share/mythtv/database
doins database/*
exeinto /usr/share/mythtv
doexe "${FILESDIR}/mythfilldatabase.cron"
exeinto /etc/init.d
newexe "${FILESDIR}/mythbackend.rc6" mythbackend
insinto /etc/conf.d
newins "${FILESDIR}/mythbackend.conf" mythbackend
dodoc keys.txt docs/*.{txt,pdf}
dohtml docs/*.html
keepdir /var/{log,run}/mythtv
}
|