diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-10-14 11:04:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-10-14 11:04:35 +0000 |
commit | 6569b1b5520fe20e6371a79aeead9eba81e3298b (patch) | |
tree | 2ee0a06f4a28b6ded06226a3b0cb1160ebe779e8 /sys-apps | |
parent | remove old (diff) | |
download | gentoo-2-6569b1b5520fe20e6371a79aeead9eba81e3298b.tar.gz gentoo-2-6569b1b5520fe20e6371a79aeead9eba81e3298b.tar.bz2 gentoo-2-6569b1b5520fe20e6371a79aeead9eba81e3298b.zip |
better unicode= fix
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/openrc/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/openrc/openrc-0.5.1.ebuild | 4 | ||||
-rw-r--r-- | sys-apps/openrc/openrc-9999.ebuild | 4 |
3 files changed, 7 insertions, 6 deletions
diff --git a/sys-apps/openrc/ChangeLog b/sys-apps/openrc/ChangeLog index f26207c6447b..91bfec8fbcb7 100644 --- a/sys-apps/openrc/ChangeLog +++ b/sys-apps/openrc/ChangeLog @@ -1,8 +1,9 @@ # ChangeLog for sys-apps/openrc # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v 1.79 2009/10/10 09:17:01 zzam Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v 1.80 2009/10/14 11:04:35 vapier Exp $ - 10 Oct 2009; Matthias Schwarzott <zzam@gentoo.org> openrc-0.5.1.ebuild: + 10 Oct 2009; Matthias Schwarzott <zzam@gentoo.org> openrc-0.5.1.ebuild, + openrc-9999.ebuild: Fixed enabling unicode in rc.conf, thanks to polynomial-c, bug #288383. *openrc-0.5.1 (09 Oct 2009) diff --git a/sys-apps/openrc/openrc-0.5.1.ebuild b/sys-apps/openrc/openrc-0.5.1.ebuild index cd807568c1d5..b1baa905e959 100644 --- a/sys-apps/openrc/openrc-0.5.1.ebuild +++ b/sys-apps/openrc/openrc-0.5.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.5.1.ebuild,v 1.2 2009/10/10 09:17:01 zzam Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-0.5.1.ebuild,v 1.3 2009/10/14 11:04:35 vapier Exp $ EAPI="1" @@ -106,7 +106,7 @@ src_install() { mv "${D}/etc/runlevels" "${D}/usr/share/${PN}" # Setup unicode defaults for silly unicode users - use unicode && sed -i -e 's:^#\(unicode=\)"NO":\1"YES":' "${D}"/etc/rc.conf + use unicode && sed -i -r -e '/^#?unicode=/s:NO:YES:' "${D}"/etc/rc.conf # Cater to the norm (use x86 || use amd64) && sed -i -e '/^windowkeys=/s:NO:YES:' "${D}"/etc/conf.d/keymaps diff --git a/sys-apps/openrc/openrc-9999.ebuild b/sys-apps/openrc/openrc-9999.ebuild index 02d69d25b8f4..ef4e8cf930c9 100644 --- a/sys-apps/openrc/openrc-9999.ebuild +++ b/sys-apps/openrc/openrc-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.52 2009/10/09 16:48:13 zzam Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/openrc-9999.ebuild,v 1.53 2009/10/14 11:04:35 vapier Exp $ EAPI="1" @@ -104,7 +104,7 @@ src_install() { mv "${D}/etc/runlevels" "${D}/usr/share/${PN}" # Setup unicode defaults for silly unicode users - use unicode && sed -i -e '/^unicode=/s:NO:YES:' "${D}"/etc/rc.conf + use unicode && sed -i -r -e '/^#?unicode=/s:NO:YES:' "${D}"/etc/rc.conf # Cater to the norm (use x86 || use amd64) && sed -i -e '/^windowkeys=/s:NO:YES:' "${D}"/etc/conf.d/keymaps |