summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-10-18 21:19:26 +0200
committerPacho Ramos <pacho@gentoo.org>2016-10-18 21:26:27 +0200
commit2eb521bf0eb6ce9f936f3937755735126ff2ad29 (patch)
tree108e720df937f1303713f1a507f55a9cd798f6bd /dev-libs
parentdev-libs/beecrypt: Drop old (diff)
downloadgentoo-2eb521bf0eb6ce9f936f3937755735126ff2ad29.tar.gz
gentoo-2eb521bf0eb6ce9f936f3937755735126ff2ad29.tar.bz2
gentoo-2eb521bf0eb6ce9f936f3937755735126ff2ad29.zip
dev-libs/keybinder: Drop old
Package-Manager: portage-2.3.1
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/keybinder/keybinder-0.3.0-r201.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-libs/keybinder/keybinder-0.3.0-r201.ebuild b/dev-libs/keybinder/keybinder-0.3.0-r201.ebuild
deleted file mode 100644
index 8727375d1192..000000000000
--- a/dev-libs/keybinder/keybinder-0.3.0-r201.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-single-r1
-
-DESCRIPTION="A library for registering global keyboard shortcuts"
-HOMEPAGE="https://github.com/engla/keybinder"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
-IUSE="+introspection lua python"
-
-RDEPEND=">=x11-libs/gtk+-2.20:2
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXrender
- introspection? ( dev-libs/gobject-introspection )
- lua? ( >=dev-lang/lua-5.1 )
- python? ( ${PYTHON_DEPS}
- >=dev-python/pygobject-2.15.3:2[${PYTHON_USEDEP}]
- >=dev-python/pygtk-2.12[${PYTHON_USEDEP}]
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS="AUTHORS NEWS README"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
- local myconf
- use lua || myconf='--disable-lua'
-
- econf \
- $(use_enable introspection) \
- $(use_enable python) \
- ${myconf}
-}
-
-src_install() {
- default
- prune_libtool_files --all
-}