Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libtiger/
Date: Fri, 11 Aug 2017 13:21:05
Message-Id: 1502457637.c9728566ed3c5e2f9e4670bc46893e9d43c4d214.mgorny@gentoo
1 commit: c9728566ed3c5e2f9e4670bc46893e9d43c4d214
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 9 05:18:28 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 11 13:20:37 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9728566
7
8 media-libs/libtiger: Modernize to EAPI=6
9
10 media-libs/libtiger/libtiger-0.3.4-r1.ebuild | 35 ++++++++++++++++++++++++++++
11 1 file changed, 35 insertions(+)
12
13 diff --git a/media-libs/libtiger/libtiger-0.3.4-r1.ebuild b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
14 new file mode 100644
15 index 00000000000..27909edac9e
16 --- /dev/null
17 +++ b/media-libs/libtiger/libtiger-0.3.4-r1.ebuild
18 @@ -0,0 +1,35 @@
19 +# Copyright 1999-2017 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +inherit libtool
24 +
25 +DESCRIPTION="A rendering library for Kate streams using Pango and Cairo"
26 +HOMEPAGE="https://code.google.com/p/libtiger/"
27 +SRC_URI="https://libtiger.googlecode.com/files/${P}.tar.gz"
28 +
29 +LICENSE="BSD"
30 +SLOT="0"
31 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
32 +IUSE="doc"
33 +
34 +RDEPEND="x11-libs/pango
35 + >=media-libs/libkate-0.2.0
36 + x11-libs/cairo"
37 +DEPEND="${RDEPEND}
38 + virtual/pkgconfig
39 + doc? ( app-doc/doxygen )"
40 +
41 +src_prepare() {
42 + default
43 + elibtoolize
44 +}
45 +
46 +src_configure() {
47 + econf $(use_enable doc)
48 +}
49 +
50 +src_install() {
51 + default
52 + find "${ED}" -name '*.la' -delete || die
53 +}