diff options
author | 2009-04-28 01:16:55 +0000 | |
---|---|---|
committer | 2009-04-28 01:16:55 +0000 | |
commit | 37f62f8e011cb5a7afb967f929385ec753780fb5 (patch) | |
tree | 75afeac47fbf0364ce74042708763c1da0b9c8d5 /xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild | |
parent | Initial commit (bug #231864) (diff) | |
download | historical-37f62f8e011cb5a7afb967f929385ec753780fb5.tar.gz historical-37f62f8e011cb5a7afb967f929385ec753780fb5.tar.bz2 historical-37f62f8e011cb5a7afb967f929385ec753780fb5.zip |
Move use_enable out of global scope into pkg_setup()
Package-Manager: portage-2.1.6.11/cvs/Linux x86_64
Diffstat (limited to 'xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild')
-rw-r--r-- | xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild b/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild index f87e0aa93d58..4cebd36e29dd 100644 --- a/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild +++ b/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild,v 1.1 2009/04/21 04:26:16 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild,v 1.2 2009/04/28 01:14:04 darkside Exp $ inherit xfce4 @@ -28,6 +28,8 @@ RDEPEND="gnome-base/libglade DEPEND="${RDEPEND} dev-util/intltool" -XFCE_CONFIG+=" $(use_enable gnome)" - DOCS="AUTHORS BUGS ChangeLog NEWS README TODO" + +pkg_setup() { + XFCE_CONFIG+=" $(use_enable gnome)" +} |