| 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.22 2007/06/28 18:13:15 cardoe Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Doug Goldstein <cardoe@gentoo.org> |
5 | # Author: Doug Goldstein <cardoe@gentoo.org> |
| 6 | # |
6 | # |
|
|
7 | # Installs MythTV plugins along with patches from the release-${PV}-fixes branch |
|
|
8 | # |
|
|
9 | inherit mythtv multilib qt3 versionator |
| 7 | |
10 | |
| 8 | inherit multilib |
11 | # Extra configure options to pass to econf |
|
|
12 | MTVCONF=${MTVCONF:=""} |
| 9 | |
13 | |
|
|
14 | SLOT="0" |
| 10 | IUSE="debug mmx" |
15 | IUSE="${IUSE} debug mmx" |
| 11 | |
16 | |
| 12 | EXPORT_FUNCTIONS src_unpack src_compile src_install |
17 | RDEPEND="${RDEPEND} |
| 13 | MYTHPLUGINS="mythbrowser mythcontrols mythdvd mythflix mythgallery mythgame mythmusic mythnews mythphone mythvideo mythweather mythweb" |
18 | =media-tv/mythtv-${MY_PV}*" |
| 14 | MTVCONF="" |
19 | DEPEND="${DEPEND} |
| 15 | S="${WORKDIR}/mythplugins-${PV}" |
20 | =media-tv/mythtv-${MY_PV}* |
|
|
21 | >=sys-apps/sed-4" |
| 16 | |
22 | |
| 17 | RDEPEND="~media-tv/mythtv-${PV}" |
23 | S="${WORKDIR}/mythplugins-${MY_PV}" |
| 18 | DEPEND="${RDEPEND} |
24 | |
| 19 | >=sys-apps/sed-4" |
25 | mythtv-plugins_pkg_setup() { |
|
|
26 | # List of available plugins (needs to include ALL of them in the tarball) |
|
|
27 | MYTHPLUGINS="mythbrowser mythcontrols mythdvd mythflix mythgallery" |
|
|
28 | MYTHPLUGINS="${MYTHPLUGINS} mythgame mythmusic mythnews mythphone" |
|
|
29 | MYTHPLUGINS="${MYTHPLUGINS} mythvideo mythweather mythweb" |
|
|
30 | |
|
|
31 | if version_is_at_least "0.20" ; then |
|
|
32 | MYTHPLUGINS="${MYTHPLUGINS} mytharchive" |
|
|
33 | fi |
|
|
34 | |
|
|
35 | if version_is_at_least "0.21_pre" ; then |
|
|
36 | MYTHPLUGINS="${MYTHPLUGINS} mythzoneminder mythmovies" |
|
|
37 | fi |
|
|
38 | } |
| 20 | |
39 | |
| 21 | mythtv-plugins_src_unpack() { |
40 | mythtv-plugins_src_unpack() { |
| 22 | unpack ${A} |
41 | unpack ${A} |
| 23 | cd ${S} |
42 | cd "${S}" |
|
|
43 | |
|
|
44 | mythtv-fixes_patch |
| 24 | |
45 | |
| 25 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
46 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
| 26 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
47 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
| 27 | |
48 | |
| 28 | sed -e "s!QMAKE_CXXFLAGS_RELEASE = -O3 -march=pentiumpro -fomit-frame-pointer!QMAKE_CXXFLAGS_RELEASE = ${CXXFLAGS}!" \ |
49 | 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" |
50 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
| 30 | |
51 | |
| 31 | sed -e "s!QMAKE_CFLAGS_RELEASE = \$\${QMAKE_CXXFLAGS_RELEASE}!QMAKE_CFLAGS_RELEASE = ${CFLAGS}!" \ |
52 | sed -e "s!QMAKE_CFLAGS_RELEASE = \$\${QMAKE_CXXFLAGS_RELEASE}!QMAKE_CFLAGS_RELEASE = ${CFLAGS}!" \ |
| 32 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
53 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
| 33 | |
54 | |
| 34 | find ${S} -name '*.pro' -exec sed -i \ |
55 | find "${S}" -name '*.pro' -exec sed -i \ |
| 35 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
56 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
| 36 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
57 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
| 37 | {} \; |
58 | {} \; |
| 38 | } |
59 | } |
| 39 | |
60 | |
| 40 | mythtv-plugins_src_compile() { |
61 | mythtv-plugins_src_compile() { |
| 41 | cd ${S} |
62 | cd "${S}" |
| 42 | |
63 | |
| 43 | if use debug; then |
64 | if use debug; then |
| 44 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
65 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
| 45 | -i 'settings.pro' || die "switching to debug build failed" |
66 | -i 'settings.pro' || die "switching to debug build failed" |
| 46 | fi |
67 | fi |
| … | |
… | |
| 71 | emake || die "make failed to compile" |
92 | emake || die "make failed to compile" |
| 72 | } |
93 | } |
| 73 | |
94 | |
| 74 | mythtv-plugins_src_install() { |
95 | mythtv-plugins_src_install() { |
| 75 | if hasq ${PN} ${MYTHPLUGINS} ; then |
96 | if hasq ${PN} ${MYTHPLUGINS} ; then |
| 76 | cd ${S}/${PN} |
97 | cd "${S}"/${PN} |
| 77 | else |
98 | else |
| 78 | die "Package ${PN} is unsupported" |
99 | die "Package ${PN} is unsupported" |
| 79 | fi |
100 | fi |
| 80 | |
101 | |
| 81 | einstall INSTALL_ROOT="${D}" |
102 | einstall INSTALL_ROOT="${D}" |
| 82 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
103 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
| 83 | test -e "${doc}" && dodoc ${doc} |
104 | test -e "${doc}" && dodoc ${doc} |
| 84 | done |
105 | done |
| 85 | } |
106 | } |
|
|
107 | |
|
|
108 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install |