diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-02-25 17:24:57 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-02-25 17:24:57 +0000 |
commit | c59cd28d1ec49e1be4c4f54f1f566317ea3bee62 (patch) | |
tree | 73f4b5fef0c4cb0dd9fd02990ac042b43eb631f0 /x11-plugins/wmfire/wmfire-1.2.3.ebuild | |
parent | Fix patch names (thanks to Tobias Schlitt on IRC). (diff) | |
download | gentoo-2-c59cd28d1ec49e1be4c4f54f1f566317ea3bee62.tar.gz gentoo-2-c59cd28d1ec49e1be4c4f54f1f566317ea3bee62.tar.bz2 gentoo-2-c59cd28d1ec49e1be4c4f54f1f566317ea3bee62.zip |
USE flag session for libSM and libICE, amd64 stable.
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-plugins/wmfire/wmfire-1.2.3.ebuild')
-rw-r--r-- | x11-plugins/wmfire/wmfire-1.2.3.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/x11-plugins/wmfire/wmfire-1.2.3.ebuild b/x11-plugins/wmfire/wmfire-1.2.3.ebuild index ccb9d797b3fc..fc171b43cb31 100644 --- a/x11-plugins/wmfire/wmfire-1.2.3.ebuild +++ b/x11-plugins/wmfire/wmfire-1.2.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/wmfire-1.2.3.ebuild,v 1.1 2008/01/12 11:39:27 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmfire/wmfire-1.2.3.ebuild,v 1.2 2008/02/25 17:24:57 drac Exp $ inherit eutils @@ -10,15 +10,15 @@ SRC_URI="http://www.swanson.ukfsn.org/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="" +KEYWORDS="amd64 ~ppc ~sparc ~x86" +IUSE="session" RDEPEND=">=x11-libs/gtk+-2 >=gnome-base/libgtop-2 - x11-libs/libSM - x11-libs/libICE x11-libs/libX11 - x11-libs/libXext" + x11-libs/libXext + session? ( x11-libs/libSM + x11-libs/libICE )" DEPEND="${RDEPEND} dev-util/pkgconfig" @@ -29,7 +29,7 @@ src_unpack() { } src_compile() { - econf --enable-session + econf $(use_enable session) emake || die "emake failed." } |