diff options
author | Sam James <sam@gentoo.org> | 2021-01-09 10:12:42 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-09 10:36:05 +0000 |
commit | c3ffec49f62b0e61ae73cc4c539448c085738b63 (patch) | |
tree | 3224d9211b0615501e6569bc672730d307e674b8 /media-gfx | |
parent | media-libs/lastfmlib: port to EAPI 7, fix StaticSrcUri (diff) | |
download | gentoo-c3ffec49f62b0e61ae73cc4c539448c085738b63.tar.gz gentoo-c3ffec49f62b0e61ae73cc4c539448c085738b63.tar.bz2 gentoo-c3ffec49f62b0e61ae73cc4c539448c085738b63.zip |
media-gfx/quat: modernise ebuild, inc. StaticSrcUri
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/quat/quat-1.20-r2.ebuild (renamed from media-gfx/quat/quat-1.20-r1.ebuild) | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/media-gfx/quat/quat-1.20-r1.ebuild b/media-gfx/quat/quat-1.20-r2.ebuild index 8c1256dbdd07..17e06e1566e8 100644 --- a/media-gfx/quat/quat-1.20-r1.ebuild +++ b/media-gfx/quat/quat-1.20-r2.ebuild @@ -1,31 +1,34 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 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" +SRC_URI="http://www.physcip.uni-stuttgart.de/phy11733/download/${P}.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="" +DEPEND=" + >=sys-libs/zlib-1.1.4 + X? ( + =x11-libs/fltk-1* + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXft + ) +" +RDEPEND="${DEPEND}" 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` + $(use_enable X gui) \ + $(use_enable debug) \ + $(use_enable debug prof) } src_install() { |