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.20 2007/04/19 23:00:39 cardoe Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.26 2007/08/07 16:24:42 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 |
34 | |
41 | |
35 | if version_is_at_least "0.21" ; then |
42 | if version_is_at_least "0.21_pre" ; then |
36 | MYTHPLUGINS="${MYTHPLUGINS} mythzoneminder" |
43 | MYTHPLUGINS="${MYTHPLUGINS} mythzoneminder mythmovies" |
|
|
44 | MYTHPLUGINS="${MYTHPLUGINS/mythdvd/}" |
37 | fi |
45 | fi |
38 | } |
46 | } |
39 | |
47 | |
40 | mythtv-plugins_src_unpack() { |
48 | mythtv-plugins_src_unpack() { |
|
|
49 | if [ -n "${SVNREV}" ]; then |
|
|
50 | subversion_src_unpack |
|
|
51 | else |
41 | unpack ${A} |
52 | unpack ${A} |
|
|
53 | fi |
|
|
54 | |
|
|
55 | mythtv-plugins_src_unpack_patch |
|
|
56 | } |
|
|
57 | |
|
|
58 | mythtv-plugins_src_unpack_patch() { |
42 | cd "${S}" |
59 | cd "${S}" |
43 | |
60 | |
44 | mythtv-fixes_patch |
61 | mythtv-fixes_patch |
45 | |
62 | |
46 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
63 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |