mr_bones_    15/06/15 07:38:33

  Modified:             vice-2.4.20.ebuild ChangeLog
  Log:
  suppress gtk3 support for now since upstream says it's not ready
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  app-emulation/vice/vice-2.4.20.ebuild

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

Index: vice-2.4.20.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-2.4.20.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vice-2.4.20.ebuild  3 Jun 2015 05:41:15 -0000       1.1
+++ vice-2.4.20.ebuild  15 Jun 2015 07:38:33 -0000      1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-2.4.20.ebuild,v 1.1 
2015/06/03 05:41:15 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/vice-2.4.20.ebuild,v 1.2 
2015/06/15 07:38:33 mr_bones_ Exp $
 
 EAPI=5
 inherit autotools eutils toolchain-funcs flag-o-matic games
@@ -12,13 +12,20 @@
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="Xaw3d alsa ethernet ffmpeg fullscreen gtk2 +gtk3 ipv6 lame nls oss png 
pulseaudio sdl +sdlsound threads vte zlib"
+IUSE="Xaw3d alsa ethernet ffmpeg fullscreen +gtk2 ipv6 lame nls oss png 
pulseaudio sdl +sdlsound threads vte zlib"
 
-REQUIRED_USE="?? ( gtk2 gtk3 sdl )"
+# upstream says gtk3 and sdl2 shouldn't be exposed yet.
+#REQUIRED_USE="?? ( gtk2 gtk3 sdl )"
+REQUIRED_USE="?? ( gtk2 sdl )"
 
 GTK_COMMON="
        x11-libs/pango
        x11-libs/cairo"
+#      gtk3? (
+#              x11-libs/gtk+:3
+#              vte? ( x11-libs/vte:2.90 )
+#              ${GTK_COMMON}
+#      )
 RDEPEND="
        virtual/jpeg:0
        virtual/opengl
@@ -52,28 +59,23 @@
                x11-libs/gtkglext
                ${GTK_COMMON}
        )
-       gtk3? (
-               x11-libs/gtk+:3
-               vte? ( x11-libs/vte:2.90 )
-               ${GTK_COMMON}
-       )
-       !sdl? ( !gtk2? ( !gtk3? (
+       !sdl? ( !gtk2? (
                x11-libs/libXmu
                x11-libs/libXpm
                x11-libs/libXt
                x11-libs/libXv
                Xaw3d? ( x11-libs/libXaw3d )
                !Xaw3d? ( x11-libs/libXaw )
-       ) ) )
+       ) )
        "
 DEPEND="${RDEPEND}
        virtual/pkgconfig
        !sdl? (
                fullscreen? ( x11-proto/xf86vidmodeproto )
-               !gtk2? ( !gtk3? (
+               !gtk2? (
                        x11-libs/libICE
                        x11-libs/libSM
-               ) )
+               )
        )
        x11-apps/bdftopcf
        x11-apps/mkfontdir
@@ -127,11 +129,12 @@
        gui_arg+=" $(use_enable sdl sdlui)"
        # The gtk UI code has raw calls to XOpenDisplay and
        # is missing -lX11 if vte doesn't pull it in.
-       if use gtk2 || use gtk3 ; then
+       #if use gtk2 || use gtk3 ; then
+       if use gtk2 ; then
                use vte || append-libs -lX11
        fi
        gui_arg+=" $(use_enable gtk2 gnomeui)"
-       gui_arg+=" $(use_enable gtk3 gnomeui3)"
+       #gui_arg+=" $(use_enable gtk3 gnomeui3)"
        gui_arg+=" $(use_enable Xaw3d xaw3d)"
 
        # --with-readline is forced to avoid using the embedded copy



1.101                app-emulation/vice/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog   9 Jun 2015 11:12:00 -0000       1.100
+++ ChangeLog   15 Jun 2015 07:38:33 -0000      1.101
@@ -1,6 +1,9 @@
 # ChangeLog for app-emulation/vice
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.100 
2015/06/09 11:12:00 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/vice/ChangeLog,v 1.101 
2015/06/15 07:38:33 mr_bones_ Exp $
+
+  15 Jun 2015; Michael Sterrett <mr_bon...@gentoo.org> vice-2.4.20.ebuild:
+  suppress gtk3 support for now since upstream says it's not ready
 
   09 Jun 2015; Justin Lecher <j...@gentoo.org> metadata.xml:
   Updating remote-id in metadata.xml




Reply via email to