Gentoo Archives: gentoo-commits

From: "Thomas Anderson (gentoofan23)" <gentoofan23@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: mythtv.eclass
Date: Tue, 04 Aug 2009 20:55:05
Message-Id: E1MYR2E-0003Xl-Fu@stork.gentoo.org
1 gentoofan23 09/08/04 20:55:02
2
3 Modified: mythtv.eclass
4 Log:
5 Fix S definition for PN=mythtv, conditionalize the S redifinition based on whether we're in a 'mythtv' ebuild.
6
7 Revision Changes Path
8 1.16 eclass/mythtv.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mythtv.eclass?rev=1.16&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mythtv.eclass?rev=1.16&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/mythtv.eclass?r1=1.15&r2=1.16
13
14 Index: mythtv.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/mythtv.eclass,v
17 retrieving revision 1.15
18 retrieving revision 1.16
19 diff -u -r1.15 -r1.16
20 --- mythtv.eclass 19 Jul 2009 04:12:59 -0000 1.15
21 +++ mythtv.eclass 4 Aug 2009 20:55:02 -0000 1.16
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2006 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv.eclass,v 1.15 2009/07/19 04:12:59 cardoe Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv.eclass,v 1.16 2009/08/04 20:55:02 gentoofan23 Exp $
27 #
28 # @ECLASS: mythtv.eclass
29 # @AUTHOR: Doug Goldstein <cardoe@g.o>
30 @@ -41,4 +41,4 @@
31 HOMEPAGE="http://www.mythtv.org"
32 LICENSE="GPL-2"
33 SRC_URI="http://svn.mythtv.org/trac/changeset/${MYTHTV_REV}/${MYTHTV_REPO}?old_path=%2F&format=zip -> ${MY_PN}-${PV}.zip"
34 -S="${WORKDIR}/${MYTHTV_REPO}"
35 +[[ ${PN} == mythtv ]] || S="${WORKDIR}/${MYTHTV_REPO}"