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 034CC138334 for ; Mon, 22 Apr 2019 10:41:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C4F0E087E; Mon, 22 Apr 2019 10:41: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 6FFB5E087B for ; Mon, 22 Apr 2019 10:41:38 +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 4B296342001 for ; Mon, 22 Apr 2019 10:41:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3D7145C7 for ; Mon, 22 Apr 2019 10:41:34 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1555929680.6664dbad282fa7ce931d74f9f1dbe345fad17de0.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/fraqtive/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild X-VCS-Directories: x11-misc/fraqtive/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6664dbad282fa7ce931d74f9f1dbe345fad17de0 X-VCS-Branch: master Date: Mon, 22 Apr 2019 10:41:34 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9ec5edac-470a-4b98-8777-5b8df27bb036 X-Archives-Hash: eeda90e3d3831907e7d1b3886254c6ec commit: 6664dbad282fa7ce931d74f9f1dbe345fad17de0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Apr 22 09:21:48 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Apr 22 10:41:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6664dbad x11-misc/fraqtive: EAPI-7 bump, add missing DEPENDs Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild b/x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild new file mode 100644 index 00000000000..331b0ef776a --- /dev/null +++ b/x11-misc/fraqtive/fraqtive-0.4.8-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit qmake-utils toolchain-funcs xdg + +DESCRIPTION="Open source, multi-platform generator of the Mandelbrot family fractals" +HOMEPAGE="https://fraqtive.mimec.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="cpu_flags_x86_sse2" + +BDEPEND=" + virtual/pkgconfig +" +DEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtopengl:5 + virtual/glu +" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-qt-includes.patch" ) + +src_configure() { + tc-export PKG_CONFIG + sed -i -e "s|-lGLU|$( ${PKG_CONFIG} --libs glu )|g" src/src.pro || die + local conf="release" + + if use cpu_flags_x86_sse2; then + conf="$conf sse2" + else + conf="$conf no-sse2" + fi + + echo "CONFIG += $conf" > config.pri + echo "PREFIX = ${EPREFIX}/usr" >> config.pri + # Don't strip wrt #252096 + echo "QMAKE_STRIP =" >> config.pri + + eqmake5 +} + +src_install() { + emake INSTALL_ROOT="${D}" install +}