summaryrefslogtreecommitdiff
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
commit997396f199a4dcb72739800c25bd93be011ccca2 (patch)
tree025bee8271e18a75f6e9980a00eab2b7bc2bdcff
parentVersion bump (diff)
downloadgentoo-2-997396f199a4dcb72739800c25bd93be011ccca2.tar.gz
gentoo-2-997396f199a4dcb72739800c25bd93be011ccca2.tar.bz2
gentoo-2-997396f199a4dcb72739800c25bd93be011ccca2.zip
update MYTHTV_REPO to only contain the path to the specific branch and not the product as well
-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}"