| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2004 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.10 2006/02/11 16:31:53 caleb Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.11 2006/02/12 10:16:41 cardoe Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Doug Goldstein <cardoe@gentoo.org |
5 | # Author: Doug Goldstein <cardoe@gentoo.org> |
| 6 | # |
6 | # |
| 7 | |
7 | |
| 8 | inherit multilib |
8 | inherit multilib |
| 9 | |
9 | |
| 10 | IUSE="debug mmx" |
10 | IUSE="debug mmx" |
| 11 | |
11 | |
| 12 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
12 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 13 | MYTHPLUGINS="mythbrowser mythdvd mythgallery mythgame mythmusic mythnews mythphone mythvideo mythweather mythweb" |
13 | MYTHPLUGINS="mythbrowser mythcontrols mythdvd mythflix mythgallery mythgame mythmusic mythnews mythphone mythvideo mythweather mythweb" |
| 14 | MTVCONF="" |
14 | MTVCONF="" |
| 15 | S="${WORKDIR}/mythplugins-${PV}" |
15 | S="${WORKDIR}/mythplugins-${PV}" |
| 16 | |
16 | |
|
|
17 | RDEPEND="~media-tv/mythtv-${PV}" |
|
|
18 | DEPEND="${RDEPEND} |
| 17 | DEPEND=">=sys-apps/sed-4" |
19 | >=sys-apps/sed-4" |
| 18 | |
20 | |
| 19 | mythtv-plugins_src_unpack() { |
21 | mythtv-plugins_src_unpack() { |
| 20 | unpack ${A} |
22 | unpack ${A} |
| 21 | cd ${S} |
23 | cd ${S} |
| 22 | |
24 | |
| … | |
… | |
| 63 | die "Package ${PN} is unsupported" |
65 | die "Package ${PN} is unsupported" |
| 64 | fi |
66 | fi |
| 65 | |
67 | |
| 66 | econf ${myconf} ${MTVCONF} |
68 | econf ${myconf} ${MTVCONF} |
| 67 | |
69 | |
| 68 | ${QTDIR}/bin/qmake QMAKE=${QTDIR}/bin/qmake -o "Makefile" mythplugins.pro || die "qmake failed to run" |
70 | ${QTDIR}/bin/qmake QMAKE="${QTDIR}/bin/qmake" -o "Makefile" mythplugins.pro || die "qmake failed to run" |
| 69 | emake || die "make failed to compile" |
71 | emake || die "make failed to compile" |
| 70 | } |
72 | } |
| 71 | |
73 | |
| 72 | mythtv-plugins_src_install() { |
74 | mythtv-plugins_src_install() { |
| 73 | if hasq ${PN} ${MYTHPLUGINS} ; then |
75 | if hasq ${PN} ${MYTHPLUGINS} ; then |