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