diff options
author | 2009-12-22 04:38:32 +0000 | |
---|---|---|
committer | 2009-12-22 04:38:32 +0000 | |
commit | 8686f98a9a0eac8ca60abaaf24a3d2f3b745812d (patch) | |
tree | f1dbfbd834ac472b304138ea56b46ab94143396e /app-emulation/fuse | |
parent | add patch for working around define issues again (bug #297227) (diff) | |
download | gentoo-2-8686f98a9a0eac8ca60abaaf24a3d2f3b745812d.tar.gz gentoo-2-8686f98a9a0eac8ca60abaaf24a3d2f3b745812d.tar.bz2 gentoo-2-8686f98a9a0eac8ca60abaaf24a3d2f3b745812d.zip |
New revision to fix dependancy issues. Ebuild by José Manuel Ferrer Ortiz
(Portage version: 2.1.7.14/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/fuse')
-rw-r--r-- | app-emulation/fuse/ChangeLog | 9 | ||||
-rw-r--r-- | app-emulation/fuse/fuse-0.10.0.2-r3.ebuild | 86 |
2 files changed, 93 insertions, 2 deletions
diff --git a/app-emulation/fuse/ChangeLog b/app-emulation/fuse/ChangeLog index 78f830ce490a..be832ecd9e2e 100644 --- a/app-emulation/fuse/ChangeLog +++ b/app-emulation/fuse/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/fuse -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.27 2009/03/10 05:12:15 darkside Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.28 2009/12/22 04:38:32 darkside Exp $ + +*fuse-0.10.0.2-r3 (22 Dec 2009) + + 22 Dec 2009; Jeremy Olexa <darkside@gentoo.org> +fuse-0.10.0.2-r3.ebuild: + New revision to fix dependancy issues. Ebuild by José Manuel Ferrer Ortiz *fuse-0.10.0.2-r2 (10 Mar 2009) diff --git a/app-emulation/fuse/fuse-0.10.0.2-r3.ebuild b/app-emulation/fuse/fuse-0.10.0.2-r3.ebuild new file mode 100644 index 000000000000..5f4c98de2132 --- /dev/null +++ b/app-emulation/fuse/fuse-0.10.0.2-r3.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-0.10.0.2-r3.ebuild,v 1.1 2009/12/22 04:38:32 darkside 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="~amd64 ~ppc ~x86" +IUSE="alsa ao fbcon gpm gtk joystick libsamplerate memlimit sdl svga X xml" + +# This build is heavily use dependent. Fuse user interface use flags are, in +# order of precedence: gtk, sdl, X, svga and fbcon. X version of fuse will +# be built if no valid user interface flag is chosen. +RDEPEND=">=app-emulation/libspectrum-0.5 + gtk? ( >=x11-libs/gtk+-2 + alsa? ( media-libs/alsa-lib ) + !alsa? ( ao? ( media-libs/libao ) ) + joystick? ( media-libs/libjsw ) ) + !gtk? ( + sdl? ( >=media-libs/libsdl-1.2.4 ) + !sdl? ( + X? ( x11-libs/libX11 + x11-libs/libXext + alsa? ( media-libs/alsa-lib ) + !alsa? ( ao? ( media-libs/libao ) ) + joystick? ( media-libs/libjsw ) ) + !X? ( + svga? ( media-libs/svgalib + alsa? ( media-libs/alsa-lib ) + !alsa? ( ao? ( media-libs/libao ) ) ) + !svga? ( + fbcon? ( virtual/linux-sources + gpm? ( sys-libs/gpm ) + alsa? ( media-libs/alsa-lib ) + !alsa? ( ao? ( media-libs/libao ) ) + joystick? ( media-libs/libjsw ) ) + !fbcon? ( x11-libs/libX11 + x11-libs/libXext + alsa? ( media-libs/alsa-lib ) + !alsa? ( ao? ( media-libs/libao ) ) + joystick? ( media-libs/libjsw ) ) ) ) ) ) + >=dev-libs/glib-2 + media-libs/libpng + libsamplerate? ( >=media-libs/libsamplerate-0.1.0 ) + xml? ( dev-libs/libxml2 )" +DEPEND="${RDEPEND} + dev-lang/perl + dev-util/pkgconfig" + +src_compile() { + local guiflag + if use gtk; then + guiflag="" + elif use sdl; then + guiflag="--with-sdl" + elif use X; then + guiflag="--without-gtk" + elif use svga; then + guiflag="--with-svgalib" + elif use fbcon; then + guiflag="--with-fb" + else # We default to X user interface + guiflag="--without-gtk" + fi + econf --without-win32 \ + ${guiflag} \ + $(use_with gpm) \ + $(use_with alsa) \ + $(use_with ao libao) \ + $(use_with libsamplerate) \ + $(use_with joystick) \ + $(use_enable joystick ui-joystick) \ + $(use_with xml libxml2) \ + $(use_enable memlimit smallmem) \ + || die "econf failed!" + emake || die "emake failed!" +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc AUTHORS ChangeLog README THANKS + doman man/fuse.1 +} |