diff options
author | Michael Januszewski <spock@gentoo.org> | 2007-03-15 11:00:38 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2007-03-15 11:00:38 +0000 |
commit | dd5ce7404e0570812aa527e372c81770a10524ac (patch) | |
tree | 267fa3856f0654f8d78c76310c9427ab08171025 /media-gfx/quat | |
parent | USE=truetype check for libg15render by tove wrt bug #170417, drop of 3.0.2 (diff) | |
download | gentoo-2-dd5ce7404e0570812aa527e372c81770a10524ac.tar.gz gentoo-2-dd5ce7404e0570812aa527e372c81770a10524ac.tar.bz2 gentoo-2-dd5ce7404e0570812aa527e372c81770a10524ac.zip |
Don't use 'which' to find 'fluid'.
(Portage version: 2.1.2.2)
Diffstat (limited to 'media-gfx/quat')
-rw-r--r-- | media-gfx/quat/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/quat/quat-1.20.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/media-gfx/quat/ChangeLog b/media-gfx/quat/ChangeLog index a2f147c281a9..ae20a1faa70d 100644 --- a/media-gfx/quat/ChangeLog +++ b/media-gfx/quat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/quat # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/quat/ChangeLog,v 1.5 2007/02/22 01:40:35 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/quat/ChangeLog,v 1.6 2007/03/15 11:00:38 spock Exp $ + + 15 Mar 2007; Michał Januszewski <spock@gentoo.org> quat-1.20.ebuild: + Don't use 'which' to find 'fluid'. 22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/media-gfx/quat/quat-1.20.ebuild b/media-gfx/quat/quat-1.20.ebuild index 37c0868c4451..f5f5e2c7b0dd 100644 --- a/media-gfx/quat/quat-1.20.ebuild +++ b/media-gfx/quat/quat-1.20.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/quat/quat-1.20.ebuild,v 1.6 2006/02/13 22:11:22 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/quat/quat-1.20.ebuild,v 1.7 2007/03/15 11:00:38 spock Exp $ DESCRIPTION="A 3D quaternionic fractal generator" HOMEPAGE="http://www.physcip.uni-stuttgart.de/phy11733/quat_e.html" @@ -23,7 +23,7 @@ DEPEND="X? ( >=x11-libs/fltk-1.1 RDEPEND="" src_compile() { - export FLUID=`which fluid` # needed because configure tries an invalid option + export FLUID="/usr/bin/fluid" # needed because configure tries an invalid option econf \ `use_enable X gui` \ `use_enable debug` \ |