Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/keybinder: keybinder-0.3.0-r201.ebuild ChangeLog
Date: Sun, 30 Nov 2014 14:37:03
Message-Id: 20141130143658.E96BBB393@oystercatcher.gentoo.org
1 mgorny 14/11/30 14:36:58
2
3 Modified: ChangeLog
4 Added: keybinder-0.3.0-r201.ebuild
5 Log:
6 Convert to python-single-r1. Use proper gtk-doc location.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.17 dev-libs/keybinder/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/keybinder/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/keybinder/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/keybinder/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/keybinder/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 28 Nov 2012 09:48:45 -0000 1.16
24 +++ ChangeLog 30 Nov 2014 14:36:58 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/keybinder
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/keybinder/ChangeLog,v 1.16 2012/11/28 09:48:45 ssuominen Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/keybinder/ChangeLog,v 1.17 2014/11/30 14:36:58 mgorny Exp $
31 +
32 +*keybinder-0.3.0-r201 (30 Nov 2014)
33 +
34 + 30 Nov 2014; Michał Górny <mgorny@g.o> +keybinder-0.3.0-r201.ebuild:
35 + Convert to python-single-r1. Use proper gtk-doc location.
36
37 28 Nov 2012; Samuli Suominen <ssuominen@g.o>
38 keybinder-0.3.0-r200.ebuild, keybinder-0.3.0-r300.ebuild:
39
40
41
42 1.1 dev-libs/keybinder/keybinder-0.3.0-r201.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/keybinder/keybinder-0.3.0-r201.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/keybinder/keybinder-0.3.0-r201.ebuild?rev=1.1&content-type=text/plain
46
47 Index: keybinder-0.3.0-r201.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/keybinder/keybinder-0.3.0-r201.ebuild,v 1.1 2014/11/30 14:36:58 mgorny Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python2_7 )
56
57 inherit eutils python-single-r1
58
59 DESCRIPTION="A library for registering global keyboard shortcuts"
60 HOMEPAGE="http://kaizer.se/wiki/keybinder/"
61 SRC_URI="http://kaizer.se/publicfiles/${PN}/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
66 IUSE="+introspection lua python"
67
68 RDEPEND=">=x11-libs/gtk+-2.20:2
69 x11-libs/libX11
70 x11-libs/libXext
71 x11-libs/libXrender
72 introspection? ( dev-libs/gobject-introspection )
73 lua? ( >=dev-lang/lua-5.1 )
74 python? ( ${PYTHON_DEPS}
75 >=dev-python/pygobject-2.15.3:2[${PYTHON_USEDEP}]
76 >=dev-python/pygtk-2.12[${PYTHON_USEDEP}]
77 )"
78 DEPEND="${RDEPEND}
79 virtual/pkgconfig"
80
81 DOCS="AUTHORS NEWS README"
82 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
83
84 pkg_setup() {
85 use python && python-single-r1_pkg_setup
86 }
87
88 src_configure() {
89 local myconf
90 use lua || myconf='--disable-lua'
91
92 econf \
93 $(use_enable introspection) \
94 $(use_enable python) \
95 ${myconf}
96 }
97
98 src_install() {
99 default
100 prune_libtool_files --all
101 }