diff options
author | 2005-09-07 18:18:51 +0000 | |
---|---|---|
committer | 2005-09-07 18:18:51 +0000 | |
commit | 31741342c96f1926c840f6f955a5b046d2ebd784 (patch) | |
tree | 55dafa9b935fe093db8233c57de64fe29c4aee22 /xfce-extra | |
parent | Remove dbus dep for bug #104951. (diff) | |
download | gentoo-2-31741342c96f1926c840f6f955a5b046d2ebd784.tar.gz gentoo-2-31741342c96f1926c840f6f955a5b046d2ebd784.tar.bz2 gentoo-2-31741342c96f1926c840f6f955a5b046d2ebd784.zip |
Fix dbus conditional dep for bug #104951.
(Portage version: 1.589-cvs)
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/terminal/ChangeLog | 5 | ||||
-rw-r--r-- | xfce-extra/terminal/terminal-0.2.4.ebuild | 12 |
2 files changed, 14 insertions, 3 deletions
diff --git a/xfce-extra/terminal/ChangeLog b/xfce-extra/terminal/ChangeLog index 6a224ba360ed..c64024f6ac77 100644 --- a/xfce-extra/terminal/ChangeLog +++ b/xfce-extra/terminal/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-extra/terminal # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/terminal/ChangeLog,v 1.8 2005/06/12 14:30:24 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/terminal/ChangeLog,v 1.9 2005/09/07 18:18:51 bcowan Exp $ + + 07 Sep 2005; Brad Cowan <bcowan@gentoo.org> terminal-0.2.4.ebuild: + Add dbus as conditional dep. 12 Jun 2005; Sven Wegener <swegener@gentoo.org> terminal-0.2.2-r1.ebuild, terminal-0.2.4_pre1.ebuild, terminal-0.2.4.ebuild: diff --git a/xfce-extra/terminal/terminal-0.2.4.ebuild b/xfce-extra/terminal/terminal-0.2.4.ebuild index 4f448256f634..f15e719e7536 100644 --- a/xfce-extra/terminal/terminal-0.2.4.ebuild +++ b/xfce-extra/terminal/terminal-0.2.4.ebuild @@ -1,17 +1,25 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/terminal/terminal-0.2.4.ebuild,v 1.2 2005/06/12 14:30:24 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/terminal/terminal-0.2.4.ebuild,v 1.3 2005/09/07 18:18:51 bcowan Exp $ DESCRIPTION="Terminal with close ties to xfce" HOMEPAGE="http://www.os-cillation.com/" KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="dbus" + RDEPEND=">=x11-libs/gtk+-2.4 >=xfce-extra/exo-0.3.0_pre1 + dbus? ( =sys-apps/dbus ) >=x11-libs/vte-0.11.11 >=xfce-base/libxfce4mcs-4.2.0" + MY_P="${PN/t/T}-${PV/_/}" BZIPPED=1 GOODIES=1 -inherit xfce4 +if ! use dbus; then + XFCE_CONFIG="--disable-dbus" +fi + +inherit xfce4
\ No newline at end of file |