Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libinput: libinput-0.9.0.ebuild ChangeLog
Date: Wed, 04 Feb 2015 16:15:58
Message-Id: 20150204161554.AFE53110B6@oystercatcher.gentoo.org
1 chithanh 15/02/04 16:15:54
2
3 Modified: ChangeLog
4 Added: libinput-0.9.0.ebuild
5 Log:
6 Version bump, bug #536868.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x2324E7B566DF2611!)
9
10 Revision Changes Path
11 1.4 dev-libs/libinput/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libinput/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libinput/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libinput/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libinput/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 4 Feb 2015 16:13:02 -0000 1.3
24 +++ ChangeLog 4 Feb 2015 16:15:54 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libinput
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libinput/ChangeLog,v 1.3 2015/02/04 16:13:02 chithanh Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libinput/ChangeLog,v 1.4 2015/02/04 16:15:54 chithanh Exp $
30 +
31 +*libinput-0.9.0 (04 Feb 2015)
32 +
33 + 04 Feb 2015; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +libinput-0.9.0.ebuild:
35 + Version bump, bug #536868.
36
37 *libinput-0.8.0 (04 Feb 2015)
38
39
40
41
42 1.1 dev-libs/libinput/libinput-0.9.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libinput/libinput-0.9.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libinput/libinput-0.9.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libinput-0.9.0.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libinput/libinput-0.9.0.ebuild,v 1.1 2015/02/04 16:15:54 chithanh Exp $
52
53 EAPI="5"
54
55 inherit eutils
56
57 DESCRIPTION="Library to handle input devices in Wayland"
58 HOMEPAGE="http://www.freedesktop.org/wiki/Software/libinput/"
59 SRC_URI="http://www.freedesktop.org/software/${PN}/${P}.tar.xz"
60
61 # License appears to be a variant of libtiff
62 LICENSE="libtiff"
63 SLOT="0/7"
64 KEYWORDS="~amd64 ~arm"
65 IUSE="test"
66
67 RDEPEND="
68 >=dev-libs/libevdev-0.4
69 >=sys-libs/mtdev-1.1
70 virtual/libudev
71 "
72 DEPEND="${RDEPEND}
73 virtual/pkgconfig
74 test? ( >=dev-libs/check-0.9.10 )
75 "
76 # tests can even use: dev-util/valgrind
77
78 src_configure() {
79 # Doc handling in kinda strange but everything
80 # is available in the tarball already.
81 sed -e 's/^\(SUBDIRS =.*\)doc\(.*\)$/\1\2/' \
82 -i Makefile.am Makefile.in || die
83 }
84
85 src_configure() {
86 # gui can be built but will not be installed
87 # building documentation silently fails with graphviz syntax errors
88 econf \
89 --disable-documentation \
90 --disable-event-gui \
91 $(use_enable test tests)
92 }
93
94 src_install() {
95 emake install DESTDIR="${D}" || die
96 dodoc -r doc/html
97 prune_libtool_files
98 }