| 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.39 2011/07/08 11:35:01 ssuominen 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/}" |
|
|
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 | if version_is_at_least "0.23_beta" ; then |
|
|
53 | MYTHPLUGINS="${MYTHPLUGINS/mythflix/}" |
|
|
54 | MYTHPLUGINS="${MYTHPLUGINS} mythnetvision" |
| 37 | fi |
55 | fi |
| 38 | } |
56 | } |
| 39 | |
57 | |
| 40 | mythtv-plugins_src_unpack() { |
58 | 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!' \ |
59 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
| 47 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
60 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
| 48 | |
61 | |
| 49 | sed -e "s!QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer!QMAKE_CXXFLAGS_RELEASE = ${CXXFLAGS}!" \ |
62 | 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" |
63 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
| … | |
… | |
| 56 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
69 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
| 57 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
70 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
| 58 | {} \; |
71 | {} \; |
| 59 | } |
72 | } |
| 60 | |
73 | |
| 61 | mythtv-plugins_src_compile() { |
74 | mythtv-plugins_src_configure() { |
| 62 | cd "${S}" |
75 | cd "${S}" |
| 63 | |
76 | |
| 64 | if use debug; then |
77 | if use debug; then |
| 65 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
78 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
| 66 | -i 'settings.pro' || die "switching to debug build failed" |
79 | -i 'settings.pro' || die "switching to debug build failed" |
| … | |
… | |
| 72 | -i 'settings.pro' || die "disabling MMX failed" |
85 | -i 'settings.pro' || die "disabling MMX failed" |
| 73 | fi |
86 | fi |
| 74 | |
87 | |
| 75 | local myconf="" |
88 | local myconf="" |
| 76 | |
89 | |
| 77 | if hasq ${PN} ${MYTHPLUGINS} ; then |
90 | if has ${PN} ${MYTHPLUGINS} ; then |
| 78 | for x in ${MYTHPLUGINS} ; do |
91 | for x in ${MYTHPLUGINS} ; do |
| 79 | if [[ ${PN} == ${x} ]] ; then |
92 | if [[ ${PN} == ${x} ]] ; then |
| 80 | myconf="${myconf} --enable-${x}" |
93 | myconf="${myconf} --enable-${x}" |
| 81 | else |
94 | else |
| 82 | myconf="${myconf} --disable-${x}" |
95 | myconf="${myconf} --disable-${x}" |
| … | |
… | |
| 84 | done |
97 | done |
| 85 | else |
98 | else |
| 86 | die "Package ${PN} is unsupported" |
99 | die "Package ${PN} is unsupported" |
| 87 | fi |
100 | fi |
| 88 | |
101 | |
|
|
102 | chmod +x configure |
| 89 | econf ${myconf} ${MTVCONF} |
103 | econf ${myconf} ${MTVCONF} |
|
|
104 | } |
| 90 | |
105 | |
| 91 | ${QTDIR}/bin/qmake QMAKE="${QTDIR}/bin/qmake" -o "Makefile" mythplugins.pro || die "qmake failed to run" |
106 | mythtv-plugins_src_compile() { |
|
|
107 | if version_is_at_least "0.22" ; then |
|
|
108 | eqmake4 mythplugins.pro || die "eqmake4 failed" |
|
|
109 | else |
|
|
110 | eqmake3 mythplugins.pro || die "eqmake3 failed" |
|
|
111 | fi |
| 92 | emake || die "make failed to compile" |
112 | emake || die "make failed to compile" |
| 93 | } |
113 | } |
| 94 | |
114 | |
| 95 | mythtv-plugins_src_install() { |
115 | mythtv-plugins_src_install() { |
| 96 | if hasq ${PN} ${MYTHPLUGINS} ; then |
116 | if has ${PN} ${MYTHPLUGINS} ; then |
| 97 | cd "${S}"/${PN} |
117 | cd "${S}"/${PN} |
| 98 | else |
118 | else |
| 99 | die "Package ${PN} is unsupported" |
119 | die "Package ${PN} is unsupported" |
| 100 | fi |
120 | fi |
| 101 | |
121 | |
| … | |
… | |
| 103 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
123 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
| 104 | test -e "${doc}" && dodoc ${doc} |
124 | test -e "${doc}" && dodoc ${doc} |
| 105 | done |
125 | done |
| 106 | } |
126 | } |
| 107 | |
127 | |
| 108 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install |
128 | EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile src_install |