From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CED7A1396D0 for ; Sun, 13 Aug 2017 08:00:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F718E0D6F; Sun, 13 Aug 2017 08:00:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08F4EE0D6F for ; Sun, 13 Aug 2017 08:00:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 02069341827 for ; Sun, 13 Aug 2017 08:00:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A40CF777F for ; Sun, 13 Aug 2017 08:00:35 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1502611195.c132ececc84829b307a8316b720f681defc252dc.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/quat/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/quat/quat-1.20-r1.ebuild X-VCS-Directories: media-gfx/quat/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: c132ececc84829b307a8316b720f681defc252dc X-VCS-Branch: master Date: Sun, 13 Aug 2017 08:00:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 090ce6d1-fc2e-4ddd-9221-f4f66039cc5b X-Archives-Hash: c543363c029b9cedf74524b4387427da commit: c132ececc84829b307a8316b720f681defc252dc Author: Amy Liffey gentoo org> AuthorDate: Sun Aug 13 07:51:38 2017 +0000 Commit: Amy Liffey gentoo org> CommitDate: Sun Aug 13 07:59:55 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c132ecec media-gfx/quat: EAPI 6 bump Package-Manager: Portage-2.3.6, Repoman-2.3.1 media-gfx/quat/quat-1.20-r1.ebuild | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/media-gfx/quat/quat-1.20-r1.ebuild b/media-gfx/quat/quat-1.20-r1.ebuild new file mode 100644 index 00000000000..9769ad57242 --- /dev/null +++ b/media-gfx/quat/quat-1.20-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A 3D quaternionic fractal generator" +HOMEPAGE="http://www.physcip.uni-stuttgart.de/phy11733/quat_e.html" +SRC_URI="http://www.physcip.uni-stuttgart.de/phy11733/download/quat-1.20.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="X debug" + +DEPEND="X? ( =x11-libs/fltk-1* + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXft + ) + >=sys-libs/zlib-1.1.4" +RDEPEND="" + +src_configure() { + export FLUID="/usr/bin/fluid" # needed because configure tries an invalid option + econf \ + `use_enable X gui` \ + `use_enable debug` \ + `use_enable debug prof` +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README +}