| 1 | # Copyright 1999-2004 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.4 2005/07/01 15:01:49 caleb Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.36 2009/11/02 01:59:17 cardoe Exp $ |
| 4 | # |
4 | # |
|
|
5 | # @ECLASS: mythtv-plugins.eclass |
| 5 | # Author: Doug Goldstein <cardoe@gentoo.org |
6 | # @AUTHOR: Doug Goldstein <cardoe@gentoo.org> |
|
|
7 | # @MAINTAINER: Doug Goldstein <cardoe@gentoo.org> |
|
|
8 | # @BLURB: Installs MythTV plugins along with patches from the release-${PV}-fixes branch |
| 6 | # |
9 | # |
| 7 | |
10 | |
| 8 | inherit multilib |
11 | # NOTE: YOU MUST INHERIT EITHER qt3 or qt4 IN YOUR PLUGIN! |
| 9 | |
12 | |
| 10 | ECLASS=mythtv-plugins |
13 | inherit mythtv multilib versionator |
| 11 | INHERITED="${INHERITED} ${ECLASS} debug" |
|
|
| 12 | IUSE="${IUSE} mmx" |
|
|
| 13 | |
14 | |
| 14 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
15 | # Extra configure options to pass to econf |
| 15 | MYTHPLUGINS="mythbrowser mythdvd mythgallery mythgame mythmusic mythnews mythphone mythvideo mythweather mythweb" |
16 | MTVCONF=${MTVCONF:=""} |
| 16 | MTVCONF="" |
|
|
| 17 | S="${WORKDIR}/mythplugins-${PV}" |
|
|
| 18 | |
17 | |
| 19 | DEPEND=">=sys-apps/sed-4" |
18 | SLOT="0" |
|
|
19 | IUSE="${IUSE} debug mmx" |
| 20 | |
20 | |
|
|
21 | if [[ -z $MYTHTV_NODEPS ]] ; then |
|
|
22 | RDEPEND="${RDEPEND} |
|
|
23 | =media-tv/mythtv-${MY_PV}*" |
|
|
24 | DEPEND="${DEPEND} |
|
|
25 | =media-tv/mythtv-${MY_PV}* |
|
|
26 | >=sys-apps/sed-4" |
|
|
27 | fi |
|
|
28 | |
|
|
29 | # bug 240325 |
|
|
30 | RESTRICT="strip" |
|
|
31 | |
|
|
32 | mythtv-plugins_pkg_setup() { |
|
|
33 | # List of available plugins (needs to include ALL of them in the tarball) |
|
|
34 | MYTHPLUGINS="mythbrowser mythcontrols mythdvd mythflix mythgallery" |
|
|
35 | MYTHPLUGINS="${MYTHPLUGINS} mythgame mythmusic mythnews mythphone" |
|
|
36 | MYTHPLUGINS="${MYTHPLUGINS} mythvideo mythweather mythweb" |
|
|
37 | |
|
|
38 | if version_is_at_least "0.20" ; then |
|
|
39 | MYTHPLUGINS="${MYTHPLUGINS} mytharchive" |
|
|
40 | fi |
|
|
41 | |
|
|
42 | if version_is_at_least "0.21_beta" ; then |
|
|
43 | MYTHPLUGINS="${MYTHPLUGINS} mythzoneminder mythmovies" |
|
|
44 | MYTHPLUGINS="${MYTHPLUGINS/mythdvd/}" |
|
|
45 | fi |
|
|
46 | |
|
|
47 | if version_is_at_least "0.22_beta" ; then |
|
|
48 | MYTHPLUGINS="${MYTHPLUGINS/mythcontrols/}" |
|
|
49 | MYTHPLUGINS="${MYTHPLUGINS/mythphone/}" |
|
|
50 | fi |
|
|
51 | } |
|
|
52 | |
| 21 | mythtv-plugins_src_unpack() { |
53 | mythtv-plugins_src_prepare() { |
| 22 | unpack ${A} |
|
|
| 23 | cd ${S} |
|
|
| 24 | |
|
|
| 25 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
54 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
| 26 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
55 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
| 27 | |
56 | |
| 28 | sed -e "s!QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer!QMAKE_CXXFLAGS_RELEASE = ${CXXFLAGS}!" \ |
57 | 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" |
58 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
| 30 | |
59 | |
| 31 | sed -e "s!QMAKE_CFLAGS_RELEASE = \$\${QMAKE_CXXFLAGS_RELEASE}!QMAKE_CFLAGS_RELEASE = ${CFLAGS}!" \ |
60 | sed -e "s!QMAKE_CFLAGS_RELEASE = \$\${QMAKE_CXXFLAGS_RELEASE}!QMAKE_CFLAGS_RELEASE = ${CFLAGS}!" \ |
| 32 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
61 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
| 33 | |
62 | |
| 34 | find ${S} -name '*.pro' -exec sed -i \ |
63 | find "${S}" -name '*.pro' -exec sed -i \ |
| 35 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
64 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
| 36 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
65 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
| 37 | {} \; |
66 | {} \; |
| 38 | } |
67 | } |
| 39 | |
68 | |
| 40 | mythtv-plugins_src_compile() { |
69 | mythtv-plugins_src_configure() { |
| 41 | cd ${S} |
70 | cd "${S}" |
| 42 | |
71 | |
| 43 | if use debug; then |
72 | if use debug; then |
| 44 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
73 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
| 45 | -i 'settings.pro' || die "switching to debug build failed" |
74 | -i 'settings.pro' || die "switching to debug build failed" |
| 46 | fi |
75 | fi |
| 47 | |
76 | |
| 48 | # if ( use x86 && ! use mmx ) || ! use amd64 ; then |
77 | # if ( use x86 && ! use mmx ) || ! use amd64 ; then |
| 49 | if ( ! use mmx ); then |
78 | if ( ! use mmx ); then |
| 50 | sed -e 's!DEFINES += HAVE_MMX!DEFINES -= HAVE_MMX!' \ |
79 | sed -e 's!DEFINES += HAVE_MMX!DEFINES -= HAVE_MMX!' \ |
| 51 | -i 'settings.pro' || die "disabling MMX failed" |
80 | -i 'settings.pro' || die "disabling MMX failed" |
| 52 | fi |
81 | fi |
| … | |
… | |
| 63 | done |
92 | done |
| 64 | else |
93 | else |
| 65 | die "Package ${PN} is unsupported" |
94 | die "Package ${PN} is unsupported" |
| 66 | fi |
95 | fi |
| 67 | |
96 | |
|
|
97 | chmod +x configure |
| 68 | econf ${myconf} ${MTVCONF} |
98 | econf ${myconf} ${MTVCONF} |
|
|
99 | } |
| 69 | |
100 | |
| 70 | ${QTDIR}/bin/qmake -o "Makefile" mythplugins.pro || die "qmake failed to run" |
101 | mythtv-plugins_src_compile() { |
|
|
102 | if version_is_at_least "0.22" ; then |
|
|
103 | eqmake4 mythplugins.pro || die "eqmake4 failed" |
|
|
104 | else |
|
|
105 | eqmake3 mythplugins.pro || die "eqmake3 failed" |
|
|
106 | fi |
| 71 | emake || die "make failed to compile" |
107 | emake || die "make failed to compile" |
| 72 | } |
108 | } |
| 73 | |
109 | |
| 74 | mythtv-plugins_src_install() { |
110 | mythtv-plugins_src_install() { |
| 75 | if hasq ${PN} ${MYTHPLUGINS} ; then |
111 | if hasq ${PN} ${MYTHPLUGINS} ; then |
| 76 | cd ${S}/${PN} |
112 | cd "${S}"/${PN} |
| 77 | else |
113 | else |
| 78 | die "Package ${PN} is unsupported" |
114 | die "Package ${PN} is unsupported" |
| 79 | fi |
115 | fi |
| 80 | |
116 | |
| 81 | einstall INSTALL_ROOT="${D}" |
117 | einstall INSTALL_ROOT="${D}" |
| 82 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
118 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
| 83 | test -e "${doc}" && dodoc ${doc} |
119 | test -e "${doc}" && dodoc ${doc} |
| 84 | done |
120 | done |
| 85 | } |
121 | } |
|
|
122 | |
|
|
123 | EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile src_install |