| 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.9 2005/08/23 14:55:11 swegener Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.20 2007/04/19 23:00:39 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 mythdvd 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 | DEPEND=">=sys-apps/sed-4" |
23 | S="${WORKDIR}/mythplugins-${MY_PV}" |
|
|
24 | |
|
|
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" ; then |
|
|
36 | MYTHPLUGINS="${MYTHPLUGINS} mythzoneminder" |
|
|
37 | fi |
|
|
38 | } |
| 18 | |
39 | |
| 19 | mythtv-plugins_src_unpack() { |
40 | mythtv-plugins_src_unpack() { |
| 20 | unpack ${A} |
41 | unpack ${A} |
| 21 | cd ${S} |
42 | cd "${S}" |
|
|
43 | |
|
|
44 | mythtv-fixes_patch |
| 22 | |
45 | |
| 23 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
46 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
| 24 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
47 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
| 25 | |
48 | |
| 26 | 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}!" \ |
| 27 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
50 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
| 28 | |
51 | |
| 29 | 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}!" \ |
| 30 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
53 | -i 'settings.pro' || die "Fixing Qmake's CFLAGS failed" |
| 31 | |
54 | |
| 32 | find ${S} -name '*.pro' -exec sed -i \ |
55 | find "${S}" -name '*.pro' -exec sed -i \ |
| 33 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
56 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
| 34 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
57 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
| 35 | {} \; |
58 | {} \; |
| 36 | } |
59 | } |
| 37 | |
60 | |
| 38 | mythtv-plugins_src_compile() { |
61 | mythtv-plugins_src_compile() { |
| 39 | cd ${S} |
62 | cd "${S}" |
| 40 | |
63 | |
| 41 | if use debug; then |
64 | if use debug; then |
| 42 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
65 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
| 43 | -i 'settings.pro' || die "switching to debug build failed" |
66 | -i 'settings.pro' || die "switching to debug build failed" |
| 44 | fi |
67 | fi |
| … | |
… | |
| 63 | die "Package ${PN} is unsupported" |
86 | die "Package ${PN} is unsupported" |
| 64 | fi |
87 | fi |
| 65 | |
88 | |
| 66 | econf ${myconf} ${MTVCONF} |
89 | econf ${myconf} ${MTVCONF} |
| 67 | |
90 | |
| 68 | ${QTDIR}/bin/qmake -o "Makefile" mythplugins.pro || die "qmake failed to run" |
91 | ${QTDIR}/bin/qmake QMAKE="${QTDIR}/bin/qmake" -o "Makefile" mythplugins.pro || die "qmake failed to run" |
| 69 | emake || die "make failed to compile" |
92 | emake || die "make failed to compile" |
| 70 | } |
93 | } |
| 71 | |
94 | |
| 72 | mythtv-plugins_src_install() { |
95 | mythtv-plugins_src_install() { |
| 73 | if hasq ${PN} ${MYTHPLUGINS} ; then |
96 | if hasq ${PN} ${MYTHPLUGINS} ; then |
| 74 | cd ${S}/${PN} |
97 | cd "${S}"/${PN} |
| 75 | else |
98 | else |
| 76 | die "Package ${PN} is unsupported" |
99 | die "Package ${PN} is unsupported" |
| 77 | fi |
100 | fi |
| 78 | |
101 | |
| 79 | einstall INSTALL_ROOT="${D}" |
102 | einstall INSTALL_ROOT="${D}" |
| 80 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
103 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
| 81 | test -e "${doc}" && dodoc ${doc} |
104 | test -e "${doc}" && dodoc ${doc} |
| 82 | done |
105 | done |
| 83 | } |
106 | } |
|
|
107 | |
|
|
108 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install |