diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2003-11-22 16:54:25 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2003-11-22 16:54:25 +0000 |
commit | ced0fdfef8c10dafc63493995d2ec1dab65bf997 (patch) | |
tree | d7591f3845d4d00a2a984693019bd2851d452054 /x11-misc/hotkeys/hotkeys-0.5.7.1.ebuild | |
parent | Updated Syncmal and Malsync, closing bug #33355. (diff) | |
download | gentoo-2-ced0fdfef8c10dafc63493995d2ec1dab65bf997.tar.gz gentoo-2-ced0fdfef8c10dafc63493995d2ec1dab65bf997.tar.bz2 gentoo-2-ced0fdfef8c10dafc63493995d2ec1dab65bf997.zip |
gtk2 use flag fix
Diffstat (limited to 'x11-misc/hotkeys/hotkeys-0.5.7.1.ebuild')
-rw-r--r-- | x11-misc/hotkeys/hotkeys-0.5.7.1.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11-misc/hotkeys/hotkeys-0.5.7.1.ebuild b/x11-misc/hotkeys/hotkeys-0.5.7.1.ebuild index e20a543c7735..c7a4f53ba006 100644 --- a/x11-misc/hotkeys/hotkeys-0.5.7.1.ebuild +++ b/x11-misc/hotkeys/hotkeys-0.5.7.1.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/hotkeys/hotkeys-0.5.7.1.ebuild,v 1.5 2003/09/05 23:18:18 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/hotkeys/hotkeys-0.5.7.1.ebuild,v 1.6 2003/11/22 16:54:20 lanius Exp $ S=${WORKDIR}/${P} DESCRIPTION="Make use of extra buttons on newer keyboards." SRC_URI="http://ypwong.org/hotkeys/${PV}/${PN}_${PV}.tar.gz" HOMEPAGE="http://ypwong.org/hotkeys/" -IUSE="" +IUSE="gtk" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ~sparc" @@ -16,7 +16,7 @@ DEPEND="virtual/x11 =sys-libs/db-3.2* !>=sys-libs/db-4* >=x11-libs/xosd-1.0.0 - gtk2? ( >=x11-libs/gtk+-2.0.0 )" + gtk? ( >=x11-libs/gtk+-2.0.0 )" src_unpack() { unpack ${A} @@ -28,7 +28,7 @@ src_compile() { local myconf="--with-xosd" - use gtk2 \ + use gtk \ && myconf="${myconf} --with-gtk" econf ${myconf} || die "./configure failed" |