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/quat/
Date: Sun, 13 Aug 2017 08:00:38
Message-Id: 1502611195.c132ececc84829b307a8316b720f681defc252dc.amynka@gentoo
1 commit: c132ececc84829b307a8316b720f681defc252dc
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 13 07:51:38 2017 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 13 07:59:55 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c132ecec
7
8 media-gfx/quat: EAPI 6 bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 media-gfx/quat/quat-1.20-r1.ebuild | 34 ++++++++++++++++++++++++++++++++++
13 1 file changed, 34 insertions(+)
14
15 diff --git a/media-gfx/quat/quat-1.20-r1.ebuild b/media-gfx/quat/quat-1.20-r1.ebuild
16 new file mode 100644
17 index 00000000000..9769ad57242
18 --- /dev/null
19 +++ b/media-gfx/quat/quat-1.20-r1.ebuild
20 @@ -0,0 +1,34 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +DESCRIPTION="A 3D quaternionic fractal generator"
27 +HOMEPAGE="http://www.physcip.uni-stuttgart.de/phy11733/quat_e.html"
28 +SRC_URI="http://www.physcip.uni-stuttgart.de/phy11733/download/quat-1.20.tar.gz"
29 +
30 +LICENSE="GPL-2"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~ppc ~x86"
33 +IUSE="X debug"
34 +
35 +DEPEND="X? ( =x11-libs/fltk-1*
36 + x11-libs/libX11
37 + x11-libs/libXext
38 + x11-libs/libXft
39 + )
40 + >=sys-libs/zlib-1.1.4"
41 +RDEPEND=""
42 +
43 +src_configure() {
44 + export FLUID="/usr/bin/fluid" # needed because configure tries an invalid option
45 + econf \
46 + `use_enable X gui` \
47 + `use_enable debug` \
48 + `use_enable debug prof`
49 +}
50 +
51 +src_install() {
52 + emake DESTDIR="${D}" install
53 + dodoc AUTHORS ChangeLog NEWS README
54 +}