diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2010-01-10 08:17:42 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2010-01-10 08:17:42 +0000 |
commit | a353acb4c705b967f7e167bbd68ddc70bf8302cb (patch) | |
tree | a1c8b6aee576340dea6547422a008745b3e0f1c2 /x11-misc/keytouch | |
parent | Bug #283320 cleanup. This package is actually installing just a script and sh... (diff) | |
download | gentoo-2-a353acb4c705b967f7e167bbd68ddc70bf8302cb.tar.gz gentoo-2-a353acb4c705b967f7e167bbd68ddc70bf8302cb.tar.bz2 gentoo-2-a353acb4c705b967f7e167bbd68ddc70bf8302cb.zip |
Bug #283320 cleanup: linux_config_exists before linux_chkconfig*.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/keytouch')
-rw-r--r-- | x11-misc/keytouch/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/keytouch/keytouch-2.4.1.ebuild | 8 |
2 files changed, 10 insertions, 5 deletions
diff --git a/x11-misc/keytouch/ChangeLog b/x11-misc/keytouch/ChangeLog index 58ad4a5c20a5..d50eac4910b7 100644 --- a/x11-misc/keytouch/ChangeLog +++ b/x11-misc/keytouch/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/keytouch -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.17 2009/03/23 22:40:55 maekke Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.18 2010/01/10 08:17:42 robbat2 Exp $ + + 10 Jan 2010; Robin H. Johnson <robbat2@gentoo.org> keytouch-2.4.1.ebuild: + Bug #283320 cleanup: linux_config_exists before linux_chkconfig*. 23 Mar 2009; Markus Meier <maekke@gentoo.org> keytouch-2.4.1.ebuild: amd64/x86 stable, bug #263405 diff --git a/x11-misc/keytouch/keytouch-2.4.1.ebuild b/x11-misc/keytouch/keytouch-2.4.1.ebuild index 18c2ee1082f2..6636c9fa075b 100644 --- a/x11-misc/keytouch/keytouch-2.4.1.ebuild +++ b/x11-misc/keytouch/keytouch-2.4.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.2 2009/03/23 22:40:55 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.3 2010/01/10 08:17:42 robbat2 Exp $ inherit eutils linux-info @@ -82,7 +82,8 @@ pkg_postinst() { elog "x11-misc/keytouch-editor can be used to create" elog "your own keyboard files" echo - if use acpi && ! linux_chkconfig_present INPUT_EVDEV ; then + if use acpi; then + if ! linux_config_exists || ! linux_chkconfig_present INPUT_EVDEV; then ewarn "To enable support for ACPI hotkeys, CONFIG_INPUT_EVDEV" ewarn "must be enabled in your kernel config." ewarn @@ -91,4 +92,5 @@ pkg_postinst() { ewarn " <*>/<M> Event interface" echo fi + fi } |