diff options
author | Michael Januszewski <spock@gentoo.org> | 2006-02-13 22:11:22 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2006-02-13 22:11:22 +0000 |
commit | c87979de1c64ac6b239f84a08ca4880ccb7b209a (patch) | |
tree | 517ae95ce248b784d5a5cfc303c83826229895bc /media-gfx/quat | |
parent | New release candidate. (diff) | |
download | gentoo-2-c87979de1c64ac6b239f84a08ca4880ccb7b209a.tar.gz gentoo-2-c87979de1c64ac6b239f84a08ca4880ccb7b209a.tar.bz2 gentoo-2-c87979de1c64ac6b239f84a08ca4880ccb7b209a.zip |
Added support for modular X (bug #122484). Added myself as the maintainer.
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'media-gfx/quat')
-rw-r--r-- | media-gfx/quat/ChangeLog | 8 | ||||
-rw-r--r-- | media-gfx/quat/metadata.xml | 9 | ||||
-rw-r--r-- | media-gfx/quat/quat-1.20.ebuild | 15 |
3 files changed, 26 insertions, 6 deletions
diff --git a/media-gfx/quat/ChangeLog b/media-gfx/quat/ChangeLog index 7bd0a20ab801..cf7a2dba084b 100644 --- a/media-gfx/quat/ChangeLog +++ b/media-gfx/quat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-gfx/quat -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/quat/ChangeLog,v 1.3 2005/07/25 09:02:16 dholm Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/quat/ChangeLog,v 1.4 2006/02/13 22:11:22 spock Exp $ + + 13 Feb 2006; Michał Januszewski <spock@gentoo.org> +metadata.xml, + quat-1.20.ebuild: + Added support for modular X (bug #122484). Added myself as the maintainer. 25 Jul 2005; David Holm <dholm@gentoo.org> quat-1.20.ebuild: Added to ~ppc. diff --git a/media-gfx/quat/metadata.xml b/media-gfx/quat/metadata.xml new file mode 100644 index 000000000000..3ec35c59fbbd --- /dev/null +++ b/media-gfx/quat/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>spock@gentoo.org</email> + <name>Michał Januszewski</name> +</maintainer> +</pkgmetadata> diff --git a/media-gfx/quat/quat-1.20.ebuild b/media-gfx/quat/quat-1.20.ebuild index cba058e96326..37c0868c4451 100644 --- a/media-gfx/quat/quat-1.20.ebuild +++ b/media-gfx/quat/quat-1.20.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 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.5 2005/07/25 09:02:16 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/quat/quat-1.20.ebuild,v 1.6 2006/02/13 22:11:22 spock Exp $ DESCRIPTION="A 3D quaternionic fractal generator" HOMEPAGE="http://www.physcip.uni-stuttgart.de/phy11733/quat_e.html" @@ -11,12 +11,19 @@ SLOT="0" KEYWORDS="~ppc x86" IUSE="X debug" -DEPEND="X? ( >=x11-libs/fltk-1.1 virtual/x11 ) +DEPEND="X? ( >=x11-libs/fltk-1.1 + || ( ( x11-libs/libX11 + x11-libs/libXext + x11-libs/libXft + ) + virtual/x11 + ) + ) >=sys-libs/zlib-1.1.4" RDEPEND="" src_compile() { - export FLUID=`which fluid` # needed because configure trys an invalid option + export FLUID=`which fluid` # needed because configure tries an invalid option econf \ `use_enable X gui` \ `use_enable debug` \ |