| 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.35 2009/07/19 04:18:58 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 | # Installs MythTV plugins along with patches from the release-${PV}-fixes branch |
10 | |
| 8 | # |
11 | # NOTE: YOU MUST INHERIT EITHER qt3 or qt4 IN YOUR PLUGIN! |
|
|
12 | |
| 9 | inherit mythtv multilib qt3 versionator |
13 | inherit mythtv multilib versionator |
| 10 | |
14 | |
| 11 | # Extra configure options to pass to econf |
15 | # Extra configure options to pass to econf |
| 12 | MTVCONF=${MTVCONF:=""} |
16 | MTVCONF=${MTVCONF:=""} |
| 13 | |
17 | |
| 14 | SLOT="0" |
18 | SLOT="0" |
| 15 | IUSE="${IUSE} debug mmx" |
19 | IUSE="${IUSE} debug mmx" |
| 16 | |
20 | |
|
|
21 | if [[ -z $MYTHTV_NODEPS ]] ; then |
| 17 | RDEPEND="${RDEPEND} |
22 | RDEPEND="${RDEPEND} |
| 18 | =media-tv/mythtv-${MY_PV}*" |
23 | =media-tv/mythtv-${MY_PV}*" |
| 19 | DEPEND="${DEPEND} |
24 | DEPEND="${DEPEND} |
| 20 | =media-tv/mythtv-${MY_PV}* |
25 | =media-tv/mythtv-${MY_PV}* |
| 21 | >=sys-apps/sed-4" |
26 | >=sys-apps/sed-4" |
|
|
27 | fi |
| 22 | |
28 | |
| 23 | S="${WORKDIR}/mythplugins-${MY_PV}" |
29 | # bug 240325 |
|
|
30 | RESTRICT="strip" |
| 24 | |
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" |
| … | |
… | |
| 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_beta" ; 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_prepare() { |
| 41 | unpack ${A} |
|
|
| 42 | cd "${S}" |
|
|
| 43 | |
|
|
| 44 | mythtv-fixes_patch |
|
|
| 45 | |
|
|
| 46 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
49 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
| 47 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
50 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
| 48 | |
51 | |
| 49 | sed -e "s!QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer!QMAKE_CXXFLAGS_RELEASE = ${CXXFLAGS}!" \ |
52 | sed -e "s!QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer!QMAKE_CXXFLAGS_RELEASE = ${CXXFLAGS}!" \ |
| 50 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
53 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
| … | |
… | |
| 56 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
59 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
| 57 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
60 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
| 58 | {} \; |
61 | {} \; |
| 59 | } |
62 | } |
| 60 | |
63 | |
| 61 | mythtv-plugins_src_compile() { |
64 | mythtv-plugins_src_configure() { |
| 62 | cd "${S}" |
65 | cd "${S}" |
| 63 | |
66 | |
| 64 | if use debug; then |
67 | if use debug; then |
| 65 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
68 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
| 66 | -i 'settings.pro' || die "switching to debug build failed" |
69 | -i 'settings.pro' || die "switching to debug build failed" |
| … | |
… | |
| 84 | done |
87 | done |
| 85 | else |
88 | else |
| 86 | die "Package ${PN} is unsupported" |
89 | die "Package ${PN} is unsupported" |
| 87 | fi |
90 | fi |
| 88 | |
91 | |
|
|
92 | chmod +x configure |
| 89 | econf ${myconf} ${MTVCONF} |
93 | econf ${myconf} ${MTVCONF} |
|
|
94 | } |
| 90 | |
95 | |
| 91 | ${QTDIR}/bin/qmake QMAKE="${QTDIR}/bin/qmake" -o "Makefile" mythplugins.pro || die "qmake failed to run" |
96 | mythtv-plugins_src_compile() { |
|
|
97 | if version_is_at_least "0.22" ; then |
|
|
98 | eqmake4 mythplugins.pro || die "eqmake4 failed" |
|
|
99 | else |
|
|
100 | eqmake3 mythplugins.pro || die "eqmake3 failed" |
|
|
101 | fi |
| 92 | emake || die "make failed to compile" |
102 | emake || die "make failed to compile" |
| 93 | } |
103 | } |
| 94 | |
104 | |
| 95 | mythtv-plugins_src_install() { |
105 | mythtv-plugins_src_install() { |
| 96 | if hasq ${PN} ${MYTHPLUGINS} ; then |
106 | if hasq ${PN} ${MYTHPLUGINS} ; then |
| … | |
… | |
| 103 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
113 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
| 104 | test -e "${doc}" && dodoc ${doc} |
114 | test -e "${doc}" && dodoc ${doc} |
| 105 | done |
115 | done |
| 106 | } |
116 | } |
| 107 | |
117 | |
| 108 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install |
118 | EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile src_install |