summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorThomas Anderson <tanderson@gentoo.org>2009-01-13 23:16:10 +0000
committerThomas Anderson <tanderson@gentoo.org>2009-01-13 23:16:10 +0000
commit1cf6b6457db7f1b3f91278b3da0f61c7293d6277 (patch)
treee3731a99eaf68aa312484091b61e8b2af11b30a4 /eclass
parentFix weirdness in configure, as reported in bug #238052. Thanks to Patrick Bec... (diff)
downloadhistorical-1cf6b6457db7f1b3f91278b3da0f61c7293d6277.tar.gz
historical-1cf6b6457db7f1b3f91278b3da0f61c7293d6277.tar.bz2
historical-1cf6b6457db7f1b3f91278b3da0f61c7293d6277.zip
Add presource variable for plugins that don't need mythtv/qt/mysql dependencies(mythzoneminder)
Diffstat (limited to 'eclass')
-rw-r--r--eclass/mythtv-plugins.eclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/mythtv-plugins.eclass b/eclass/mythtv-plugins.eclass
index f6c1975ea479..b9833c3849d0 100644
--- a/eclass/mythtv-plugins.eclass
+++ b/eclass/mythtv-plugins.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-plugins.eclass,v 1.33 2009/01/10 14:00:15 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.34 2009/01/13 23:16:10 gentoofan23 Exp $
#
# Author: Doug Goldstein <cardoe@gentoo.org>
#
@@ -14,11 +14,13 @@ MTVCONF=${MTVCONF:=""}
SLOT="0"
IUSE="${IUSE} debug mmx"
+if [[ -z $MYTHTV_NODEPS ]] ; then
RDEPEND="${RDEPEND}
=media-tv/mythtv-${MY_PV}*"
DEPEND="${DEPEND}
=media-tv/mythtv-${MY_PV}*
>=sys-apps/sed-4"
+fi
S="${WORKDIR}/mythplugins-${MY_PV}"