neurogeek 14/07/23 23:12:32 Modified: ChangeLog Added: fuse-1.1.1.ebuild Log: Version bump. (Portage version: 2.2.10/cvs/Linux i686, signed Manifest commit with key 1F6F0683)
Revision Changes Path 1.42 app-emulation/fuse/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.42&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.42&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?r1=1.41&r2=1.42 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- ChangeLog 17 Mar 2013 15:23:25 -0000 1.41 +++ ChangeLog 23 Jul 2014 23:12:31 -0000 1.42 @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/fuse -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.41 2013/03/17 15:23:25 hwoarang Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.42 2014/07/23 23:12:31 neurogeek Exp $ + +*fuse-1.1.1 (23 Jul 2014) + + 23 Jul 2014; Jesus Rivero <[email protected]> +fuse-1.1.1.ebuild: + Version bump. 17 Mar 2013; Markos Chandras <[email protected]> metadata.xml: Add proxy-maintainers to metadata.xml 1.1 app-emulation/fuse/fuse-1.1.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.1.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.1.1.ebuild?rev=1.1&content-type=text/plain Index: fuse-1.1.1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.1.1.ebuild,v 1.1 2014/07/23 23:12:31 neurogeek Exp $ EAPI="5" inherit autotools eutils 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 memlimit png 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-1.1.1 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? ( 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 png? ( media-libs/libpng sys-libs/zlib ) xml? ( dev-libs/libxml2 )" DEPEND="${RDEPEND} fbcon? ( virtual/linux-sources ) dev-lang/perl virtual/pkgconfig" DOCS=( AUTHORS ChangeLog README THANKS ) src_prepare() { epatch "${FILESDIR}/${P}-gold-link-lm.patch" eautoreconf } src_configure() { 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 joystick) \ $(use_enable joystick ui-joystick) \ $(use_with xml libxml2) \ $(use_with png ) \ $(use_enable memlimit smallmem) } src_install() { default doman man/fuse.1 }
