diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-28 07:49:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-28 07:49:32 +0000 |
commit | 813b706af9698f402a5ba0f814940440df68305d (patch) | |
tree | d7c7f906acfc7e8dd9b98a813dc48f852859ebe9 /app-emulation/fuse | |
parent | add ~ppc (diff) | |
download | historical-813b706af9698f402a5ba0f814940440df68305d.tar.gz historical-813b706af9698f402a5ba0f814940440df68305d.tar.bz2 historical-813b706af9698f402a5ba0f814940440df68305d.zip |
version bump to work with latest libgcrypt #31745
Diffstat (limited to 'app-emulation/fuse')
-rw-r--r-- | app-emulation/fuse/ChangeLog | 11 | ||||
-rw-r--r-- | app-emulation/fuse/files/digest-fuse-0.6.2.1 | 1 | ||||
-rw-r--r-- | app-emulation/fuse/fuse-0.6.2.1.ebuild | 64 |
3 files changed, 73 insertions, 3 deletions
diff --git a/app-emulation/fuse/ChangeLog b/app-emulation/fuse/ChangeLog index e3250095787c..f416d20b2824 100644 --- a/app-emulation/fuse/ChangeLog +++ b/app-emulation/fuse/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-emulation/fuse # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.4 2003/12/24 18:15:55 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.5 2004/02/28 07:49:32 vapier Exp $ + +*fuse-0.6.2.1 (28 Feb 2004) + + 28 Feb 2004; Mike Frysinger <vapier@gentoo.org> : + Version bump to work with new libspectrum #39904 + +*fuse-0.6.1.1 (20 Nov 2003) 24 Dec 2003; David Holm <dholm@gentoo.org> fuse-0.6.1.1.ebuild: Added to ~ppc. @@ -8,8 +15,6 @@ 27 Nov 2003; Michael Sterrett <mr_bones_@gentoo.org> fuse-0.6.0.1.ebuild: clean old version of ebuild -*fuse-0.6.1.1 (20 Nov 2003) - 20 Nov 2003; Mike Frysinger <vapier@gentoo.org> : Version bump + DEPEND fixups #31215 #27711. diff --git a/app-emulation/fuse/files/digest-fuse-0.6.2.1 b/app-emulation/fuse/files/digest-fuse-0.6.2.1 new file mode 100644 index 000000000000..a9227f6bace9 --- /dev/null +++ b/app-emulation/fuse/files/digest-fuse-0.6.2.1 @@ -0,0 +1 @@ +MD5 4ce5c01fb922acb695c7229e765d0f6b fuse-0.6.2.1.tar.gz 668863 diff --git a/app-emulation/fuse/fuse-0.6.2.1.ebuild b/app-emulation/fuse/fuse-0.6.2.1.ebuild new file mode 100644 index 000000000000..bb4dc5e3a23d --- /dev/null +++ b/app-emulation/fuse/fuse-0.6.2.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# 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.1 2004/02/28 07:49:32 vapier 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="~x86 ~ppc" +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* ) : =x11-libs/gtk+-1* + ) + ) + sdl? ( media-libs/libsdl ) + svga? ( media-libs/svgalib ) + fbcon? ( ) + 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 +} |