Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libstroke/
Date: Sun, 03 Nov 2019 20:41:25
Message-Id: 1572813674.0f2814561f6750e9d9c1d93d9538934b60bdc0cb.calchan@gentoo
1 commit: 0f2814561f6750e9d9c1d93d9538934b60bdc0cb
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 3 20:40:42 2019 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 3 20:41:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f281456
7
8 dev-libs/libstroke: update to EAPI 7
9
10 Package-Manager: Portage-2.3.78, Repoman-2.3.17
11 Signed-off-by: Denis Dupeyron <calchan <AT> gentoo.org>
12
13 dev-libs/libstroke/libstroke-0.5.1-r1.ebuild | 32 ++++++++++++++++++++++++++++
14 1 file changed, 32 insertions(+)
15
16 diff --git a/dev-libs/libstroke/libstroke-0.5.1-r1.ebuild b/dev-libs/libstroke/libstroke-0.5.1-r1.ebuild
17 new file mode 100644
18 index 00000000000..983798ae225
19 --- /dev/null
20 +++ b/dev-libs/libstroke/libstroke-0.5.1-r1.ebuild
21 @@ -0,0 +1,32 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit eutils autotools
28 +
29 +DESCRIPTION="A Stroke and Gesture recognition Library"
30 +HOMEPAGE="http://www.etla.net/libstroke/"
31 +SRC_URI="http://www.etla.net/libstroke/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="x11-libs/libX11"
39 +DEPEND="x11-base/xorg-proto
40 + ${RDEPEND}"
41 +
42 +src_prepare() {
43 + eapply "${FILESDIR}"/${P}-m4_syntax.patch
44 + eapply "${FILESDIR}"/${P}-no_gtk1.patch
45 + eapply "${FILESDIR}"/${P}-autotools.patch
46 + eapply_user
47 + eautoreconf
48 +}
49 +
50 +src_install () {
51 + emake DESTDIR="${D}" install || die
52 + dodoc CREDITS ChangeLog README
53 +}