diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-08-01 00:39:05 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-08-01 00:39:05 +0000 |
commit | ad68be654de561e8ee020eff7d8fff1eac58c49e (patch) | |
tree | 8db6356e0d4d6c00a546f237c0ce9cd34c06bdf4 /x11-misc/mkxf86config | |
parent | Stable on amd64 wrt security bug #179354 (diff) | |
download | gentoo-2-ad68be654de561e8ee020eff7d8fff1eac58c49e.tar.gz gentoo-2-ad68be654de561e8ee020eff7d8fff1eac58c49e.tar.bz2 gentoo-2-ad68be654de561e8ee020eff7d8fff1eac58c49e.zip |
Version bump with only one change from 0.9.8 for bug #172449. Thanks to Peter Hjalmarsson <xake@rymdraket.net> for finding the problem and pointing it out.
(Portage version: 2.1.3_rc9)
Diffstat (limited to 'x11-misc/mkxf86config')
-rw-r--r-- | x11-misc/mkxf86config/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/mkxf86config/files/digest-mkxf86config-0.9.9 | 3 | ||||
-rw-r--r-- | x11-misc/mkxf86config/mkxf86config-0.9.9.ebuild | 29 |
3 files changed, 41 insertions, 1 deletions
diff --git a/x11-misc/mkxf86config/ChangeLog b/x11-misc/mkxf86config/ChangeLog index b2484cb8fa51..1d49ed34b7fd 100644 --- a/x11-misc/mkxf86config/ChangeLog +++ b/x11-misc/mkxf86config/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for x11-misc/mkxf86config # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/mkxf86config/ChangeLog,v 1.33 2007/02/19 15:47:35 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/mkxf86config/ChangeLog,v 1.34 2007/08/01 00:39:05 wolf31o2 Exp $ + +*mkxf86config-0.9.9 (01 Aug 2007) + + 01 Aug 2007; Chris Gianelloni <wolf31o2@gentoo.org> + +mkxf86config-0.9.9.ebuild: + Version bump with only one change from 0.9.8 for bug #172449. Thanks to + Peter Hjalmarsson <xake@rymdraket.net> for finding the problem and pointing + it out. 19 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org> mkxf86config-0.9.8.ebuild: diff --git a/x11-misc/mkxf86config/files/digest-mkxf86config-0.9.9 b/x11-misc/mkxf86config/files/digest-mkxf86config-0.9.9 new file mode 100644 index 000000000000..b24c19d78d96 --- /dev/null +++ b/x11-misc/mkxf86config/files/digest-mkxf86config-0.9.9 @@ -0,0 +1,3 @@ +MD5 6579f8903131db8b81fa1dd8861d588c mkxf86config-0.9.9.tar.bz2 6396 +RMD160 9d6ba1a228d25783f6eb6379e333f9e5293cdd6a mkxf86config-0.9.9.tar.bz2 6396 +SHA256 6f68c4480ee9dfbe91659f66bbb5138135d08d8f293b87837939c7bc280d59b1 mkxf86config-0.9.9.tar.bz2 6396 diff --git a/x11-misc/mkxf86config/mkxf86config-0.9.9.ebuild b/x11-misc/mkxf86config/mkxf86config-0.9.9.ebuild new file mode 100644 index 000000000000..041240ff4c74 --- /dev/null +++ b/x11-misc/mkxf86config/mkxf86config-0.9.9.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/mkxf86config/mkxf86config-0.9.9.ebuild,v 1.1 2007/08/01 00:39:05 wolf31o2 Exp $ + +inherit eutils + +DESCRIPTION="xorg-x11 configuration builder for Gentoo - used only on LiveCD" +SRC_URI="http://dev.gentoo.org/~wolf31o2/sources/${PN}/${P}.tar.bz2" +HOMEPAGE="http://www.gentoo.org" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~mips ~ppc ~x86" +IUSE="" + +RDEPEND="!mips? ( sys-apps/hwsetup )" + +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-init mkxf86config +} |