summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDoug Goldstein <cardoe@gentoo.org>2009-10-31 22:10:58 +0000
committerDoug Goldstein <cardoe@gentoo.org>2009-10-31 22:10:58 +0000
commit4dfe92a5008100fbaaa93fb7685b934a2983cd44 (patch)
treefb30761f01f0f7366f7270cd7ba721df9bfa46dd /eclass
parentVersion bump (diff)
downloadhistorical-4dfe92a5008100fbaaa93fb7685b934a2983cd44.tar.gz
historical-4dfe92a5008100fbaaa93fb7685b934a2983cd44.tar.bz2
historical-4dfe92a5008100fbaaa93fb7685b934a2983cd44.zip
update MYTHTV_REPO to only contain the path to the specific branch and not the product as well
Diffstat (limited to 'eclass')
-rw-r--r--eclass/mythtv.eclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/mythtv.eclass b/eclass/mythtv.eclass
index 2762aa68b082..6e71b55dc092 100644
--- a/eclass/mythtv.eclass
+++ b/eclass/mythtv.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv.eclass,v 1.18 2009/10/16 04:26:15 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv.eclass,v 1.19 2009/10/31 22:10:58 cardoe Exp $
#
# @ECLASS: mythtv.eclass
# @AUTHOR: Doug Goldstein <cardoe@gentoo.org>
@@ -32,13 +32,13 @@ REV_PREFIX="${BASH_REMATCH[1]}" # _alpha, _beta, _pre, _rc, or _p
MYTHTV_REV="${BASH_REMATCH[2]}" # revision number
case $REV_PREFIX in
- _pre|_alpha) MYTHTV_REPO="trunk/${MY_PN}";;
+ _pre|_alpha) MYTHTV_REPO="trunk";;
_p|_beta|_rc) VER_COMP=( $(get_version_components ${MY_PV}) )
FIXES_VER="${VER_COMP[0]}-${VER_COMP[1]}"
- MYTHTV_REPO="branches/release-${FIXES_VER}-fixes/${MY_PN}";;
+ MYTHTV_REPO="branches/release-${FIXES_VER}-fixes";;
esac
HOMEPAGE="http://www.mythtv.org"
LICENSE="GPL-2"
-SRC_URI="http://svn.mythtv.org/trac/changeset/${MYTHTV_REV}/${MYTHTV_REPO}?old_path=%2F&format=zip -> ${MY_PN}-${PV}.zip"
-S="${WORKDIR}/${MYTHTV_REPO}"
+SRC_URI="http://svn.mythtv.org/trac/changeset/${MYTHTV_REV}/${MYTHTV_REPO}/${MY_PN}?old_path=%2F&format=zip -> ${MY_PN}-${PV}.zip"
+S="${WORKDIR}/${MYTHTV_REPO}/${MY_PN}"