diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-05-01 04:28:50 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-05-01 04:28:50 +0000 |
commit | 860c4100ef5765b82b48447256a774157ad39d39 (patch) | |
tree | c70402f7ca4d7bfe704c439520bd883122f059cc /xfce-base | |
parent | Move use_enable out of global scope (diff) | |
download | gentoo-2-860c4100ef5765b82b48447256a774157ad39d39.tar.gz gentoo-2-860c4100ef5765b82b48447256a774157ad39d39.tar.bz2 gentoo-2-860c4100ef5765b82b48447256a774157ad39d39.zip |
Move use_enable out of global scope
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'xfce-base')
-rw-r--r-- | xfce-base/xfce-utils/ChangeLog | 5 | ||||
-rw-r--r-- | xfce-base/xfce-utils/xfce-utils-4.4.3.ebuild | 13 |
2 files changed, 12 insertions, 6 deletions
diff --git a/xfce-base/xfce-utils/ChangeLog b/xfce-base/xfce-utils/ChangeLog index c6040bf4bc8b..483277c534c2 100644 --- a/xfce-base/xfce-utils/ChangeLog +++ b/xfce-base/xfce-utils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/xfce-utils # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/ChangeLog,v 1.133 2009/04/21 04:25:16 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/ChangeLog,v 1.134 2009/05/01 04:28:50 darkside Exp $ + + 01 May 2009; Jeremy Olexa <darkside@gentoo.org> xfce-utils-4.4.3.ebuild: + Move use_enable out of global scope *xfce-utils-4.6.1 (21 Apr 2009) diff --git a/xfce-base/xfce-utils/xfce-utils-4.4.3.ebuild b/xfce-base/xfce-utils/xfce-utils-4.4.3.ebuild index 9d1c8e6c2071..057e9ef560a2 100644 --- a/xfce-base/xfce-utils/xfce-utils-4.4.3.ebuild +++ b/xfce-base/xfce-utils/xfce-utils-4.4.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/xfce-utils-4.4.3.ebuild,v 1.6 2008/12/15 04:58:00 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/xfce-utils-4.4.3.ebuild,v 1.7 2009/05/01 04:28:50 darkside Exp $ EAPI=1 @@ -28,7 +28,12 @@ RDEPEND="x11-apps/xrdb gnome-extra/gnome-screensaver x11-misc/xlockmore ) )" -XFCE_CONFIG="${XFCE_CONFIG} $(use_enable dbus) --enable-gdm --with-vendor-info=Gentoo" +DOCS="AUTHORS ChangeLog NEWS README TODO" + +pkg_setup() { + XFCE_CONFIG="${XFCE_CONFIG} $(use_enable dbus) --enable-gdm \ + --with-vendor-info=Gentoo" +} src_unpack() { unpack ${A} @@ -41,5 +46,3 @@ src_install() { insinto /usr/share/xfce4 doins "${FILESDIR}"/Gentoo } - -DOCS="AUTHORS ChangeLog NEWS README TODO" |