| 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.13 2008/04/01 04:05:02 cardoe Exp $
|
| 4 |
#
|
| 5 |
# @ECLASS: mythtv.eclass
|
| 6 |
# @AUTHOR: Doug Goldstein <cardoe@gentoo.org>
|
| 7 |
# @MAINTAINER: Doug Goldstein <cardoe@gentoo.org>
|
| 8 |
# @BLURB: Downloads the MythTV source packages and any patches from the fixes branch
|
| 9 |
#
|
| 10 |
|
| 11 |
inherit versionator
|
| 12 |
|
| 13 |
# Release version
|
| 14 |
MY_PV="${PV%_*}"
|
| 15 |
|
| 16 |
# what product do we want
|
| 17 |
case "${PN}" in
|
| 18 |
mythtv) MY_PN="mythtv";;
|
| 19 |
mythtv-themes) MY_PN="myththemes";;
|
| 20 |
mythtv-themes-extra) MY_PN="themes";;
|
| 21 |
*) MY_PN="mythplugins";;
|
| 22 |
esac
|
| 23 |
|
| 24 |
# _pre is from SVN trunk while _p and _beta are from SVN ${MY_PV}-fixes
|
| 25 |
# TODO: probably ought to do something smart if the regex doesn't match anything
|
| 26 |
[[ "${PV}" =~ (_beta|_pre|_p|_alpha)([0-9]+) ]] || {
|
| 27 |
eerror "Invalid version requested (_alpha|_beta|_pre|_p) only"
|
| 28 |
exit 1
|
| 29 |
}
|
| 30 |
|
| 31 |
REV_PREFIX="${BASH_REMATCH[1]}" # _beta, _pre, or _p
|
| 32 |
MYTHTV_REV="${BASH_REMATCH[2]}" # revision number
|
| 33 |
|
| 34 |
case $REV_PREFIX in
|
| 35 |
_pre|_alpha) MYTHTV_REPO="trunk/${MY_PN}";;
|
| 36 |
_p|_beta) VER_COMP=( $(get_version_components ${MY_PV}) )
|
| 37 |
FIXES_VER="${VER_COMP[0]}-${VER_COMP[1]}"
|
| 38 |
MYTHTV_REPO="branches/release-${FIXES_VER}-fixes/${MY_PN}";;
|
| 39 |
esac
|
| 40 |
|
| 41 |
HOMEPAGE="http://www.mythtv.org"
|
| 42 |
LICENSE="GPL-2"
|
| 43 |
SRC_URI="http://svn.mythtv.org/trac/changeset/${MYTHTV_REV}/${MYTHTV_REPO}?old_path=%2F&format=zip -> ${P}.zip"
|
| 44 |
S="${WORKDIR}/${MYTHTV_REPO}"
|