| 1 | # Copyright 1999-2006 Gentoo Foundation |
1 | # Copyright 1999-2006 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.19 2006/10/14 20:27:21 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.25 2007/06/28 19:19:21 cardoe Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Doug Goldstein <cardoe@gentoo.org> |
5 | # Author: Doug Goldstein <cardoe@gentoo.org> |
| 6 | # |
6 | # |
| 7 | # Installs MythTV plugins along with patches from the release-${PV}-fixes branch |
7 | # Installs MythTV plugins along with patches from the release-${PV}-fixes branch |
| 8 | # |
8 | # |
| … | |
… | |
| 20 | =media-tv/mythtv-${MY_PV}* |
20 | =media-tv/mythtv-${MY_PV}* |
| 21 | >=sys-apps/sed-4" |
21 | >=sys-apps/sed-4" |
| 22 | |
22 | |
| 23 | S="${WORKDIR}/mythplugins-${MY_PV}" |
23 | S="${WORKDIR}/mythplugins-${MY_PV}" |
| 24 | |
24 | |
|
|
25 | # hijacks the plugins checkout to be: |
|
|
26 | # /usr/portage/distfiles/svn-src//mythplugins/mythvideo/ |
|
|
27 | # so that each of the plugins can share the same svn checkout |
|
|
28 | # saving HD space and number of svn checkouts reqired |
|
|
29 | # Great suggestion by Tom Clift <tom@clift.name> |
|
|
30 | ESVN_PROJECT="" |
|
|
31 | |
| 25 | mythtv-plugins_pkg_setup() { |
32 | mythtv-plugins_pkg_setup() { |
| 26 | # List of available plugins (needs to include ALL of them in the tarball) |
33 | # List of available plugins (needs to include ALL of them in the tarball) |
| 27 | MYTHPLUGINS="mythbrowser mythcontrols mythdvd mythflix mythgallery" |
34 | MYTHPLUGINS="mythbrowser mythcontrols mythdvd mythflix mythgallery" |
| 28 | MYTHPLUGINS="${MYTHPLUGINS} mythgame mythmusic mythnews mythphone" |
35 | MYTHPLUGINS="${MYTHPLUGINS} mythgame mythmusic mythnews mythphone" |
| 29 | MYTHPLUGINS="${MYTHPLUGINS} mythvideo mythweather mythweb" |
36 | MYTHPLUGINS="${MYTHPLUGINS} mythvideo mythweather mythweb" |
| 30 | |
37 | |
| 31 | if version_is_at_least "0.20" ; then |
38 | if version_is_at_least "0.20" ; then |
| 32 | MYTHPLUGINS="${MYTHPLUGINS} mytharchive" |
39 | MYTHPLUGINS="${MYTHPLUGINS} mytharchive" |
| 33 | fi |
40 | fi |
|
|
41 | |
|
|
42 | if version_is_at_least "0.21_pre" ; then |
|
|
43 | MYTHPLUGINS="${MYTHPLUGINS} mythzoneminder mythmovies" |
|
|
44 | MYTHPLUGINS="${MYTHPLUGINS/mythdvd/}" |
|
|
45 | fi |
| 34 | } |
46 | } |
| 35 | |
47 | |
| 36 | mythtv-plugins_src_unpack() { |
48 | mythtv-plugins_src_unpack() { |
| 37 | unpack ${A} |
49 | unpack ${A} |
|
|
50 | mythtv-plugins_src_unpack_patch |
|
|
51 | } |
|
|
52 | |
|
|
53 | mythtv-plugins_src_unpack_patch() { |
| 38 | cd "${S}" |
54 | cd "${S}" |
| 39 | |
55 | |
| 40 | mythtv-fixes_patch |
56 | mythtv-fixes_patch |
| 41 | |
57 | |
| 42 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
58 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |