diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-09 17:50:46 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-09 17:50:46 +0000 |
commit | 57d55199e4b0b4658355e4be3331998f36a0301a (patch) | |
tree | 90763b40a1fae24423ccc128226f7ffe4f18c117 /xfce-extra | |
parent | Add USE=tk to control support for the -gui option #362721 by victor romanchuk. (diff) | |
download | gentoo-2-57d55199e4b0b4658355e4be3331998f36a0301a.tar.gz gentoo-2-57d55199e4b0b4658355e4be3331998f36a0301a.tar.bz2 gentoo-2-57d55199e4b0b4658355e4be3331998f36a0301a.zip |
Convert XFCONF to an array so we can remove the support it being a variable from the eclass
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-0.1.1.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-0.1.1.ebuild b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-0.1.1.ebuild index 3566768a46fc..81cf05649ed8 100644 --- a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-0.1.1.ebuild +++ b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-0.1.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-0.1.1.ebuild,v 1.3 2010/09/06 20:36:11 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-0.1.1.ebuild,v 1.4 2011/04/09 17:50:46 ssuominen Exp $ EAPI=3 inherit xfconf @@ -23,7 +23,9 @@ DEPEND="${RDEPEND} dev-util/intltool" pkg_setup() { - XFCONF="--disable-dependency-tracking - $(xfconf_use_debug)" + XFCONF=( + --disable-dependency-tracking + $(xfconf_use_debug) + ) DOCS="AUTHORS ChangeLog NEWS README THANKS TODO" } |