summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-05-01 04:21:49 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-05-01 04:21:49 +0000
commit647dac4fe57765eb8e129ace635b4cb780976cdd (patch)
tree3796d5108db3c94c1ae680905dc04b6a50ceab7d /x11-misc/xfce4-notifyd
parentInclude a patch to allow building with subversion-1.6+, bug 264451 (diff)
downloadgentoo-2-647dac4fe57765eb8e129ace635b4cb780976cdd.tar.gz
gentoo-2-647dac4fe57765eb8e129ace635b4cb780976cdd.tar.bz2
gentoo-2-647dac4fe57765eb8e129ace635b4cb780976cdd.zip
Move use_enable out of global scope
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/xfce4-notifyd')
-rw-r--r--x11-misc/xfce4-notifyd/ChangeLog6
-rw-r--r--x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0.ebuild8
2 files changed, 10 insertions, 4 deletions
diff --git a/x11-misc/xfce4-notifyd/ChangeLog b/x11-misc/xfce4-notifyd/ChangeLog
index 59bd75651082..c3edcf8a19c2 100644
--- a/x11-misc/xfce4-notifyd/ChangeLog
+++ b/x11-misc/xfce4-notifyd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-misc/xfce4-notifyd
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-notifyd/ChangeLog,v 1.2 2009/04/03 10:59:25 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-notifyd/ChangeLog,v 1.3 2009/05/01 04:21:49 darkside Exp $
+
+ 01 May 2009; Jeremy Olexa <darkside@gentoo.org>
+ xfce4-notifyd-0.1.0.ebuild:
+ Move use_enable out of global scope
03 Apr 2009; <chainsaw@gentoo.org> xfce4-notifyd-0.1.0.ebuild:
Block x11-misc/notification-daemon as it provides the same D-Bus service.
diff --git a/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0.ebuild b/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0.ebuild
index 64bc54be45c7..50ecce31b0f0 100644
--- a/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0.ebuild
+++ b/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0.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/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0.ebuild,v 1.2 2009/04/03 10:59:25 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-notifyd/xfce4-notifyd-0.1.0.ebuild,v 1.3 2009/05/01 04:21:49 darkside Exp $
EAPI=1
@@ -26,6 +26,8 @@ DEPEND="${RDEPEND}
!x11-misc/notification-daemon
!xfce-extra/notification-daemon-xfce"
-XFCE_CONFIG=" $(use_enable libsexy) --enable-maintainer-mode"
-
DOCS="AUTHORS ChangeLog NEWS README TODO"
+
+pkg_setup() {
+ XFCE_CONFIG=" $(use_enable libsexy) --enable-maintainer-mode"
+}