Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/easystroke: easystroke-0.6.0-r1.ebuild ChangeLog
Date: Wed, 04 Jun 2014 17:37:12
Message-Id: 20140604173708.66C102004F@flycatcher.gentoo.org
1 jer 14/06/04 17:37:08
2
3 Modified: ChangeLog
4 Added: easystroke-0.6.0-r1.ebuild
5 Log:
6 Add upstream patches for bug #512428 by Small Penguin.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.2 x11-misc/easystroke/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/easystroke/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 4 Jun 2014 03:14:31 -0000 1.1
24 +++ ChangeLog 4 Jun 2014 17:37:08 -0000 1.2
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-misc/easystroke
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/easystroke/ChangeLog,v 1.1 2014/06/04 03:14:31 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/easystroke/ChangeLog,v 1.2 2014/06/04 17:37:08 jer Exp $
30 +
31 +*easystroke-0.6.0-r1 (04 Jun 2014)
32 +
33 + 04 Jun 2014; Jeroen Roovers <jer@g.o> +easystroke-0.6.0-r1.ebuild,
34 + +files/easystroke-0.6.0-buttons-scroll-send.patch,
35 + +files/easystroke-0.6.0-reinstate-signal-handlers.patch:
36 + Add upstream patches for bug #512428 by Small Penguin.
37
38 *easystroke-0.6.0 (04 Jun 2014)
39
40
41
42
43 1.1 x11-misc/easystroke/easystroke-0.6.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/easystroke-0.6.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/easystroke-0.6.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: easystroke-0.6.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/easystroke/easystroke-0.6.0-r1.ebuild,v 1.1 2014/06/04 17:37:08 jer Exp $
53
54 EAPI=5
55 inherit eutils toolchain-funcs
56
57 DESCRIPTION="a gesture-recognition application for X11"
58 HOMEPAGE="http://sourceforge.net/apps/trac/easystroke/"
59 SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
60
61 LICENSE="ISC"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE=""
65
66 RDEPEND="
67 dev-cpp/gtkmm:3.0
68 dev-libs/boost
69 dev-libs/dbus-glib
70 dev-libs/glib:2
71 x11-libs/libX11
72 x11-libs/libXext
73 x11-libs/libXfixes
74 x11-libs/libXi
75 x11-libs/libXtst
76 "
77 DEPEND="
78 ${RDEPEND}
79 dev-util/intltool
80 sys-devel/gettext
81 "
82
83 src_prepare() {
84 epatch "${FILESDIR}"/${P}-cellrendertextish.patch
85 epatch "${FILESDIR}"/${P}-desktop.patch
86 epatch "${FILESDIR}"/${P}-gentoo.patch
87 epatch "${FILESDIR}"/${P}-reinstate-signal-handlers.patch
88 epatch "${FILESDIR}"/${P}-buttons-scroll-send.patch
89
90 tc-export CC CXX PKG_CONFIG
91
92 strip-linguas -i po/
93
94 local es_lingua lang
95 for es_lingua in $( printf "%s\n" po/*.po ); do
96 lang=${es_lingua/po\/}
97 has ${lang/.po/} ${LINGUAS} || rm ${es_lingua}
98 done
99 }
100
101 src_compile() {
102 emake \
103 AOFLAGS='' \
104 LDFLAGS="${LDFLAGS}" \
105 PREFIX=/usr
106 }
107
108 src_install() {
109 emake DESTDIR="${D}" PREFIX=/usr install
110 }