| 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.4 2005/07/01 15:01:49 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 | ECLASS=mythtv-plugins |
10 | IUSE="debug mmx" |
| 11 | INHERITED="${INHERITED} ${ECLASS} debug" |
|
|
| 12 | IUSE="${IUSE} mmx" |
|
|
| 13 | |
11 | |
| 14 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
12 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 15 | 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" |
| 16 | MTVCONF="" |
14 | MTVCONF="" |
| 17 | S="${WORKDIR}/mythplugins-${PV}" |
15 | S="${WORKDIR}/mythplugins-${PV}" |
| 18 | |
16 | |
|
|
17 | RDEPEND="~media-tv/mythtv-${PV}" |
|
|
18 | DEPEND="${RDEPEND} |
| 19 | DEPEND=">=sys-apps/sed-4" |
19 | >=sys-apps/sed-4" |
| 20 | |
20 | |
| 21 | mythtv-plugins_src_unpack() { |
21 | mythtv-plugins_src_unpack() { |
| 22 | unpack ${A} |
22 | unpack ${A} |
| 23 | cd ${S} |
23 | cd ${S} |
| 24 | |
24 | |
| 25 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
25 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
| 26 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
26 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
| 27 | |
27 | |
| 28 | sed -e "s!QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer!QMAKE_CXXFLAGS_RELEASE = ${CXXFLAGS}!" \ |
28 | sed -e "s!QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer!QMAKE_CXXFLAGS_RELEASE = ${CXXFLAGS}!" \ |
| 29 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
29 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
| 30 | |
30 | |
| 31 | sed -e "s!QMAKE_CFLAGS_RELEASE = \$\${QMAKE_CXXFLAGS_RELEASE}!QMAKE_CFLAGS_RELEASE = ${CFLAGS}!" \ |
31 | sed -e "s!QMAKE_CFLAGS_RELEASE = \$\${QMAKE_CXXFLAGS_RELEASE}!QMAKE_CFLAGS_RELEASE = ${CFLAGS}!" \ |
| 32 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
32 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
| 33 | |
33 | |
| 34 | find ${S} -name '*.pro' -exec sed -i \ |
34 | find ${S} -name '*.pro' -exec sed -i \ |
| 35 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
35 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
| … | |
… | |
| 37 | {} \; |
37 | {} \; |
| 38 | } |
38 | } |
| 39 | |
39 | |
| 40 | mythtv-plugins_src_compile() { |
40 | mythtv-plugins_src_compile() { |
| 41 | cd ${S} |
41 | cd ${S} |
| 42 | |
42 | |
| 43 | if use debug; then |
43 | if use debug; then |
| 44 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
44 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
| 45 | -i 'settings.pro' || die "switching to debug build failed" |
45 | -i 'settings.pro' || die "switching to debug build failed" |
| 46 | fi |
46 | fi |
| 47 | |
47 | |
| 48 | # if ( use x86 && ! use mmx ) || ! use amd64 ; then |
48 | # if ( use x86 && ! use mmx ) || ! use amd64 ; then |
| 49 | if ( ! use mmx ); then |
49 | if ( ! use mmx ); then |
| 50 | sed -e 's!DEFINES += HAVE_MMX!DEFINES -= HAVE_MMX!' \ |
50 | sed -e 's!DEFINES += HAVE_MMX!DEFINES -= HAVE_MMX!' \ |
| 51 | -i 'settings.pro' || die "disabling MMX failed" |
51 | -i 'settings.pro' || die "disabling MMX failed" |
| 52 | fi |
52 | fi |
| … | |
… | |
| 65 | die "Package ${PN} is unsupported" |
65 | die "Package ${PN} is unsupported" |
| 66 | fi |
66 | fi |
| 67 | |
67 | |
| 68 | econf ${myconf} ${MTVCONF} |
68 | econf ${myconf} ${MTVCONF} |
| 69 | |
69 | |
| 70 | ${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" |
| 71 | emake || die "make failed to compile" |
71 | emake || die "make failed to compile" |
| 72 | } |
72 | } |
| 73 | |
73 | |
| 74 | mythtv-plugins_src_install() { |
74 | mythtv-plugins_src_install() { |
| 75 | if hasq ${PN} ${MYTHPLUGINS} ; then |
75 | if hasq ${PN} ${MYTHPLUGINS} ; then |