diff options
author | George Shapovalov <george@gentoo.org> | 2003-03-12 10:01:10 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2003-03-12 10:01:10 +0000 |
commit | e0193944da183b4437824a253cb98f65d85a0cf2 (patch) | |
tree | 9534956042db5be21207f34bcfa7390ef2ce4d45 /x11-misc | |
parent | Added use nls && unpack ${LANG} to vim.eclass to fix the nls bugs with (diff) | |
download | gentoo-2-e0193944da183b4437824a253cb98f65d85a0cf2.tar.gz gentoo-2-e0193944da183b4437824a253cb98f65d85a0cf2.tar.bz2 gentoo-2-e0193944da183b4437824a253cb98f65d85a0cf2.zip |
new package - fast real-time fractal zoomer
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xaos/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/xaos/files/digest-xaos-3.1_pre5 | 1 | ||||
-rw-r--r-- | x11-misc/xaos/xaos-3.1_pre5.ebuild | 57 |
3 files changed, 68 insertions, 0 deletions
diff --git a/x11-misc/xaos/ChangeLog b/x11-misc/xaos/ChangeLog new file mode 100644 index 000000000000..3c4c36bf977e --- /dev/null +++ b/x11-misc/xaos/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-misc/xaos +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xaos/ChangeLog,v 1.1 2003/03/12 10:01:10 george Exp $ + +*xaos-3.1_pre5.ebuild (12 íÁÒ 2003) + + 12 íÁÒ 2003; George Shapovalov <george@gentoo.org> ChangeLog, xaos-3.1_pre5.ebuild, files/\{digest-xaos-3.1_pre5\} : + initial release + A very fast real-time fractal zoomer + ebuild submitted by diff --git a/x11-misc/xaos/files/digest-xaos-3.1_pre5 b/x11-misc/xaos/files/digest-xaos-3.1_pre5 new file mode 100644 index 000000000000..7bdd97ada4fc --- /dev/null +++ b/x11-misc/xaos/files/digest-xaos-3.1_pre5 @@ -0,0 +1 @@ +MD5 904691517303d2bedddf33b3d68f97cc XaoS-3.1pre5.tar.gz 1030548 diff --git a/x11-misc/xaos/xaos-3.1_pre5.ebuild b/x11-misc/xaos/xaos-3.1_pre5.ebuild new file mode 100644 index 000000000000..b8f7f1f19950 --- /dev/null +++ b/x11-misc/xaos/xaos-3.1_pre5.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xaos/xaos-3.1_pre5.ebuild,v 1.1 2003/03/12 10:01:10 george Exp $ + +IUSE="X svga aalib ggi" + +PN=XaoS +PV=3.1pre5 +P=${PN}-${PV} +S=${WORKDIR}/${P} + +DESCRIPTION="A very fast real-time fractal zoomer" +HOMEPAGE="http://sourceforge.net/projects/xaos/" +SRC_URI="mirror://sourceforge/xaos/${P}.tar.gz" + +KEYWORDS="~x86" +LICENSE="GPL-2" +SLOT="0" + +DEPEND="X? ( virtual/x11 ) + svga? ( >=media-libs/svgalib-1.4.3 ) + aalib? ( media-libs/aalib ) + ggi? ( media-libs/libggi ) + sys-libs/zlib + media-libs/libpng" + + +src_compile() { + local myconf + use X || myconf="--with-x11-driver=no" +# use dga || myconf="${myconf} --with-dga-driver=no" + use ggi || myconf="${myconf} --with-ggi-driver=no" + use svga || myconf="${myconf} --with-svga-driver=no" +# use aalib || myconf="${myconf} --with-aa-driver=no" + + #i18n support is quite broken in XaoS, it gets installed + #anyway, so we remove it later during install if not desired + use nls || myconf="${myconf} --with-i18n=no" + + ./configure --prefix=/usr ${myconf} && make || die +} + +src_install() { + # these get installed, assuming that the directories exist! + mkdir -p ${D}/usr/share/locale/{hu,es,fr,cs,de}/LC_MESSAGES + mkdir -p ${D}/usr/share/{man,info} + make \ + prefix=${D}/usr \ + infodir=${D}/usr/share/info \ + mandir=${D}/usr/share/man \ + LOCALEDIR=${D}/usr/share/locale \ + install || die + + use nls || rm -r ${D}/usr/share/locale + + dodoc ChangeLog* COPYING INSTALL* TODO* +} |