diff options
author | Markus Nigbur <pyrania@gentoo.org> | 2004-07-03 13:34:18 +0000 |
---|---|---|
committer | Markus Nigbur <pyrania@gentoo.org> | 2004-07-03 13:34:18 +0000 |
commit | a5c121c1c6a551f00e09aac9e2ef41117df58e92 (patch) | |
tree | 2073f167b7a9ebbf9172de7227cf07b6e0c92c19 /x11-misc | |
parent | marked stable on x86 (diff) | |
download | historical-a5c121c1c6a551f00e09aac9e2ef41117df58e92.tar.gz historical-a5c121c1c6a551f00e09aac9e2ef41117df58e92.tar.bz2 historical-a5c121c1c6a551f00e09aac9e2ef41117df58e92.zip |
Version bump. Closing bug #53472.
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xbindkeys/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/xbindkeys/files/digest-xbindkeys-1.7.1 | 1 | ||||
-rw-r--r-- | x11-misc/xbindkeys/xbindkeys-1.7.1.ebuild | 32 |
3 files changed, 39 insertions, 1 deletions
diff --git a/x11-misc/xbindkeys/ChangeLog b/x11-misc/xbindkeys/ChangeLog index db26fc0a2b2a..1b7315a259aa 100644 --- a/x11-misc/xbindkeys/ChangeLog +++ b/x11-misc/xbindkeys/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xbindkeys # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/ChangeLog,v 1.13 2004/06/24 22:38:32 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/ChangeLog,v 1.14 2004/07/03 13:34:18 pyrania Exp $ + +*xbindkeys-1.7.1 (03 Jul 2004) + + 03 Jul 2004; <pyrania@gentoo.org> +xbindkeys-1.7.1.ebuild: + Version bump. Closing bug #53472. 30 Apr 2004; Gustavo Zacarias <gustavoz@gentoo.org> xbindkeys-1.7.0.ebuild: Stable on sparc diff --git a/x11-misc/xbindkeys/files/digest-xbindkeys-1.7.1 b/x11-misc/xbindkeys/files/digest-xbindkeys-1.7.1 new file mode 100644 index 000000000000..57af321fc43d --- /dev/null +++ b/x11-misc/xbindkeys/files/digest-xbindkeys-1.7.1 @@ -0,0 +1 @@ +MD5 9176ee5d331160dc3dfafc41e8ec6925 xbindkeys-1.7.1.tar.gz 115892 diff --git a/x11-misc/xbindkeys/xbindkeys-1.7.1.ebuild b/x11-misc/xbindkeys/xbindkeys-1.7.1.ebuild new file mode 100644 index 000000000000..0938efc6d531 --- /dev/null +++ b/x11-misc/xbindkeys/xbindkeys-1.7.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/xbindkeys-1.7.1.ebuild,v 1.1 2004/07/03 13:34:18 pyrania Exp $ + +IUSE="guile tcltk" + +DESCRIPTION="Tool for launching commands on keystrokes" +SRC_URI="http://hocwp.free.fr/xbindkeys/${P}.tar.gz" +HOMEPAGE="http://hocwp.free.fr/xbindkeys/" +LICENSE="GPL-2" +KEYWORDS="x86 ~ppc ~amd64 sparc" +SLOT="0" + +DEPEND="virtual/x11 + guile? ( dev-util/guile ) + tcltk? ( dev-lang/tk )" + +src_compile() { + local myconf + use tcltk || myconf="${myconf} --disable-tk" + use guile || myconf="${myconf} --disable-guile" + econf ${myconf} || die + emake DESTDIR=${D} || die + +} + +src_install() { + emake DESTDIR=${D} \ + BINDIR=/usr/bin install || die "Installation failed" + +} + |