mkxf86config: added patch for xorg-1.9 support

This commit is contained in:
grimmlin 2011-01-20 10:02:38 +00:00
parent f25092dc90
commit 20a5d8b1ef
3 changed files with 57 additions and 0 deletions

View file

@ -1,6 +1,8 @@
AUX mkxf86config-0.9.10.patch 12413 RMD160 741d468551aeb3fb8cdc243ad833ac1e0257c3a6 SHA1 bffabd532bd73a841966b9bac375c24ed7c274b2 SHA256 e0f792ce74f4e1fd171142d31f7a6f0107406550959958081bc3bdf265d39f7f
AUX mkxf86config.initd 145 RMD160 0246c54a139e3cbd72e53774d539e9c6beece255 SHA1 50588bf1ad9faf7ddd9d4134b52a9480be3c9a5b SHA256 471e7800547c76faae8c96b8e84343e67ea763db3eeab0850edb7675e231ff51
AUX xorg-1.9-kbd.patch 418 RMD160 587f38fe4909d14849a1c5302ad4a58d8ed99bab SHA1 a7644482829e90f61794a0ea7a68ae1a3451b041 SHA256 8ba29d875a8d0fecab6fb6f056418b8e9996b8b8bec6137b48a27c021e7b36b1
DIST mkxf86config-0.9.10.tar.bz2 6461 RMD160 28512dede6a8887c7cbdb31b83a2ffce082cc1db SHA1 3e9a16447f8f9b5994a34fee7de05285202efd97 SHA256 82c9c66081588865e719942092fb69233f72fdb423eb285b3775123b2de45829
DIST mkxf86config-0.9.11.tar.bz2 11977 RMD160 2b3ebee81117fba15c2d4541851efa320f63eb6f SHA1 6f7972dd5ec9bf256a9e968c81c72848ba93d4a5 SHA256 5ea02b294236f5923986c4d7e17c3f0b23f917e503fe022c9e3edcdf5c3b918c
EBUILD mkxf86config-0.9.10-r11.ebuild 1043 RMD160 809319fcc99a7dbdba66417fdbc22921cee70075 SHA1 df308361796e4c1e7755616ba09748493c8222b9 SHA256 0c55cbfc1307dd77513b2a679453356c8ba4f18a9bbeea9fcb54a8998ae8da57
EBUILD mkxf86config-0.9.11-r1.ebuild 1045 RMD160 ce8f7f3d1cdfb5455531f42a86dcc13cd6e228ca SHA1 d4c90ee25b0f7c6908e3e1ff10219e4d977f6b90 SHA256 e077572ad84e0efbf32bc72115c3efbd6bffabe7bf8910c09a1200082cbcdac6
EBUILD mkxf86config-0.9.11.ebuild 985 RMD160 747be72b119de832874b0e699821fce80d37715b SHA1 c4c562905f79739e47b6a51555d335230830e21b SHA256 d2fd1799e01401eaa424f92b5d20915440a1a9723e1f2392b2ab3454649d8fbf

View file

@ -0,0 +1,14 @@
diff -Naur mkxf86config-0.9.11.orig/xorg.conf.in mkxf86config-0.9.11/xorg.conf.in
--- mkxf86config-0.9.11.orig/xorg.conf.in 2010-11-24 11:14:51.000000000 +0100
+++ mkxf86config-0.9.11/xorg.conf.in 2011-01-12 16:46:01.000000000 +0100
@@ -253,3 +253,10 @@
Section "DRI"
Mode 0666
EndSection
+
+Section "InputClass"
+ Identifier "Keyboard Defaults"
+ MatchIsKeyboard "yes"
+ Option "XkbLayout" ""
+EndSection
+

View file

@ -0,0 +1,41 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/mkxf86config/mkxf86config-0.9.10.ebuild,v 1.4 2008/09/04 12:53:08 yngwin Exp $
EAPI="2"
inherit eutils
DESCRIPTION="xorg-x11 configuration builder - used only on LiveCD"
HOMEPAGE="http://www.pentoo.ch/"
SRC_URI="http://dev.pentoo.ch/~grimmlin/distfiles/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ia64 ~mips ppc x86"
IUSE="pentoo"
RDEPEND="!mips? ( sys-apps/hwsetup )"
pkg_setup() {
ewarn "This package is designed for use on the LiveCD only and will do "
ewarn "unspeakably horrible and unexpected things on a normal system."
ewarn "YOU HAVE BEEN WARNED!!!"
}
src_prepare() {
epatch "${FILESDIR}"/xorg-1.9-kbd.patch
}
src_install() {
insinto /etc/X11
if use mips
then
doins xorg.conf.impact xorg.conf.newport xorg.conf.o2-fbdev
else
doins xorg.conf.in
fi
exeinto /usr/sbin
doexe mkxf86config.sh
newinitd "${FILESDIR}"/mkxf86config.initd mkxf86config
}