Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/easystroke/
Date: Sun, 03 Feb 2019 14:08:22
Message-Id: 1549202871.86aba157f2750464c59c04016df5eaa24bbbefea.asturm@gentoo
1 commit: 86aba157f2750464c59c04016df5eaa24bbbefea
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Jan 30 17:20:10 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 3 14:07:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86aba157
7
8 x11-misc/easystroke: drop old
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 x11-misc/easystroke/easystroke-0.6.0-r2.ebuild | 64 --------------------------
14 1 file changed, 64 deletions(-)
15
16 diff --git a/x11-misc/easystroke/easystroke-0.6.0-r2.ebuild b/x11-misc/easystroke/easystroke-0.6.0-r2.ebuild
17 deleted file mode 100644
18 index c441c8c4a8c..00000000000
19 --- a/x11-misc/easystroke/easystroke-0.6.0-r2.ebuild
20 +++ /dev/null
21 @@ -1,64 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -inherit eutils flag-o-matic toolchain-funcs
27 -
28 -DESCRIPTION="a gesture-recognition application for X11"
29 -HOMEPAGE="https://sourceforge.net/apps/trac/easystroke/"
30 -SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.gz"
31 -
32 -LICENSE="ISC"
33 -SLOT="0"
34 -KEYWORDS="~amd64"
35 -
36 -RDEPEND="
37 - dev-cpp/gtkmm:3.0
38 - dev-libs/boost:=
39 - dev-libs/dbus-glib
40 - dev-libs/glib:2
41 - x11-base/xorg-server
42 - x11-libs/libX11
43 - x11-libs/libXext
44 - x11-libs/libXfixes
45 - x11-libs/libXi
46 - x11-libs/libXtst
47 -"
48 -DEPEND="
49 - ${RDEPEND}
50 - dev-util/intltool
51 - sys-devel/gettext
52 -"
53 -
54 -src_prepare() {
55 - epatch "${FILESDIR}"/${P}-cellrendertextish.patch
56 - epatch "${FILESDIR}"/${P}-desktop.patch
57 - epatch "${FILESDIR}"/${P}-gentoo.patch
58 - epatch "${FILESDIR}"/${P}-reinstate-signal-handlers.patch
59 - epatch "${FILESDIR}"/${P}-buttons-scroll-send.patch
60 - epatch "${FILESDIR}"/${P}-cxx11.patch
61 -
62 - tc-export CC CXX PKG_CONFIG
63 -
64 - if ! [[ -z ${LINGUAS} ]]; then
65 - strip-linguas -i po/
66 -
67 - local es_lingua lang
68 - for es_lingua in $( printf "%s\n" po/*.po ); do
69 - lang=${es_lingua/po\/}
70 - has ${lang/.po/} ${LINGUAS} || rm ${es_lingua}
71 - done
72 - fi
73 -}
74 -
75 -src_compile() {
76 - append-cxxflags -std=c++11
77 - emake \
78 - AOFLAGS='' \
79 - LDFLAGS="${LDFLAGS}" \
80 - PREFIX=/usr
81 -}
82 -
83 -src_install() {
84 - emake DESTDIR="${D}" PREFIX=/usr install
85 -}