Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/gozer/
Date: Sun, 06 Aug 2017 08:23:55
Message-Id: 1502007790.ca1e1d408f43ae8dc68e411794123b809b80c5b1.amynka@gentoo
1 commit: ca1e1d408f43ae8dc68e411794123b809b80c5b1
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 6 08:23:10 2017 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 6 08:23:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca1e1d40
7
8 media-gfx/gozer: eapi bump to 6
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 media-gfx/gozer/gozer-0.7-r3.ebuild | 35 +++++++++++++++++++++++++++++++++++
13 1 file changed, 35 insertions(+)
14
15 diff --git a/media-gfx/gozer/gozer-0.7-r3.ebuild b/media-gfx/gozer/gozer-0.7-r3.ebuild
16 new file mode 100644
17 index 00000000000..32cb422209c
18 --- /dev/null
19 +++ b/media-gfx/gozer/gozer-0.7-r3.ebuild
20 @@ -0,0 +1,35 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit autotools
27 +
28 +DESCRIPTION="tool for rendering arbitrary text as graphics, using ttfs and styles"
29 +HOMEPAGE="http://www.linuxbrit.co.uk/gozer/"
30 +SRC_URI="http://www.linuxbrit.co.uk/downloads/${P}.tar.gz"
31 +
32 +LICENSE="feh LGPL-2+"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~ppc ~x86"
35 +IUSE=""
36 +
37 +DEPEND="x11-libs/libXext
38 + >=media-libs/giblib-1.2.1"
39 +RDEPEND=">=media-libs/giblib-1.2.1
40 + media-libs/imlib2"
41 +
42 +src_prepare() {
43 + default
44 + sed -i src/Makefile.am \
45 + -e 's|-g -O3|$(CFLAGS)|g' \
46 + -e '/LDFLAGS/s|=|+=|g' \
47 + || die "sed src/Makefile.am"
48 + eautoreconf
49 +}
50 +
51 +src_install() {
52 + emake install DESTDIR="${D}"
53 + rm -rf "${D}"/usr/doc || die
54 + dodoc TODO README AUTHORS ChangeLog
55 +}