From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1No6er-0003OB-8a for garchives@archives.gentoo.org; Sun, 07 Mar 2010 02:55:57 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4270E09D0; Sun, 7 Mar 2010 02:55:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B9494E09D0 for ; Sun, 7 Mar 2010 02:55:55 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 5D7521B401C for ; Sun, 7 Mar 2010 02:55:55 +0000 (UTC) Received: from vapier by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1No6eo-0000Rn-JA for gentoo-commits@lists.gentoo.org; Sun, 07 Mar 2010 02:55:54 +0000 From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: eutils.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: eutils.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: Sender: Mike Frysinger Date: Sun, 07 Mar 2010 02:55:54 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: d434cb2d-0741-443c-9399-d2f795420c44 X-Archives-Hash: ab13b963cc479c083d5b3f6a530c711c vapier 10/03/07 02:55:54 Modified: eutils.eclass Log: make_desktop_entry: place media-gfx into Graphics only, not AudioVideo;= Graphics Revision Changes Path 1.339 eclass/eutils.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/eutils.ecla= ss?rev=3D1.339&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/eutils.ecla= ss?rev=3D1.339&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/eutils.ecla= ss?r1=3D1.338&r2=3D1.339 Index: eutils.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v retrieving revision 1.338 retrieving revision 1.339 diff -u -r1.338 -r1.339 --- eutils.eclass 7 Mar 2010 02:52:25 -0000 1.338 +++ eutils.eclass 7 Mar 2010 02:55:54 -0000 1.339 @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.338 2010/03/= 07 02:52:25 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.339 2010/03/= 07 02:55:54 vapier Exp $ =20 # @ECLASS: eutils.eclass # @MAINTAINER: @@ -937,13 +937,19 @@ =20 media) case ${catmin} in - gfx) type=3DGraphics;; - radio) type=3DTuner;; - sound) type=3DAudio;; - tv) type=3DTV;; - video) type=3DVideo;; + gfx) + type=3DGraphics + ;; + *) + case ${catmin} in + radio) type=3DTuner;; + sound) type=3DAudio;; + tv) type=3DTV;; + video) type=3DVideo;; + esac + type=3D"AudioVideo;${type}" + ;; esac - type=3D"AudioVideo;${type}" ;; =20 net)