diff options
author | Thomas Anderson <gentoofan23@gentoo.org> | 2009-01-13 23:16:10 +0000 |
---|---|---|
committer | Thomas Anderson <gentoofan23@gentoo.org> | 2009-01-13 23:16:10 +0000 |
commit | f4f4b9408d0dc659113d957dabebfd2d2873d87b (patch) | |
tree | 62d8497ae04e3ccf1efa39e4ccb3f2cf81f53491 /eclass/mythtv-plugins.eclass | |
parent | Bump kde to 4.1.4 (diff) | |
download | gentoo-2-f4f4b9408d0dc659113d957dabebfd2d2873d87b.tar.gz gentoo-2-f4f4b9408d0dc659113d957dabebfd2d2873d87b.tar.bz2 gentoo-2-f4f4b9408d0dc659113d957dabebfd2d2873d87b.zip |
Add presource variable for plugins that don't need mythtv/qt/mysql dependencies(mythzoneminder)
Diffstat (limited to 'eclass/mythtv-plugins.eclass')
-rw-r--r-- | eclass/mythtv-plugins.eclass | 4 |
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}" |