public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-emulation/fuse: ChangeLog fuse-1.0.0.ebuild
@ 2011-05-02 20:01 Jesus Rivero (neurogeek)
  0 siblings, 0 replies; 5+ messages in thread
From: Jesus Rivero (neurogeek) @ 2011-05-02 20:01 UTC (permalink / raw
  To: gentoo-commits

neurogeek    11/05/02 20:01:15

  Modified:             ChangeLog
  Added:                fuse-1.0.0.ebuild
  Log:
  Version bump. WRT bug #351726
  
  (Portage version: 2.2.0_alpha29/cvs/Linux i686)

Revision  Changes    Path
1.33                 app-emulation/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	27 Mar 2011 10:25:00 -0000	1.32
+++ ChangeLog	2 May 2011 20:01:15 -0000	1.33
@@ -1,6 +1,11 @@
 # ChangeLog for app-emulation/fuse
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.32 2011/03/27 10:25:00 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.33 2011/05/02 20:01:15 neurogeek Exp $
+
+*fuse-1.0.0 (02 May 2011)
+
+  02 May 2011; Jesus Rivero <neurogeek@gentoo.org> +fuse-1.0.0.ebuild:
+  Version bump. WRT bug #351726
 
   27 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org> fuse-0.7.0.ebuild,
   fuse-0.10.0.2-r3.ebuild:



1.1                  app-emulation/fuse/fuse-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.1&content-type=text/plain

Index: fuse-1.0.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v 1.1 2011/05/02 20:01:15 neurogeek Exp $

EAPI="3"

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.0.0
	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
	png? ( media-libs/libpng )
	xml? ( dev-libs/libxml2 )"
DEPEND="${RDEPEND}
	dev-lang/perl
	dev-util/pkgconfig"

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) \
		|| die "econf failed!"
}

src_compile() {
	emake || die "emake failed!"
}

src_install() {
	emake install DESTDIR="${D}" || die
	dodoc AUTHORS ChangeLog README THANKS
	doman man/fuse.1
}






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/fuse: ChangeLog fuse-1.0.0.ebuild
@ 2011-09-17 13:28 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 5+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-09-17 13:28 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/09/17 13:28:31

  Modified:             ChangeLog fuse-1.0.0.ebuild
  Log:
  Fix building with libpng15 (missing zlib.h include) wrt #383223 by Diego Elio Pettenò
  
  (Portage version: 2.2.0_alpha55/cvs/Linux x86_64)

Revision  Changes    Path
1.34                 app-emulation/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	2 May 2011 20:01:15 -0000	1.33
+++ ChangeLog	17 Sep 2011 13:28:31 -0000	1.34
@@ -1,6 +1,11 @@
 # ChangeLog for app-emulation/fuse
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.33 2011/05/02 20:01:15 neurogeek Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.34 2011/09/17 13:28:31 ssuominen Exp $
+
+  17 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> fuse-1.0.0.ebuild,
+  +files/fuse-1.0.0-libpng15.patch:
+  Fix building with libpng15 (missing zlib.h include) wrt #383223 by Diego Elio
+  Pettenò
 
 *fuse-1.0.0 (02 May 2011)
 



1.2                  app-emulation/fuse/fuse-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?r1=1.1&r2=1.2

Index: fuse-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fuse-1.0.0.ebuild	2 May 2011 20:01:15 -0000	1.1
+++ fuse-1.0.0.ebuild	17 Sep 2011 13:28:31 -0000	1.2
@@ -1,8 +1,9 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v 1.1 2011/05/02 20:01:15 neurogeek Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v 1.2 2011/09/17 13:28:31 ssuominen Exp $
 
-EAPI="3"
+EAPI=4
+inherit eutils
 
 DESCRIPTION="Free Unix Spectrum Emulator by Philip Kendall"
 HOMEPAGE="http://fuse-emulator.sourceforge.net"
@@ -45,14 +46,21 @@
 						!alsa? ( ao? ( media-libs/libao ) )
 						joystick? ( media-libs/libjsw ) ) ) ) ) )
 	dev-libs/glib:2
-	png? ( media-libs/libpng )
+	png? ( media-libs/libpng sys-libs/zlib )
 	xml? ( dev-libs/libxml2 )"
 DEPEND="${RDEPEND}
 	dev-lang/perl
 	dev-util/pkgconfig"
 
+DOCS=( AUTHORS ChangeLog README THANKS )
+
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-libpng15.patch
+}
+
 src_configure() {
 	local guiflag
+
 	if use gtk; then
 		guiflag=""
 	elif use sdl; then
@@ -66,7 +74,9 @@
 	else  # We default to X user interface
 		guiflag="--without-gtk"
 	fi
-	econf --without-win32 \
+
+	econf \
+		--without-win32 \
 		${guiflag} \
 		$(use_with gpm) \
 		$(use_with alsa) \
@@ -75,16 +85,10 @@
 		$(use_enable joystick ui-joystick) \
 		$(use_with xml libxml2) \
 		$(use_with png ) \
-		$(use_enable memlimit smallmem) \
-		|| die "econf failed!"
-}
-
-src_compile() {
-	emake || die "emake failed!"
+		$(use_enable memlimit smallmem)
 }
 
 src_install() {
-	emake install DESTDIR="${D}" || die
-	dodoc AUTHORS ChangeLog README THANKS
+	default
 	doman man/fuse.1
 }






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/fuse: ChangeLog fuse-1.0.0.ebuild
@ 2011-10-06 19:50 Steve Dibb (beandog)
  0 siblings, 0 replies; 5+ messages in thread
