| 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.11 2006/02/12 10:16:41 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 | |
10 | |
| 8 | inherit multilib |
11 | # NOTE: YOU MUST INHERIT EITHER qt3 or qt4 IN YOUR PLUGIN! |
| 9 | |
12 | |
| 10 | IUSE="debug mmx" |
13 | inherit mythtv multilib versionator |
| 11 | |
14 | |
| 12 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
15 | # Extra configure options to pass to econf |
| 13 | MYTHPLUGINS="mythbrowser mythcontrols mythdvd mythflix mythgallery mythgame mythmusic mythnews mythphone mythvideo mythweather mythweb" |
16 | MTVCONF=${MTVCONF:=""} |
| 14 | MTVCONF="" |
|
|
| 15 | S="${WORKDIR}/mythplugins-${PV}" |
|
|
| 16 | |
17 | |
| 17 | RDEPEND="~media-tv/mythtv-${PV}" |
18 | SLOT="0" |
| 18 | DEPEND="${RDEPEND} |
19 | IUSE="${IUSE} debug mmx" |
| 19 | >=sys-apps/sed-4" |
|
|
| 20 | |
20 | |
| 21 | mythtv-plugins_src_unpack() { |
21 | if [[ -z $MYTHTV_NODEPS ]] ; then |
| 22 | unpack ${A} |
22 | RDEPEND="${RDEPEND} |
| 23 | cd ${S} |
23 | =media-tv/mythtv-${MY_PV}*" |
|
|
24 | DEPEND="${DEPEND} |
|
|
25 | =media-tv/mythtv-${MY_PV}* |
|
|
26 | >=sys-apps/sed-4" |
|
|
27 | fi |
| 24 | |
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 | |
|
|
48 | mythtv-plugins_src_prepare() { |
| 25 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
49 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
| 26 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
50 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
| 27 | |
51 | |
| 28 | 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}!" \ |
| 29 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
53 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
| 30 | |
54 | |
| 31 | sed -e "s!QMAKE_CFLAGS_RELEASE = \$\${QMAKE_CXXFLAGS_RELEASE}!QMAKE_CFLAGS_RELEASE = ${CFLAGS}!" \ |
55 | sed -e "s!QMAKE_CFLAGS_RELEASE = \$\${QMAKE_CXXFLAGS_RELEASE}!QMAKE_CFLAGS_RELEASE = ${CFLAGS}!" \ |
| 32 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
56 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
| 33 | |
57 | |
| 34 | find ${S} -name '*.pro' -exec sed -i \ |
58 | find "${S}" -name '*.pro' -exec sed -i \ |
| 35 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
59 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
| 36 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
60 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
| 37 | {} \; |
61 | {} \; |
| 38 | } |
62 | } |
| 39 | |
63 | |
| 40 | mythtv-plugins_src_compile() { |
64 | mythtv-plugins_src_configure() { |
| 41 | cd ${S} |
65 | cd "${S}" |
| 42 | |
66 | |
| 43 | if use debug; then |
67 | if use debug; then |
| 44 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
68 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
| 45 | -i 'settings.pro' || die "switching to debug build failed" |
69 | -i 'settings.pro' || die "switching to debug build failed" |
| 46 | fi |
70 | fi |
| … | |
… | |
| 63 | done |
87 | done |
| 64 | else |
88 | else |
| 65 | die "Package ${PN} is unsupported" |
89 | die "Package ${PN} is unsupported" |
| 66 | fi |
90 | fi |
| 67 | |
91 | |
|
|
92 | chmod +x configure |
| 68 | econf ${myconf} ${MTVCONF} |
93 | econf ${myconf} ${MTVCONF} |
|
|
94 | } |
| 69 | |
95 | |
| 70 | ${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 |
| 71 | emake || die "make failed to compile" |
102 | emake || die "make failed to compile" |
| 72 | } |
103 | } |
| 73 | |
104 | |
| 74 | mythtv-plugins_src_install() { |
105 | mythtv-plugins_src_install() { |
| 75 | if hasq ${PN} ${MYTHPLUGINS} ; then |
106 | if hasq ${PN} ${MYTHPLUGINS} ; then |
| 76 | cd ${S}/${PN} |
107 | cd "${S}"/${PN} |
| 77 | else |
108 | else |
| 78 | die "Package ${PN} is unsupported" |
109 | die "Package ${PN} is unsupported" |
| 79 | fi |
110 | fi |
| 80 | |
111 | |
| 81 | einstall INSTALL_ROOT="${D}" |
112 | einstall INSTALL_ROOT="${D}" |
| 82 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
113 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
| 83 | test -e "${doc}" && dodoc ${doc} |
114 | test -e "${doc}" && dodoc ${doc} |
| 84 | done |
115 | done |
| 85 | } |
116 | } |
|
|
117 | |
|
|
118 | EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile src_install |