summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-10-21 09:59:15 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-10-21 09:59:15 +0000
commit70d85d6885771bdd569819f2297864e0b495e860 (patch)
tree38f47aa836fcf9486f4d421d8208115dd387f15e /dev-libs/keybinder
parentVersion bump, drop old. (diff)
downloadgentoo-2-70d85d6885771bdd569819f2297864e0b495e860.tar.gz
gentoo-2-70d85d6885771bdd569819f2297864e0b495e860.tar.bz2
gentoo-2-70d85d6885771bdd569819f2297864e0b495e860.zip
old
(Portage version: 2.2.0_alpha135/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/keybinder')
-rw-r--r--dev-libs/keybinder/ChangeLog5
-rw-r--r--dev-libs/keybinder/keybinder-0.2.2.ebuild65
2 files changed, 4 insertions, 66 deletions
diff --git a/dev-libs/keybinder/ChangeLog b/dev-libs/keybinder/ChangeLog
index a97005a4ed5c..a1f92d65b1ae 100644
--- a/dev-libs/keybinder/ChangeLog
+++ b/dev-libs/keybinder/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/keybinder
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/keybinder/ChangeLog,v 1.10 2012/10/16 21:52:25 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/keybinder/ChangeLog,v 1.11 2012/10/21 09:59:15 ssuominen Exp $
+
+ 21 Oct 2012; Samuli Suominen <ssuominen@gentoo.org> -keybinder-0.2.2.ebuild:
+ old
16 Oct 2012; Markus Meier <maekke@gentoo.org> keybinder-0.3.0-r200.ebuild:
add ~arm, bug #437156
diff --git a/dev-libs/keybinder/keybinder-0.2.2.ebuild b/dev-libs/keybinder/keybinder-0.2.2.ebuild
deleted file mode 100644
index 91f73c11a254..000000000000
--- a/dev-libs/keybinder/keybinder-0.2.2.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/keybinder/keybinder-0.2.2.ebuild,v 1.5 2012/05/04 18:35:55 jdhore Exp $
-
-EAPI=3
-
-PYTHON_DEPEND="python? 2:2.5"
-
-inherit python
-
-DESCRIPTION="A library for registering global keyboard shortcuts"
-HOMEPAGE="http://kaizer.se/wiki/keybinder/"
-SRC_URI="http://kaizer.se/publicfiles/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="lua python"
-
-RDEPEND=">=x11-libs/gtk+-2.20:2
- x11-libs/libXext
- x11-libs/libXrender
- x11-libs/libX11
- lua? ( >=dev-lang/lua-5.1 )
- python? ( >=dev-python/pygobject-2.15.3:2
- >=dev-python/pygtk-2.12 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-pkg_setup() {
- if use python; then
- python_set_active_version 2
- python_pkg_setup
- fi
-}
-
-src_prepare() {
- rm -f py-compile
- ln -s $(type -P true) py-compile
-}
-
-src_configure() {
- local myconf
- use lua || myconf="--disable-lua"
-
- econf \
- --disable-dependency-tracking \
- $(use_enable python) \
- ${myconf}
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS NEWS README
-
- find "${D}" -name '*.la' -exec rm -f '{}' +
-}
-
-pkg_postinst() {
- use python && python_mod_optimize keybinder
-}
-
-pkg_postrm() {
- use python && python_mod_cleanup keybinder
-}