/[packages]/cauldron/xbmc/current/SPECS/xbmc.spec
ViewVC logotype

Contents of /cauldron/xbmc/current/SPECS/xbmc.spec

Parent Directory Parent Directory | Revision Log Revision Log


Revision 132032 - (show annotations) (download)
Sat Aug 6 08:00:52 2011 UTC (12 years, 8 months ago) by fwang
File size: 18475 byte(s)
add some upstream patches to build with latest ffmpeg
1
2 %define name xbmc
3 %define branch_release dharma
4 %define extra_feature pvr
5 %define version 10.1
6 %define snap 0
7 %define rel 3
8
9 %if %snap
10 %define branch %branch_release.%extra_feature
11 %else
12 %define branch %extra_feature
13 %endif
14
15 %define branchr %([ "%branch" ] && echo .%branch | tr - _)
16
17 # There are some compatibility issues with the various python addons which
18 # are mostly tested against bundled python only, and there are too many of
19 # them to be checked out and fixed by us for system python compatibility.
20 # Additional issues are caused by the bundled python having several system
21 # calls redirected through xbmc VFS layer, which doesn't currently work when
22 # using the system python. Usage of system python can probably be safely
23 # re-enabled when XBMC upstream migrates away from python 2.4 and fixes the
24 # issues regarding external python (this is planned). -Anssi 11/2010
25 %define system_python 0
26
27 # using system python2.7+ reportedly causes problems with
28 # getcwd() and chdir() calls from python
29 # http://trac.xbmc.org/ticket/8658
30 %define system_python 0
31
32 Summary: XBMC Media Center - media player and home entertainment system
33 Name: %{name}
34 Version: %{version}
35 %if %snap
36 Release: %mkrel 0.svn%snap%branchr.%rel
37 # REV=$(git log -1 origin/Dharma | grep git-svn-id | sed -ne 's,^.*@\([^ ]\+\).*$,\1,p')
38 # git archive --prefix=xbmc-dharma-$REV/ origin/Dharma | xz > xbmc-dharma-$REV.tar.xz
39 Source: %{name}-%branch_release-%snap.tar.xz
40 %else
41 Release: %mkrel 1.%branch.%rel
42 Source: %{name}-%{version}.tar.gz
43 %endif
44 URL: http://xbmc.org/
45
46 # needed modules when using bundled python (versions are those expected by the Makefiles):
47 Source11: http://www.effbot.org/downloads/Imaging-1.1.7.tar.gz
48 Source12: http://pysqlite.googlecode.com/files/pysqlite-2.5.6.tar.gz
49
50 # bring snapshot up-to-date with pvr branch
51 # https://github.com/opdenkamp/xbmc/tree/Dharma-pvr
52 Patch0: xbmc-10.0-opdenkamp-pvr-fdb057b7754.patch
53
54 # bring snapshot up-to-date with main branch (patches rediffed for pvr):
55 # already up-to-date
56 #Patch18: xbmc-dharma-r35305-r%svnsnap.patch
57
58 # VDPAU backports from upstream master
59 Patch31: 0001-changed-split-CDVDVideoCodecFFmpeg-GetPicture.patch
60 Patch32: 0002-fixed-VDPAU-temporal-deinterlacer-was-not-provided-e.patch
61 Patch33: 0003-changed-allow-VDPAU-reverse-telecine-when-deinterlac.patch
62 Patch34: 0004-fixed-VDPAU-reverse-telecine.patch
63 Patch35: 0005-changed-enable-VDPAU-temporal-deinterlacer-when-temp.patch
64 Patch36: 0006-fixed-flush-VDPAU-video-surfaces-and-picture-queue-w.patch
65 Patch37: 0007-fixed-picture.iDuration-0-comparison.patch
66 Patch38: 0008-fixed-vdpau-needs-to-memset-its-DVDVideoPicture-stru.patch
67
68 # backports from upstream master
69 Patch40: 0001-added-note-in-linux-crashlog-if-gdb-is-not-installed.patch
70 Patch41: 0001-Added-9763-Fix-64-bit-WiiRemote-connection-issues-Th.patch
71
72 # adopt to new ffmpeg api (upstream patch)
73 Patch51: 773159bea90303826ad21e061e95793efddcff44.patch
74 Patch52: cd0ccf86d3868708cde37ee231d45df283027745.patch
75
76 # Disable updates of the default skin. Our one is the PVR version, while the
77 # one in the XBMC.org addon repository would be the vanilla one (Confluence
78 # is currently not in the addon repository, though, as of 2010-10).
79 Patch60: xbmc-disable-confluence-update.patch
80
81 # Workaround http://www.nvnews.net/vbulletin/showthread.php?t=156665
82 # by forcing SDL to use alsa when pulse is disabled and nvidia proprietary
83 # driver version 260.x.y older than 260.19.21 is active.
84 Patch61: 0001-added-workaround-for-crash-with-nonpulse-nvidia260.patch
85
86 # forkpty and openpty are in -lutil
87 Patch62: 0001-fixed-undefined-symbols-in-internal-python.patch
88
89 # Ensure backward-compatibility with pvr-testing2 and prevent future compatibility
90 # issues with trunk Addons database format
91 Patch63: 0001-changed-use-the-legacy-pvr-testing2-addon-database.patch
92
93 # Do not use avg_frame_rate for mkv files on 2010.1 and older, instead
94 # use time_base if needed (fixes MicroDVD subtitles with 23.976 H.264 mkv)
95 Patch65: xbmc-old-libavformat-mkv-subs.patch
96
97 # build faad support with internal headers, but do not build the
98 # internal library; use system lib with dlopen instead;
99 # this allows keeping it as an optional external library
100 Patch70: xbmc-hack-ext-faad-with-int-headers.patch
101
102 # CVE fixes for the internal python
103 Patch81: 0001-fixed-CVE-2007-2052-in-internal-python-Mandriva.patch
104 Patch82: 0002-fixed-CVE-2007-4965-in-internal-python-upstream.patch
105 Patch83: 0003-fixed-CVE-2008-1679-in-internal-python-upstream.patch
106 Patch84: 0004-fixed-CVE-2008-1887-in-internal-python-upstream.patch
107 Patch85: 0005-fixed-CVE-2008-1721-in-internal-python-upstream.patch
108 Patch86: 0006-fixed-CVE-2008-2315-in-internal-python-Gentoo.patch
109 Patch87: 0007-fixed-CVE-2008-3142-in-internal-python-Gentoo.patch
110 Patch88: 0008-fixed-CVE-2008-3144-in-internal-python-Gentoo.patch
111 Patch89: 0009-fixed-CVE-2008-4864-in-internal-python-Mandriva.patch
112 Patch90: 0010-fixed-CVE-2008-5031-in-internal-python-upstream.patch
113 Patch91: 0011-fixed-CVE-2010-1634-in-internal-python-Mandriva.patch
114 Patch92: 0012-fixed-CVE-2010-2089-in-internal-python-Mandriva.patch
115 Patch93: 0013-fixed-CVE-2009-2625-in-internal-python-Mandriva.patch
116 Patch94: 0014-fixed-CVE-2010-3492-in-internal-python-Mandriva.patch
117 Patch95: 0015-fixed-CVE-2010-3493-in-internal-python-Mandriva.patch
118
119
120 # nosefart audio plugin and RSXS-0.9 based screensavers are GPLv2 only
121 # libhts, libhdhomerun and several eventclients are GPLv3+
122 # the rest is GPLv2+
123 License: GPLv3+ and GPLv2+ and GPLv2
124 Group: Video
125 BuildRoot: %{_tmppath}/%{name}-root
126 BuildRequires: boost-devel
127 BuildRequires: ffmpeg-devel
128 BuildRequires: libmpeg2dec-devel
129 BuildRequires: libogg-devel
130 BuildRequires: libwavpack-devel
131 BuildRequires: python-devel
132 BuildRequires: glew-devel
133 BuildRequires: mesagl-devel
134 BuildRequires: mesaglu-devel
135 BuildRequires: libmad-devel
136 BuildRequires: libjpeg-devel
137 BuildRequires: libsamplerate-devel
138 BuildRequires: libvorbis-devel
139 BuildRequires: bzip2-devel
140 BuildRequires: mysql-devel
141 BuildRequires: liblzo2-devel
142 BuildRequires: zlib-devel
143 BuildRequires: openssl-devel
144 BuildRequires: fontconfig-devel
145 BuildRequires: fribidi-devel
146 BuildRequires: sqlite3-devel
147 BuildRequires: libpng-devel
148 BuildRequires: libpcre-devel
149 BuildRequires: libcdio-devel
150 BuildRequires: libmms-devel
151 BuildRequires: freetype2-devel
152 BuildRequires: libflac-devel
153 BuildRequires: libsmbclient-devel
154 BuildRequires: SDL_mixer-devel
155 BuildRequires: libjasper-devel
156 BuildRequires: libtiff-devel
157 BuildRequires: SDL_image-devel
158 BuildRequires: libalsa-devel
159 BuildRequires: enca-devel
160 BuildRequires: libxt-devel
161 BuildRequires: libxtst-devel
162 BuildRequires: libxmu-devel
163 BuildRequires: libxinerama-devel
164 BuildRequires: libcurl-devel
165 BuildRequires: dbus-devel
166 BuildRequires: hal-devel
167 BuildRequires: SDL-devel
168 BuildRequires: pulseaudio-devel
169 BuildRequires: avahi-common-devel
170 BuildRequires: avahi-client-devel
171 BuildRequires: libxrandr-devel
172 BuildRequires: vdpau-devel
173 BuildRequires: cwiid-devel
174 BuildRequires: libice-devel
175 BuildRequires: libx11-devel
176 BuildRequires: crystalhd-devel
177 BuildRequires: libmicrohttpd-devel
178 BuildRequires: libmodplug-devel
179 BuildRequires: ssh-devel
180 BuildRequires: libva-devel
181 BuildRequires: gettext-devel
182 BuildRequires: expat-devel
183 BuildRequires: libass-devel
184 BuildRequires: rtmp-devel
185 BuildRequires: bluray-devel
186 BuildRequires: bluez-devel
187 BuildRequires: cmake
188 BuildRequires: gperf
189 BuildRequires: zip
190 %ifarch %ix86
191 BuildRequires: nasm
192 %endif
193 %if !%system_python
194 # python-imaging
195 BuildRequires: lcms-devel
196 %endif
197 Requires: lsb-release
198 # dlopened (existence check required by rpm5 as it doesn't use stderr):
199 %define dlopenreq() %([ -e %{_libdir}/lib%{1}.so ] && rpm -qf --qf '%%{name}' $(readlink -f %{_libdir}/lib%{1}.so) 2>/dev/null || echo %{name})
200 Requires: %dlopenreq curl
201 Requires: %dlopenreq FLAC
202 Requires: %dlopenreq mad
203 Requires: %dlopenreq ogg
204 Requires: %dlopenreq vorbis
205 Requires: %dlopenreq vorbisenc
206 Requires: %dlopenreq vorbisfile
207 Requires: %dlopenreq modplug
208 Requires: %dlopenreq rtmp
209 # not nearly as common as the above, so just suggest instead for now:
210 Suggests: %dlopenreq bluray
211 Suggests: %dlopenreq crystalhd
212 # for FEH.py, to check current configuration is ok for xbmc:
213 Requires: xdpyinfo
214 Requires: glxinfo
215 # for FEH.py to allow it to give an error message (should be available already
216 # on most systems):
217 Requires: pygtk2
218 %if %system_python
219 # for xbmc python scripts:
220 Requires: python-imaging
221 Requires: python-sqlite2
222 %endif
223 # Packages not shipped by Mandriva:
224 Suggests: %{_lib}faad2_2
225 Suggests: %{_lib}lame0
226 Suggests: %{_lib}dca0
227 Suggests: %{_lib}dvdcss2
228
229 # Packages have been merged
230 Obsoletes: xbmc-core < 9.11-1.svn29468
231 Obsoletes: xbmc-skin-confluence < 9.11-1.svn29468
232 Obsoletes: xbmc-skin-pm3-hd < 9.11-1.svn29468
233 Obsoletes: xbmc-nosefart < 9.11-1.svn29468
234 Obsoletes: xbmc-screensavers-default < 9.11-1.svn29468
235 Obsoletes: xbmc-script-examples < 9.11-1.svn27796
236 Obsoletes: xbmc-web-pm3 < 9.11-1.svn27796
237
238 %description
239 XBMC is an award-winning free and open source software media player
240 and entertainment hub for digital media.
241
242 While XBMC functions very well as a standard media player application
243 for your computer, it has been designed to be the perfect companion
244 for your HTPC. Supporting an almost endless range of remote controls,
245 and combined with its beautiful interface and powerful skinning
246 engine, XBMC feels very natural to use from the couch and is the
247 ideal solution for your home theater.
248
249 This is the stable version of XBMC from the dharma release branch,
250 with PVR support added from opdenkamp Dharma-pvr branch. Support for
251 RAR files and XBMS protocol is not included due to license issues.
252
253 %package eventclients-common
254 Summary: Common files for XBMC eventclients
255 Group: Video
256 %py_requires
257
258 %description eventclients-common
259 XBMC is an award-winning free and open source software media player
260 and entertainment hub for digital media.
261
262 This package contains common files for eventclients.
263
264 %package eventclients-devel
265 Summary: Development files for XBMC eventclients
266 Group: Development/C
267
268 %description eventclients-devel
269 XBMC is an award-winning free and open source software media player
270 and entertainment hub for digital media.
271
272 This package contains files needed to build eventclients.
273
274 %package eventclient-wiiremote
275 Summary: Wii Remote eventclient for XBMC
276 Group: Video
277 Requires: %{name}-eventclients-common = %{version}-%{release}
278
279 %description eventclient-wiiremote
280 XBMC is an award-winning free and open source software media player
281 and entertainment hub for digital media.
282
283 This package contains the Wii Remote eventclient.
284
285 %package eventclient-j2me
286 Summary: J2ME eventclient for XBMC
287 Group: Video
288 Requires: python-pybluez
289 Requires: %{name}-eventclients-common = %{version}-%{release}
290
291 %description eventclient-j2me
292 XBMC is an award-winning free and open source software media player
293 and entertainment hub for digital media.
294
295 This package contains the J2ME eventclient, providing a bluetooth
296 server that can communicate with a mobile tool supporting J2ME.
297
298 %package eventclient-ps3
299 Summary: PS3 eventclients for XBMC
300 Group: Video
301 Requires: python-pybluez
302 Requires: %{name}-eventclients-common = %{version}-%{release}
303 # requires via zeroconf.py, only used by xbmc-ps3d:
304 Requires: python-gobject avahi-python python-dbus
305 # TODO merge all these?, and TODO zeroconf.py to a correct package? :)
306 Obsoletes: eventclient-ps3remote < 9.11-1.svn31936
307
308 %description eventclient-ps3
309 XBMC is an award-winning free and open source software media player
310 and entertainment hub for digital media.
311
312 This package contains the PS3 remote and sixaxis eventclients.
313
314 %package eventclient-xbmc-send
315 Summary: PS3 eventclient for XBMC
316 Group: Video
317 Requires: %{name}-eventclients-common = %{version}-%{release}
318
319 %description eventclient-xbmc-send
320 XBMC is an award-winning free and open source software media player
321 and entertainment hub for digital media.
322
323 This package contains the xbmc-send eventclient.
324
325 %prep
326 %if %snap
327 %setup -q -n %name-%branch_release-%snap
328 %else
329 %setup -q
330 %endif
331 %apply_patches
332 # otherwise backups end up in binary rpms
333 find -type f \( -name '*.00??' -o -name '*.00??~' \) -print -delete
334
335 # remove prebuilt libraries
336 find -type f \( -iname '*.so' -o -iname '*.dll' -o -iname '*.exe' \) -delete
337
338 # GPLv2 only
339 rm -r xbmc/lib/cmyth/Win32/include/mysql
340 # BSD 4-clause
341 rm -r xbmc/cores/DllLoader/exports/emu_socket
342
343 # rm disabled stuff to detect possible bugs
344 rm -rf xbmc/cores/dvdplayer/Codecs/{libdts,liba52} xbmc/cores/paplayer/AC3Codec/liba52
345
346 # win32 only
347 rm -rf system/players/dvdplayer/etc/fonts
348
349 %if !%system_python
350 cp %{SOURCE11} lib/addons/script.module.pil
351 cp %{SOURCE12} lib/addons/script.module.pysqlite
352
353 # we need to fix the lookup directories (otherwise setup.py queries
354 # incorrect information from the bundled python)
355 tar -xzf %{SOURCE11} -C lib/addons/script.module.pil
356 sed -ri 's|^([A-Z0-9]+_ROOT =) None|\1 "%{_libdir}", "%{_includedir}"|' lib/addons/script.module.pil/Imaging-*/setup.py
357 %endif
358
359 %build
360 %if %snap
361 export GIT_REV=%snap
362 %else
363 export GIT_REV=$(basename %SOURCE0)
364 %endif
365 ./bootstrap
366
367 # due to xbmc modules that use symbols from xbmc binary
368 # and are not using libtool
369 %define _disable_ld_no_undefined 1
370
371 # Workaround configure using git to override GIT_REV (TODO: fix it properly)
372 export ac_cv_prog_HAVE_GIT="no"
373
374 %configure2_5x \
375 --disable-debug \
376 --disable-ccache \
377 --enable-external-libraries \
378 %if !%system_python
379 --disable-external-python \
380 %endif
381 --disable-non-free \
382 --disable-dvdcss \
383 --disable-faac \
384 --enable-goom \
385 --with-lirc-device=/var/run/lirc/lircd
386
387 # non-free = unrar + xbms
388 # dvdcss is handled via dlopen when disabled
389 # faac is always handled via libavcodec
390
391 %make
392 %make -C tools/EventClients wiimote
393
394 %if !%system_python
395 for dir in lib/addons/script.module.*; do
396 %make -C $dir
397 done
398 %endif
399
400 %install
401 rm -rf %{buildroot}
402 %makeinstall_std
403 %makeinstall_std -C tools/EventClients
404
405 # unused
406 rm %{buildroot}%{_datadir}/xsessions/XBMC.desktop
407 # our version of the above:
408 install -d -m755 %{buildroot}%{_sysconfdir}/X11/wmsession.d
409 cat > %{buildroot}%{_sysconfdir}/X11/wmsession.d/15XBMC <<EOF
410 NAME=XBMC
411 ICON=xbmc.png
412 DESC=XBMC Media Center
413 EXEC=%{_bindir}/xbmc-standalone
414 SCRIPT:
415 exec %{_bindir}/xbmc-standalone
416 EOF
417
418 # unused files, TODO fix this upstream:
419 find %{buildroot}%{_datadir}/xbmc/addons/skin.*/media -name '*.png' -delete
420
421 ( # for IFS and +x
422 # Check for issues in ELF binaries
423 undefined=
424 fhserr=
425 echo Silencing output of checking symbols and FHS conformance
426 set +x
427 IFS=$'\n'
428 for file in $(find %{buildroot} -type f); do
429 type="$(file "$file")"
430 echo "$type" | grep -q "ELF" || continue
431
432 # Check that a binary file is not in datadir:
433 echo "$file" | grep -q "%{_datadir}" && fhserr="${fhserr}$file\n"
434
435 # check for undefined symbols in XBMC modules
436 echo "$type" | grep -q "shared object" || continue
437 for symbol in $(LD_LIBRARY_PATH=$LD_LIBRARY_PATH:%{buildroot}%{_libdir} ldd -r "$file" 2>&1 | grep undefined | awk '{ print $3 }'); do
438 # undefined symbols may also be provided by XBMC:
439 nm -f posix -D --no-demangle --defined-only %{buildroot}%{_libdir}/xbmc/xbmc.bin | grep -q "^$symbol " && continue
440 # The symbol was not provided by XBMC.
441 # Check if it is available through its dependencies:
442 for filename in $(objdump -p %{buildroot}%{_libdir}/xbmc/xbmc.bin | grep NEEDED | awk '{ print $2 }'); do
443 depfile="/%{_lib}/$filename"
444 [ -e "$depfile" ] || depfile="%{_libdir}/$filename"
445 nm -f posix -D --no-demangle --defined-only $depfile | grep -q "^$symbol " && continue 2
446 done
447 # Euphoria references rsxs PNG class, but it is never used at runtime,
448 # so it results in no errors due to RTLD_LAZY being used by xbmc module loader.
449 # _imaging*.so and _sqlite.so are python modules that exist when using bundled python
450 case $file:$symbol in */Euphoria.xbs:_ZN3PNG*|*/_imaging*.so:*|*/_sqlite.so:*) continue; esac
451 # the symbol was not found
452 undefined="${undefined}$file: $symbol\n"
453 done
454 done
455 ok=1
456 [ -n "$undefined" ] && echo -e "$undefined" && echo "Undefined symbols!" && ok=
457 [ -n "$fhserr" ] && echo -e "$fhserr" && echo "Binaries in datadir!" && ok=
458 [ -n "$ok" ]
459 )
460
461 %clean
462 rm -rf %{buildroot}
463
464 %files
465 %defattr(-,root,root)
466 %doc %{_docdir}/xbmc
467 %{_sysconfdir}/X11/wmsession.d/15XBMC
468 %{_bindir}/xbmc
469 %{_bindir}/xbmc-standalone
470 %dir %{_libdir}/xbmc
471 %dir %{_libdir}/xbmc/addons
472 %dir %{_libdir}/xbmc/system
473 %dir %{_libdir}/xbmc/system/players
474 %dir %{_libdir}/xbmc/system/players/dvdplayer
475 %dir %{_libdir}/xbmc/system/players/paplayer
476 %dir %{_libdir}/xbmc/system/python
477 %{_libdir}/xbmc/xbmc.bin
478 %{_libdir}/xbmc/xbmc-xrandr
479 %dir %{_libdir}/xbmc/addons/*
480 %{_libdir}/xbmc/addons/*/*.so
481 %{_libdir}/xbmc/addons/*/*.pvr
482 %{_libdir}/xbmc/addons/*/*.vis
483 %{_libdir}/xbmc/addons/*/*.xbs
484 %{_libdir}/xbmc/addons/script.module.*/*.xml
485 %{_libdir}/xbmc/system/ImageLib-*-linux.so
486 %{_libdir}/xbmc/system/hdhomerun-*-linux.so
487 %{_libdir}/xbmc/system/libcpluff-*-linux.so
488 %{_libdir}/xbmc/system/libexif-*-linux.so
489 %{_libdir}/xbmc/system/libid3tag-*-linux.so
490 %{_libdir}/xbmc/system/players/dvdplayer/libdvdnav-*-linux.so
491 %{_libdir}/xbmc/system/players/paplayer/adpcm-*-linux.so
492 %{_libdir}/xbmc/system/players/paplayer/libsidplay2-*-linux.so
493 %{_libdir}/xbmc/system/players/paplayer/nosefart-*-linux.so
494 %{_libdir}/xbmc/system/players/paplayer/stsoundlibrary-*-linux.so
495 %{_libdir}/xbmc/system/players/paplayer/timidity-*-linux.so
496 %{_libdir}/xbmc/system/players/paplayer/vgmstream-*-linux.so
497 %ifarch %ix86
498 %{_libdir}/xbmc/system/players/paplayer/SNESAPU-*-linux.so
499 %endif
500 %{_libdir}/xbmc/system/python/python*-*-linux.so
501 %if !%system_python
502 %{_libdir}/xbmc/addons/script.module.pil/*
503 %{_libdir}/xbmc/addons/script.module.pysqlite/*
504 %{_libdir}/xbmc/system/python/python*.zip
505 %endif
506 %dir %{_datadir}/xbmc
507 %{_datadir}/xbmc/addons
508 %{_datadir}/xbmc/FEH.py
509 %{_datadir}/xbmc/language
510 %{_datadir}/xbmc/media
511 %{_datadir}/xbmc/sounds
512 %{_datadir}/xbmc/system
513 %{_datadir}/xbmc/userdata
514 %{_datadir}/applications/xbmc.desktop
515 %{_iconsdir}/hicolor/*/apps/xbmc.png
516
517 %files eventclients-common
518 %defattr(-,root,root)
519 %python_sitelib/xbmc
520 %dir %{_datadir}/pixmaps/xbmc
521 %{_datadir}/pixmaps/xbmc/*.png
522
523 %files eventclients-devel
524 %defattr(-,root,root)
525 %dir %{_includedir}/xbmc
526 %{_includedir}/xbmc/xbmcclient.h
527
528 %files eventclient-j2me
529 %defattr(-,root,root)
530 %{_bindir}/xbmc-j2meremote
531
532 %files eventclient-ps3
533 %defattr(-,root,root)
534 %{_bindir}/xbmc-ps3d
535 %{_bindir}/xbmc-ps3remote
536
537 %files eventclient-xbmc-send
538 %defattr(-,root,root)
539 %{_bindir}/xbmc-send
540
541 %files eventclient-wiiremote
542 %defattr(-,root,root)
543 %{_bindir}/xbmc-wiiremote
544
545

  ViewVC Help
Powered by ViewVC 1.1.30