diff options
author | Matt Turner <mattst88@gentoo.org> | 2015-05-08 21:46:07 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2015-05-08 21:46:07 +0000 |
commit | 8b6e0fcf3e11b423cb041a671b3c9247f54c4885 (patch) | |
tree | 0e15467e8414e758d455198adcf2052f7a6303cd /x11-drivers | |
parent | Version bump to 1.2.9, straight to stable. (diff) | |
download | gentoo-2-8b6e0fcf3e11b423cb041a671b3c9247f54c4885.tar.gz gentoo-2-8b6e0fcf3e11b423cb041a671b3c9247f54c4885.tar.bz2 gentoo-2-8b6e0fcf3e11b423cb041a671b3c9247f54c4885.zip |
Version bump to 2.3.8, straight to stable. Bug 542242.
(Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 974CA72A)
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-video-savage/ChangeLog | 10 | ||||
-rw-r--r-- | x11-drivers/xf86-video-savage/xf86-video-savage-2.3.8.ebuild | 30 |
2 files changed, 38 insertions, 2 deletions
diff --git a/x11-drivers/xf86-video-savage/ChangeLog b/x11-drivers/xf86-video-savage/ChangeLog index 917068e65caf..a74426307bed 100644 --- a/x11-drivers/xf86-video-savage/ChangeLog +++ b/x11-drivers/xf86-video-savage/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-drivers/xf86-video-savage -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog,v 1.92 2013/10/08 05:06:38 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog,v 1.93 2015/05/08 21:46:07 mattst88 Exp $ + +*xf86-video-savage-2.3.8 (08 May 2015) + + 08 May 2015; Matt Turner <mattst88@gentoo.org> + +xf86-video-savage-2.3.8.ebuild: + Version bump to 2.3.8, straight to stable. Bug 542242. 08 Oct 2013; Agostino Sarubbo <ago@gentoo.org> xf86-video-savage-2.3.7.ebuild: Stable for x86, wrt bug #475480 diff --git a/x11-drivers/xf86-video-savage/xf86-video-savage-2.3.8.ebuild b/x11-drivers/xf86-video-savage/xf86-video-savage-2.3.8.ebuild new file mode 100644 index 000000000000..c7a04f946bbe --- /dev/null +++ b/x11-drivers/xf86-video-savage/xf86-video-savage-2.3.8.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/xf86-video-savage-2.3.8.ebuild,v 1.1 2015/05/08 21:46:07 mattst88 Exp $ + +EAPI=4 +XORG_DRI=dri +inherit xorg-2 + +DESCRIPTION="S3 Savage video driver" +KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-fbsd ~x86-fbsd" + +IUSE="dri" +RDEPEND=">=x11-base/xorg-server-1.0.99" +DEPEND="${RDEPEND} + >=x11-proto/xextproto-7.0.99.1" + +pkg_setup() { + XORG_CONFIGURE_OPTIONS=( + $(use_enable dri) + ) + xorg-2_pkg_setup +} + +pkg_postinst() { + if has_version ">=x11-base/xorg-server-1.12.99"; then + elog "Your X server no longer supports XAA, so xf86-video-savage will fall back" + elog "to shadowFB. Enable EXA in your X.org configuration to still have some 2D" + elog "acceleration. See \"man 4 savage\" for details." + fi +} |