diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-06-07 20:54:57 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-06-07 20:54:57 +0000 |
commit | 1cf4e80dcc93f6f8a6963086cc7bcd569de60ae8 (patch) | |
tree | c7566e6085b73fae0ea183f542ed1d56abc16a2b | |
parent | Don't apply both 237 and 240 when using gcc 3.3, better safe than sorry. (diff) | |
download | gentoo-2-1cf4e80dcc93f6f8a6963086cc7bcd569de60ae8.tar.gz gentoo-2-1cf4e80dcc93f6f8a6963086cc7bcd569de60ae8.tar.bz2 gentoo-2-1cf4e80dcc93f6f8a6963086cc7bcd569de60ae8.zip |
Version bump. This includes some fixes to the xorg.conf.in to make things a little cleaner.
(Portage version: 2.1_rc4-r3)
-rw-r--r-- | x11-misc/mkxf86config/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/mkxf86config/files/digest-mkxf86config-0.9.4 | 3 | ||||
-rw-r--r-- | x11-misc/mkxf86config/mkxf86config-0.9.4.ebuild | 24 |
3 files changed, 36 insertions, 2 deletions
diff --git a/x11-misc/mkxf86config/ChangeLog b/x11-misc/mkxf86config/ChangeLog index 7be4012e6ac4..401dd920482e 100644 --- a/x11-misc/mkxf86config/ChangeLog +++ b/x11-misc/mkxf86config/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-misc/mkxf86config -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/mkxf86config/ChangeLog,v 1.20 2005/12/06 15:59:41 wolf31o2 Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/mkxf86config/ChangeLog,v 1.21 2006/06/07 20:54:57 wolf31o2 Exp $ + +*mkxf86config-0.9.4 (07 Jun 2006) + + 07 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> + +mkxf86config-0.9.4.ebuild: + Version bump. This includes some fixes to the xorg.conf.in to make things a + little cleaner. *mkxf86config-0.9.3 (06 Dec 2005) diff --git a/x11-misc/mkxf86config/files/digest-mkxf86config-0.9.4 b/x11-misc/mkxf86config/files/digest-mkxf86config-0.9.4 new file mode 100644 index 000000000000..9eb5ab86d9c0 --- /dev/null +++ b/x11-misc/mkxf86config/files/digest-mkxf86config-0.9.4 @@ -0,0 +1,3 @@ +MD5 f1751db6137339bc1e1455230bbd483a mkxf86config-0.9.4.tar.bz2 4321 +RMD160 7bddcae19f27b64ed48696c6f354c3670a3a006e mkxf86config-0.9.4.tar.bz2 4321 +SHA256 85c419cb7fce0247404cf4d18311d9d8c61ea7036d8bc1d266a65dda2dd0799b mkxf86config-0.9.4.tar.bz2 4321 diff --git a/x11-misc/mkxf86config/mkxf86config-0.9.4.ebuild b/x11-misc/mkxf86config/mkxf86config-0.9.4.ebuild new file mode 100644 index 000000000000..c697cccaa6c2 --- /dev/null +++ b/x11-misc/mkxf86config/mkxf86config-0.9.4.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/mkxf86config/mkxf86config-0.9.4.ebuild,v 1.1 2006/06/07 20:54:57 wolf31o2 Exp $ + +inherit eutils + +DESCRIPTION="xorg-x11 configuration builder for Gentoo" +SRC_URI="http://dev.gentoo.org/~wolf31o2/sources/${PN}/${P}.tar.bz2" +HOMEPAGE="http://www.gentoo.org" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="sys-apps/hwsetup" + +src_install() { + insinto /etc/X11 + doins xorg.conf.in + exeinto /usr/sbin + doexe mkxf86config.sh + newinitd ${FILESDIR}/mkxf86config-init mkxf86config +} |