diff options
author | 2003-09-12 04:16:31 +0000 | |
---|---|---|
committer | 2003-09-12 04:16:31 +0000 | |
commit | 70feeb3e9f5365245d0525119c194bbd22bc3629 (patch) | |
tree | a4bc477fedd51aef5e93c45a36aa3aebe8fc5bd8 /media-gfx/quat | |
parent | fixed notification of ~/.canna (diff) | |
download | gentoo-2-70feeb3e9f5365245d0525119c194bbd22bc3629.tar.gz gentoo-2-70feeb3e9f5365245d0525119c194bbd22bc3629.tar.bz2 gentoo-2-70feeb3e9f5365245d0525119c194bbd22bc3629.zip |
initial ebuild #27610
Diffstat (limited to 'media-gfx/quat')
-rw-r--r-- | media-gfx/quat/ChangeLog | 10 | ||||
-rw-r--r-- | media-gfx/quat/files/digest-quat-1.20 | 1 | ||||
-rw-r--r-- | media-gfx/quat/quat-1.20.ebuild | 30 |
3 files changed, 41 insertions, 0 deletions
diff --git a/media-gfx/quat/ChangeLog b/media-gfx/quat/ChangeLog new file mode 100644 index 000000000000..1ccb8d2a2554 --- /dev/null +++ b/media-gfx/quat/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for media-gfx/quat +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/quat/ChangeLog,v 1.1 2003/09/12 04:16:31 vapier Exp $ + +*quat-1.20 (30 Aug 2003) + + 30 Aug 2003; Gunnlaugur Thor Briem <gthb@hi.is> + Initial import. Ebuild submitted by Gunnlaugur Thor Briem <gthb@hi.is>. + Quat is a 3D (quaternionic) fractal generator, written by Dirk Meyer of the + University of Stuttgart. diff --git a/media-gfx/quat/files/digest-quat-1.20 b/media-gfx/quat/files/digest-quat-1.20 new file mode 100644 index 000000000000..502d29a2581f --- /dev/null +++ b/media-gfx/quat/files/digest-quat-1.20 @@ -0,0 +1 @@ +MD5 bd8326147fcd0e674a0f8d56a64fa787 quat-1.20.tar.gz 474448 diff --git a/media-gfx/quat/quat-1.20.ebuild b/media-gfx/quat/quat-1.20.ebuild new file mode 100644 index 000000000000..6c0e5a54dd33 --- /dev/null +++ b/media-gfx/quat/quat-1.20.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# 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.1 2003/09/12 04:16:31 vapier Exp $ + +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="x86" + +DEPEND="X? ( >=x11-libs/fltk-1.1 virtual/x11 ) + >=sys-libs/zlib-1.1.4" +RDEPEND="" + +src_compile() { + export FLUID=`which fluid` # needed because configure trys an invalid option + econf \ + `use_enable X gui` \ + `use_enable debug` \ + `use_enable debug prof` \ + || die "configure failure" + emake || die "make failure" +} + +src_install() { + make DESTDIR=${D} install || die "make install failure" + dodoc AUTHORS ChangeLog NEWS README +} |