diff options
author | 2007-02-09 16:31:59 +0000 | |
---|---|---|
committer | 2007-02-09 16:31:59 +0000 | |
commit | 18d88111ccc19406f09fa812ac3a81d6a5c6a4ed (patch) | |
tree | ece0f2fe6e8c19944644955ea0b6b3d878a43cc4 /x11-misc/xbindkeys | |
parent | Adjust USE plugins description in thunar and xfdesktop lines. (diff) | |
download | gentoo-2-18d88111ccc19406f09fa812ac3a81d6a5c6a4ed.tar.gz gentoo-2-18d88111ccc19406f09fa812ac3a81d6a5c6a4ed.tar.bz2 gentoo-2-18d88111ccc19406f09fa812ac3a81d6a5c6a4ed.zip |
Version bump, bug #166036.
(Portage version: 2.1.2-r9)
Diffstat (limited to 'x11-misc/xbindkeys')
-rw-r--r-- | x11-misc/xbindkeys/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xbindkeys/files/digest-xbindkeys-1.8.0 | 3 | ||||
-rw-r--r-- | x11-misc/xbindkeys/xbindkeys-1.8.0.ebuild | 38 |
3 files changed, 48 insertions, 1 deletions
diff --git a/x11-misc/xbindkeys/ChangeLog b/x11-misc/xbindkeys/ChangeLog index cbf07b2cdd00..44c6673ae713 100644 --- a/x11-misc/xbindkeys/ChangeLog +++ b/x11-misc/xbindkeys/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/xbindkeys # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/ChangeLog,v 1.45 2007/01/10 18:40:34 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/ChangeLog,v 1.46 2007/02/09 16:31:59 nelchael Exp $ + +*xbindkeys-1.8.0 (09 Feb 2007) + + 09 Feb 2007; Krzysiek Pawlik <nelchael@gentoo.org> + +xbindkeys-1.8.0.ebuild: + Version bump, bug #166036. 10 Jan 2007; Piotr Jaroszyński <peper@gentoo.org> Manifest: Fix Manifest. diff --git a/x11-misc/xbindkeys/files/digest-xbindkeys-1.8.0 b/x11-misc/xbindkeys/files/digest-xbindkeys-1.8.0 new file mode 100644 index 000000000000..76e48af2ec63 --- /dev/null +++ b/x11-misc/xbindkeys/files/digest-xbindkeys-1.8.0 @@ -0,0 +1,3 @@ +MD5 71755c23faa113e891de6f2f871e0c76 xbindkeys-1.8.0.tar.gz 129930 +RMD160 09ff8520b2b8865ae2cd7218b9acf2a87ed29286 xbindkeys-1.8.0.tar.gz 129930 +SHA256 c422637814d76cf6f85acc9b3372fede6ea7295b2c31884ac68ee4833cf06f79 xbindkeys-1.8.0.tar.gz 129930 diff --git a/x11-misc/xbindkeys/xbindkeys-1.8.0.ebuild b/x11-misc/xbindkeys/xbindkeys-1.8.0.ebuild new file mode 100644 index 000000000000..b7e231dff8f8 --- /dev/null +++ b/x11-misc/xbindkeys/xbindkeys-1.8.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xbindkeys/xbindkeys-1.8.0.ebuild,v 1.1 2007/02/09 16:31:59 nelchael Exp $ + +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="~amd64 ~ppc ~ppc-macos ~ppc64 ~sparc ~x86" +SLOT="0" + +IUSE="guile tk" + +RDEPEND="|| ( x11-libs/libX11 virtual/x11 ) + guile? ( dev-scheme/guile ) + tk? ( dev-lang/tk )" + +DEPEND="${RDEPEND} + || ( x11-proto/xproto virtual/x11 )" + +src_compile() { + + local myconf + use tk || 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" + +} |