| 1 |
# Copyright 1999-2006 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv.eclass,v 1.7 2007/08/06 19:11:19 cardoe Exp $
|
| 4 |
#
|
| 5 |
# @ECLASS: mythtv.eclass
|
| 6 |
# @MAINTAINER: Doug Goldstein <cardoe@gentoo.org>
|
| 7 |
# @BLURB: Downloads the MythTV source packages and any patches from the fixes branch
|
| 8 |
#
|
| 9 |
|
| 10 |
inherit eutils versionator
|
| 11 |
|
| 12 |
# Release version
|
| 13 |
MY_PV="${PV%_*}"
|
| 14 |
|
| 15 |
# what product do we want
|
| 16 |
if [[ ${PN} = mythtv ]]; then
|
| 17 |
MY_PN="mythtv"
|
| 18 |
elif [[ ${PN} = mythtv-themes ]]; then
|
| 19 |
MY_PN="myththemes"
|
| 20 |
else
|
| 21 |
MY_PN="mythplugins"
|
| 22 |
fi
|
| 23 |
|
| 24 |
# _pre is from SVN trunk while _p is from SVN ${MY_PV}-fixes
|
| 25 |
if [[ ${MY_PV} != ${PV} ]]; then
|
| 26 |
if [[ $PV = *_pre* ]]; then
|
| 27 |
SVNREV="${PV##*_pre}"
|
| 28 |
ESVN_REPO_URI="http://svn.mythtv.org/svn/trunk/${MY_PN}"
|
| 29 |
elif [[ $PV = *_p* || $PV = *_beta* ]]; then
|
| 30 |
PATCHREV="${PV##*_p}"
|
| 31 |
# as of 0.20_p13783, we're using svn always
|
| 32 |
if [[ $PATCHREV -gt 13783 ]]; then
|
| 33 |
SVNREV=$PATCHREV
|
| 34 |
unset PATCHREV
|
| 35 |
VER_COMP=( $(get_version_components ${MY_PV}) )
|
| 36 |
FIXES_VER="${VER_COMP[0]}-${VER_COMP[1]}"
|
| 37 |
ESVN_REPO_URI="http://svn.mythtv.org/svn/branches/release-${FIXES_VER}-fixes/${MY_PN}"
|
| 38 |
fi
|
| 39 |
fi
|
| 40 |
fi
|
| 41 |
|
| 42 |
ESVN_OPTIONS="-r ${SVNREV}"
|
| 43 |
|
| 44 |
HOMEPAGE="http://www.mythtv.org"
|
| 45 |
LICENSE="GPL-2"
|
| 46 |
SRC_URI=""
|
| 47 |
if [[ -z ${SVNREV} ]] ; then
|
| 48 |
SRC_URI="${SRC_URI} mirror://gentoo/${MY_PN}-${MY_PV}.tar.bz2"
|
| 49 |
fi
|
| 50 |
if [[ -n ${PATCHREV} ]] ; then
|
| 51 |
SRC_URI="${SRC_URI}
|
| 52 |
http://dev.gentoo.org/~cardoe/files/mythtv/${MY_PN}-${MY_PV}_svn${PATCHREV}.patch.bz2"
|
| 53 |
fi
|
| 54 |
|
| 55 |
mythtv-fixes_patch() {
|
| 56 |
if [[ -n ${PATCHREV} ]]; then
|
| 57 |
epatch ${WORKDIR}/${MY_PN}-${MY_PV}_svn${PATCHREV}.patch
|
| 58 |
fi
|
| 59 |
}
|