diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-02-18 16:30:24 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2011-02-18 16:30:24 +0000 |
commit | 9a698bf478020ca3adea9371242ebc361341c03c (patch) | |
tree | 50da53a081626d05c17d39492d80df6571a5d356 /app-admin/eselect-mesa | |
parent | fixed date (diff) | |
download | gentoo-2-9a698bf478020ca3adea9371242ebc361341c03c.tar.gz gentoo-2-9a698bf478020ca3adea9371242ebc361341c03c.tar.bz2 gentoo-2-9a698bf478020ca3adea9371242ebc361341c03c.zip |
Version bump. Now with multilib support
(Portage version: 2.2.0_alpha23/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/eselect-mesa')
-rw-r--r-- | app-admin/eselect-mesa/ChangeLog | 8 | ||||
-rw-r--r-- | app-admin/eselect-mesa/eselect-mesa-0.0.9.ebuild | 30 |
2 files changed, 37 insertions, 1 deletions
diff --git a/app-admin/eselect-mesa/ChangeLog b/app-admin/eselect-mesa/ChangeLog index 6a4aa3ae4e64..97d081d1d92a 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.9 2011/02/14 11:30:36 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-mesa/ChangeLog,v 1.10 2011/02/18 16:30:24 chithanh Exp $ + +*eselect-mesa-0.0.9 (18 Feb 2011) + + 18 Feb 2011; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + +eselect-mesa-0.0.9.ebuild: + Version bump. Now with multilib support 14 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> eselect-mesa-0.0.8.ebuild: diff --git a/app-admin/eselect-mesa/eselect-mesa-0.0.9.ebuild b/app-admin/eselect-mesa/eselect-mesa-0.0.9.ebuild new file mode 100644 index 000000000000..ef2f756370d5 --- /dev/null +++ b/app-admin/eselect-mesa/eselect-mesa-0.0.9.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.9.ebuild,v 1.1 2011/02/18 16:30:24 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" +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 +} |