| 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.27 2007/08/07 19:19:52 cardoe Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.37 2010/06/13 07:02:31 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 | # 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 |
| 24 | |
30 | RESTRICT="strip" |
| 25 | # hijacks the plugins checkout to be: |
|
|
| 26 | # /usr/portage/distfiles/svn-src/mythplugins/mythplugins/mythvideo/ |
|
|
| 27 | # so that each of the plugins can share the same svn checkout |
|
|
| 28 | # saving HD space and number of svn checkouts reqired |
|
|
| 29 | # Great suggestion by Tom Clift <tom@clift.name> |
|
|
| 30 | ESVN_PROJECT="mythplugins" |
|
|
| 31 | |
31 | |
| 32 | mythtv-plugins_pkg_setup() { |
32 | mythtv-plugins_pkg_setup() { |
| 33 | # 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) |
| 34 | MYTHPLUGINS="mythbrowser mythcontrols mythdvd mythflix mythgallery" |
34 | MYTHPLUGINS="mythbrowser mythcontrols mythdvd mythflix mythgallery" |
| 35 | MYTHPLUGINS="${MYTHPLUGINS} mythgame mythmusic mythnews mythphone" |
35 | MYTHPLUGINS="${MYTHPLUGINS} mythgame mythmusic mythnews mythphone" |
| … | |
… | |
| 37 | |
37 | |
| 38 | if version_is_at_least "0.20" ; then |
38 | if version_is_at_least "0.20" ; then |
| 39 | MYTHPLUGINS="${MYTHPLUGINS} mytharchive" |
39 | MYTHPLUGINS="${MYTHPLUGINS} mytharchive" |
| 40 | fi |
40 | fi |
| 41 | |
41 | |
| 42 | if version_is_at_least "0.21_pre" ; then |
42 | if version_is_at_least "0.21_beta" ; then |
| 43 | MYTHPLUGINS="${MYTHPLUGINS} mythzoneminder mythmovies" |
43 | MYTHPLUGINS="${MYTHPLUGINS} mythzoneminder mythmovies" |
| 44 | MYTHPLUGINS="${MYTHPLUGINS/mythdvd/}" |
44 | MYTHPLUGINS="${MYTHPLUGINS/mythdvd/}" |
| 45 | fi |
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" |
|
|
55 | fi |
| 46 | } |
56 | } |
| 47 | |
57 | |
| 48 | mythtv-plugins_src_unpack() { |
58 | mythtv-plugins_src_prepare() { |
| 49 | if [ -n "${SVNREV}" ]; then |
|
|
| 50 | subversion_src_unpack |
|
|
| 51 | else |
|
|
| 52 | unpack ${A} |
|
|
| 53 | fi |
|
|
| 54 | |
|
|
| 55 | mythtv-plugins_src_unpack_patch |
|
|
| 56 | } |
|
|
| 57 | |
|
|
| 58 | mythtv-plugins_src_unpack_patch() { |
|
|
| 59 | cd "${S}" |
|
|
| 60 | |
|
|
| 61 | mythtv-fixes_patch |
|
|
| 62 | |
|
|
| 63 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
59 | sed -e 's!PREFIX = /usr/local!PREFIX = /usr!' \ |
| 64 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
60 | -i 'settings.pro' || die "fixing PREFIX to /usr failed" |
| 65 | |
61 | |
| 66 | 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}!" \ |
| 67 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
63 | -i 'settings.pro' || die "Fixing QMake's CXXFLAGS failed" |
| … | |
… | |
| 73 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
69 | -e "s:\$\${PREFIX}/lib/:\$\${PREFIX}/$(get_libdir)/:g" \ |
| 74 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
70 | -e "s:\$\${PREFIX}/lib$:\$\${PREFIX}/$(get_libdir):g" \ |
| 75 | {} \; |
71 | {} \; |
| 76 | } |
72 | } |
| 77 | |
73 | |
| 78 | mythtv-plugins_src_compile() { |
74 | mythtv-plugins_src_configure() { |
| 79 | cd "${S}" |
75 | cd "${S}" |
| 80 | |
76 | |
| 81 | if use debug; then |
77 | if use debug; then |
| 82 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
78 | sed -e 's!CONFIG += release!CONFIG += debug!' \ |
| 83 | -i 'settings.pro' || die "switching to debug build failed" |
79 | -i 'settings.pro' || die "switching to debug build failed" |
| … | |
… | |
| 101 | done |
97 | done |
| 102 | else |
98 | else |
| 103 | die "Package ${PN} is unsupported" |
99 | die "Package ${PN} is unsupported" |
| 104 | fi |
100 | fi |
| 105 | |
101 | |
|
|
102 | chmod +x configure |
| 106 | econf ${myconf} ${MTVCONF} |
103 | econf ${myconf} ${MTVCONF} |
|
|
104 | } |
| 107 | |
105 | |
| 108 | ${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 |
| 109 | emake || die "make failed to compile" |
112 | emake || die "make failed to compile" |
| 110 | } |
113 | } |
| 111 | |
114 | |
| 112 | mythtv-plugins_src_install() { |
115 | mythtv-plugins_src_install() { |
| 113 | if hasq ${PN} ${MYTHPLUGINS} ; then |
116 | if hasq ${PN} ${MYTHPLUGINS} ; then |
| … | |
… | |
| 120 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
123 | for doc in AUTHORS COPYING FAQ UPGRADING ChangeLog README; do |
| 121 | test -e "${doc}" && dodoc ${doc} |
124 | test -e "${doc}" && dodoc ${doc} |
| 122 | done |
125 | done |
| 123 | } |
126 | } |
| 124 | |
127 | |
| 125 | EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install |
128 | EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_compile src_install |