diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2007-09-26 08:51:43 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2007-09-26 08:51:43 +0000 |
commit | 10bab9d7b9eaad0c0eb21aaf61332423d12de4e4 (patch) | |
tree | b4be5b71f54e299685b1dd4c49b4308220e93b6d /x11-misc | |
parent | Bugfixes, some new layouts. (diff) | |
download | gentoo-2-10bab9d7b9eaad0c0eb21aaf61332423d12de4e4.tar.gz gentoo-2-10bab9d7b9eaad0c0eb21aaf61332423d12de4e4.tar.bz2 gentoo-2-10bab9d7b9eaad0c0eb21aaf61332423d12de4e4.zip |
Use emake on install. Stop adding /usr/share/X11/xkb to CONFIG_PROTECT because of popular demand. If users require protection for this directory, they must create their own file in /etc/env.d/ to do it.
(Portage version: 2.1.3.9)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xkeyboard-config/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild | 6 |
2 files changed, 9 insertions, 5 deletions
diff --git a/x11-misc/xkeyboard-config/ChangeLog b/x11-misc/xkeyboard-config/ChangeLog index 9346b2a386eb..baf101f71e3b 100644 --- a/x11-misc/xkeyboard-config/ChangeLog +++ b/x11-misc/xkeyboard-config/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/xkeyboard-config # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.37 2007/09/26 08:49:03 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.38 2007/09/26 08:51:43 dberkholz Exp $ + + 26 Sep 2007; Donnie Berkholz <dberkholz@gentoo.org>; + xkeyboard-config-1.1.ebuild: + Use emake on install. Stop adding /usr/share/X11/xkb to CONFIG_PROTECT + because of popular demand. If users require protection for this directory, + they must create their own file in /etc/env.d/ to do it. *xkeyboard-config-1.1 (26 Sep 2007) diff --git a/x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild b/x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild index 4b48ccbcc1c4..1db9f2951a23 100644 --- a/x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild +++ b/x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild,v 1.1 2007/09/26 08:49:03 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.1.ebuild,v 1.2 2007/09/26 08:51:43 dberkholz Exp $ inherit eutils multilib @@ -48,7 +48,5 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install || die "install failed" - echo "CONFIG_PROTECT=\"/usr/share/X11/xkb\"" > "${T}"/10xkeyboard-config - doenvd "${T}"/10xkeyboard-config + emake DESTDIR="${D}" install || die "install failed" } |