diff options
author | Mark Guertin <gerk@gentoo.org> | 2003-02-05 21:37:00 +0000 |
---|---|---|
committer | Mark Guertin <gerk@gentoo.org> | 2003-02-05 21:37:00 +0000 |
commit | 44fb1860690fc33be6b02da233dcef0a37154a14 (patch) | |
tree | 3036c555afc55f6a5c3bc9793a691db54bbedebb /x11-misc/xeasyconf | |
parent | fix bug #15182 (diff) | |
download | gentoo-2-44fb1860690fc33be6b02da233dcef0a37154a14.tar.gz gentoo-2-44fb1860690fc33be6b02da233dcef0a37154a14.tar.bz2 gentoo-2-44fb1860690fc33be6b02da233dcef0a37154a14.zip |
new version to fix potential XKB problems
Diffstat (limited to 'x11-misc/xeasyconf')
-rw-r--r-- | x11-misc/xeasyconf/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/xeasyconf/files/digest-xeasyconf-0.1.5 | 1 | ||||
-rw-r--r-- | x11-misc/xeasyconf/xeasyconf-0.1.5.ebuild | 33 |
3 files changed, 39 insertions, 0 deletions
diff --git a/x11-misc/xeasyconf/ChangeLog b/x11-misc/xeasyconf/ChangeLog index 9ecf029215d4..f3b2d924c623 100644 --- a/x11-misc/xeasyconf/ChangeLog +++ b/x11-misc/xeasyconf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xeasyconf # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +xeasyconf-0.1.5 (Jan 05, 2003) + 05 Jan 2003; Mark Guertin <gerk@gentoo.org> xeasyconf-0.1.5.ebuild : + New version to fix b0rked pre XKB keymaps (now defaults to setting + no keymaps). Fixes potential issues with xfree-4.2.99.4 and better. + xeasyconf-0.1.4 (Sep 09, 2002) 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/x11-misc/xeasyconf/files/digest-xeasyconf-0.1.5 b/x11-misc/xeasyconf/files/digest-xeasyconf-0.1.5 new file mode 100644 index 000000000000..54b9bd355739 --- /dev/null +++ b/x11-misc/xeasyconf/files/digest-xeasyconf-0.1.5 @@ -0,0 +1 @@ +MD5 ad749fa555ee0e45cd158af675143092 xeasyconf-0.1.5.tar.gz 14769 diff --git a/x11-misc/xeasyconf/xeasyconf-0.1.5.ebuild b/x11-misc/xeasyconf/xeasyconf-0.1.5.ebuild new file mode 100644 index 000000000000..25e9dd6c5651 --- /dev/null +++ b/x11-misc/xeasyconf/xeasyconf-0.1.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xeasyconf/xeasyconf-0.1.5.ebuild,v 1.1 2003/02/05 21:37:00 gerk Exp $ + +IUSE="" + +S=${WORKDIR}/${P} +DESCRIPTION="Xeasyconf is a PPC only tool to assist in xfree 4.x configs" +SRC_URI="http://gentoo.org/~gerk/xeasyconf/${P}.tar.gz" +HOMEPAGE="http://gentoo.org/~gerk/xeasyconf/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="ppc -x86 -sparc -alpha" + +DEPEND="x11-base/xfree + sys-apps/pciutils" +RDEPEND="dev-util/dialog" + +src_compile() { + + make || die "sorry, failed to compile" +} + +src_install() { + + dodir /usr/bin/ + dodir /usr/sbin/ + into /usr/ + dobin fbcheck + into /usr/ + dosbin Xeasyconf + +} |