diff options
author | 2006-04-10 11:54:21 +0000 | |
---|---|---|
committer | 2006-04-10 11:54:21 +0000 | |
commit | b699a95e85afab0ef6d574bae55fc8857c96925b (patch) | |
tree | 89530a94152d14d3a2351b4f1ab7b8e1cb2803e2 /x11-misc/xaos/xaos-3.2.ebuild | |
parent | Added pciutils as a RDEPEND wrt bug #128819 thx to Matt Anderson (diff) | |
download | historical-b699a95e85afab0ef6d574bae55fc8857c96925b.tar.gz historical-b699a95e85afab0ef6d574bae55fc8857c96925b.tar.bz2 historical-b699a95e85afab0ef6d574bae55fc8857c96925b.zip |
Version bump.
Package-Manager: portage-2.0.54
Diffstat (limited to 'x11-misc/xaos/xaos-3.2.ebuild')
-rw-r--r-- | x11-misc/xaos/xaos-3.2.ebuild | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/x11-misc/xaos/xaos-3.2.ebuild b/x11-misc/xaos/xaos-3.2.ebuild new file mode 100644 index 000000000000..c5d4205729d5 --- /dev/null +++ b/x11-misc/xaos/xaos-3.2.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xaos/xaos-3.2.ebuild,v 1.1 2006/04/10 11:54:21 phosphan Exp $ + +inherit eutils + +IUSE="X svga aalib nls" + +MY_PN=XaoS +MY_P=${MY_PN}-${PV} + +S=${WORKDIR}/${MY_P} +DESCRIPTION="A very fast real-time fractal zoomer" +HOMEPAGE="http://sourceforge.net/projects/xaos/" +SRC_URI="mirror://sourceforge/xaos/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~amd64 ~sparc" + +RDEPEND="X? ( + || ( + virtual/x11 + ( + x11-libs/libX11 + x11-libs/libXxf86dga + x11-libs/libXext + x11-libs/libXxf86vm + ) + ) + ) + svga? ( >=media-libs/svgalib-1.4.3 ) + aalib? ( media-libs/aalib ) + sys-libs/zlib + media-libs/libpng" +# xaos has ggi support, but it doesn't build +# ggi? ( media-libs/libggi ) + +DEPEND="${RDEPEND} + X? ( + || ( + virtual/x11 + ( + x11-proto/xf86vidmodeproto + x11-proto/xextproto + x11-proto/xf86dgaproto + x11-proto/xproto + ) + ) + )" + +src_compile() { + local myconf + use X || myconf="--with-x11-driver=no" +# use dga || myconf="${myconf} --with-dga-driver=no" +# ggi support removed due to upstream bug + #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* +} |