| 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.1.1.1 2005/11/30 09:59:26 chriswhite Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.4 2005/07/01 15:01:49 caleb 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 | ECLASS=mythtv-plugins |
|
|
11 | INHERITED="${INHERITED} ${ECLASS} debug" |
|
|
12 | IUSE="${IUSE} mmx" |
| 11 | |
13 | |
| 12 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
14 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 13 | MYTHPLUGINS="mythbrowser mythdvd mythgallery mythgame mythmusic mythnews mythphone mythvideo mythweather mythweb" |
15 | MYTHPLUGINS="mythbrowser mythdvd mythgallery mythgame mythmusic mythnews mythphone mythvideo mythweather mythweb" |
| 14 | MTVCONF="" |
16 | MTVCONF="" |
| 15 | S="${WORKDIR}/mythplugins-${PV}" |
17 | S="${WORKDIR}/mythplugins-${PV}" |
| … | |
… | |
| 17 | DEPEND=">=sys-apps/sed-4" |
19 | DEPEND=">=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 | |
| 23 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
25 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
| 24 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
26 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
| 25 | |
27 | |
| 26 | 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}!" \ |
| 27 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
29 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
| 28 | |
30 | |
| 29 | 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}!" \ |
| 30 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
32 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
| 31 | |
33 | |
| 32 | find ${S} -name '*.pro' -exec sed -i \ |
34 | find ${S} -name '*.pro' -exec sed -i \ |
| 33 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
35 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
| … | |
… | |
| 35 | {} \; |
37 | {} \; |
| 36 | } |
38 | } |
| 37 | |
39 | |
| 38 | mythtv-plugins_src_compile() { |
40 | mythtv-plugins_src_compile() { |
| 39 | cd ${S} |
41 | cd ${S} |
| 40 | |
42 | |
| 41 | if use debug; then |
43 | if use debug; then |
| 42 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
44 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
| 43 | -i 'settings.pro' || die "switching to debug build failed" |
45 | -i 'settings.pro' || die "switching to debug build failed" |
| 44 | fi |
46 | fi |
| 45 | |
47 | |
| 46 | # if ( use x86 && ! use mmx ) || ! use amd64 ; then |
48 | # if ( use x86 && ! use mmx ) || ! use amd64 ; then |
| 47 | if ( ! use mmx ); then |
49 | if ( ! use mmx ); then |
| 48 | sed -e 's!DEFINES += HAVE_MMX!DEFINES -= HAVE_MMX!' \ |
50 | sed -e 's!DEFINES += HAVE_MMX!DEFINES -= HAVE_MMX!' \ |
| 49 | -i 'settings.pro' || die "disabling MMX failed" |
51 | -i 'settings.pro' || die "disabling MMX failed" |
| 50 | fi |
52 | fi |