diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-04-09 18:06:26 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-04-09 18:06:26 +0000 |
commit | 53c786f06cd38c9ff46f9defb5de8bef08583da9 (patch) | |
tree | 8a117950e7cc5bad1eb74dcc3c75ebb86112a539 /app-admin | |
parent | Punt code for SRC_URI, it's handled in the ebuilds because it's not consisten... (diff) | |
download | gentoo-2-53c786f06cd38c9ff46f9defb5de8bef08583da9.tar.gz gentoo-2-53c786f06cd38c9ff46f9defb5de8bef08583da9.tar.bz2 gentoo-2-53c786f06cd38c9ff46f9defb5de8bef08583da9.zip |
Version bump, fixes bug #362747
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/eselect-mesa/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/eselect-mesa/eselect-mesa-0.0.10.ebuild | 30 |
2 files changed, 37 insertions, 1 deletions
diff --git a/app-admin/eselect-mesa/ChangeLog b/app-admin/eselect-mesa/ChangeLog index f74f43ecf055..8366bf5b5ea9 100644 --- a/app-admin/eselect-mesa/ChangeLog +++ b/app-admin/eselect-mesa/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-admin/eselect-mesa # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-mesa/ChangeLog,v 1.16 2011/04/08 16:10:35 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-mesa/ChangeLog,v 1.17 2011/04/09 18:06:26 chithanh Exp $ + +*eselect-mesa-0.0.10 (09 Apr 2011) + + 09 Apr 2011; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + +eselect-mesa-0.0.10.ebuild: + Version bump, fixes bug #362747 08 Apr 2011; Markus Meier <maekke@gentoo.org> eselect-mesa-0.0.9.ebuild: arm stable, bug #359059 diff --git a/app-admin/eselect-mesa/eselect-mesa-0.0.10.ebuild b/app-admin/eselect-mesa/eselect-mesa-0.0.10.ebuild new file mode 100644 index 000000000000..9651645a36cc --- /dev/null +++ b/app-admin/eselect-mesa/eselect-mesa-0.0.10.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-mesa/eselect-mesa-0.0.10.ebuild,v 1.1 2011/04/09 18:06:26 chithanh Exp $ + +EAPI=3 + +DESCRIPTION="Utility to change the Mesa OpenGL driver being used" +HOMEPAGE="http://www.gentoo.org/" + +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="" +RDEPEND=">=app-admin/eselect-1.2.4" + +src_install() { + insinto /usr/share/eselect/modules + doins mesa.eselect || die +} + +pkg_postinst() { + if has_version ">=media-libs/mesa-7.9" && \ + ! [ -f "${EROOT}"/usr/share/mesa/eselect-mesa.conf ]; then + eerror "Rebuild media-libs/mesa for ${PN} to work." + fi +} |