# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-0.6.2.1.ebuild,v 1.9 2005/06/05 11:43:11 hansmi Exp $ DESCRIPTION="Free Unix Spectrum Emulator by Philip Kendall" HOMEPAGE="http://fuse-emulator.sourceforge.net/" SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="ppc x86" IUSE="xml2 png zlib X gtk gtk2 sdl svga fbcon gnome libdsk" # This build is heavily use dependent. USE="svga" will build the svga # version of fuse, otherwise X will be used. Libdsk must be specified # in order to take advantage of +3 emulation. DEPEND="dev-lang/perl xml2? ( dev-libs/libxml2 ) png? ( media-libs/libpng ) zlib? ( sys-libs/zlib ) >=app-emulation/libspectrum-0.2.1 X? ( virtual/x11 gtk? ( gtk2? ( =x11-libs/gtk+-2* ) !gtk2? ( =x11-libs/gtk+-1* ) ) ) !X? ( || ( sdl? ( media-libs/libsdl ) svga? ( media-libs/svgalib ) virtual/x11 ) ) gnome? ( =dev-libs/glib-1* ) libdsk? ( app-emulation/libdsk app-emulation/lib765 )" src_compile() { local guiflag if use X ; then guiflag="--with-x" elif use sdl ; then guiflag="--without-x --with-sdl" elif use svga ; then guiflag="--without-x --with-svgalib" elif use fbcon ; then guiflag="--without-x --with-fb" else guiflag="--with-x" fi econf \ `use_with gnome glib` \ `use_with gtk` \ `use_with gtk2` \ `use_with libdsk plus3-disk` \ ${guiflag} \ || die emake || die } src_install() { emake install DESTDIR=${D} || die dodoc AUTHORS README THANKS hacking/*.txt }