From: Steve Dibb (beandog) @ 2011-10-06 19:50 UTC (permalink / raw
  To: gentoo-commits

beandog     11/10/06 19:50:44

  Modified:             ChangeLog fuse-1.0.0.ebuild
  Log:
  amd64 stable, bug 385791
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

Revision  Changes    Path
1.35                 app-emulation/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	17 Sep 2011 13:28:31 -0000	1.34
+++ ChangeLog	6 Oct 2011 19:50:44 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/fuse
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.34 2011/09/17 13:28:31 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.35 2011/10/06 19:50:44 beandog Exp $
+
+  06 Oct 2011; Steve Dibb <beandog@gentoo.org> fuse-1.0.0.ebuild:
+  amd64 stable, bug 385791
 
   17 Sep 2011; Samuli Suominen <ssuominen@gentoo.org> fuse-1.0.0.ebuild,
   +files/fuse-1.0.0-libpng15.patch:



1.3                  app-emulation/fuse/fuse-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?r1=1.2&r2=1.3

Index: fuse-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fuse-1.0.0.ebuild	17 Sep 2011 13:28:31 -0000	1.2
+++ fuse-1.0.0.ebuild	6 Oct 2011 19:50:44 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v 1.2 2011/09/17 13:28:31 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v 1.3 2011/10/06 19:50:44 beandog Exp $
 
 EAPI=4
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+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






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/fuse: ChangeLog fuse-1.0.0.ebuild
@ 2011-10-15 14:20 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 5+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-10-15 14:20 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/10/15 14:20:34

  Modified:             ChangeLog fuse-1.0.0.ebuild
  Log:
  ppc stable wrt #385791
  
  (Portage version: 2.2.0_alpha63/cvs/Linux x86_64)

Revision  Changes    Path
1.36                 app-emulation/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	6 Oct 2011 19:50:44 -0000	1.35
+++ ChangeLog	15 Oct 2011 14:20:34 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/fuse
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.35 2011/10/06 19:50:44 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.36 2011/10/15 14:20:34 xarthisius Exp $
+
+  15 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> fuse-1.0.0.ebuild:
+  ppc stable wrt #385791
 
   06 Oct 2011; Steve Dibb <beandog@gentoo.org> fuse-1.0.0.ebuild:
   amd64 stable, bug 385791



1.4                  app-emulation/fuse/fuse-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?r1=1.3&r2=1.4

Index: fuse-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- fuse-1.0.0.ebuild	6 Oct 2011 19:50:44 -0000	1.3
+++ fuse-1.0.0.ebuild	15 Oct 2011 14:20:34 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v 1.3 2011/10/06 19:50:44 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v 1.4 2011/10/15 14:20:34 xarthisius Exp $
 
 EAPI=4
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+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






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emulation/fuse: ChangeLog fuse-1.0.0.ebuild
@ 2011-10-15 23:07 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2011-10-15 23:07 UTC (permalink / raw
  To: gentoo-commits

maekke      11/10/15 23:07:34

  Modified:             ChangeLog fuse-1.0.0.ebuild
  Log:
  x86 stable, bug #385791
  
  (Portage version: 2.1.10.25/cvs/Linux x86_64)

Revision  Changes    Path
1.37                 app-emulation/fuse/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	15 Oct 2011 14:20:34 -0000	1.36
+++ ChangeLog	15 Oct 2011 23:07:33 -0000	1.37
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/fuse
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.36 2011/10/15 14:20:34 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/ChangeLog,v 1.37 2011/10/15 23:07:33 maekke Exp $
+
+  15 Oct 2011; Markus Meier <maekke@gentoo.org> fuse-1.0.0.ebuild:
+  x86 stable, bug #385791
 
   15 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> fuse-1.0.0.ebuild:
   ppc stable wrt #385791



1.5                  app-emulation/fuse/fuse-1.0.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild?r1=1.4&r2=1.5

Index: fuse-1.0.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fuse-1.0.0.ebuild	15 Oct 2011 14:20:34 -0000	1.4
+++ fuse-1.0.0.ebuild	15 Oct 2011 23:07:33 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v 1.4 2011/10/15 14:20:34 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/fuse/fuse-1.0.0.ebuild,v 1.5 2011/10/15 23:07:33 maekke Exp $
 
 EAPI=4
 inherit eutils
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
+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






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-10-15 23:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-02 20:01 [gentoo-commits] gentoo-x86 commit in app-emulation/fuse: ChangeLog fuse-1.0.0.ebuild Jesus Rivero (neurogeek)
  -- strict thread matches above, loose matches on Subject: below --
2011-09-17 13:28 Samuli Suominen (ssuominen)
2011-10-06 19:50 Steve Dibb (beandog)
2011-10-15 14:20 Kacper Kowalik (xarthisius)
2011-10-15 23:07 Markus Meier (maekke)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox