diff options
author | 2010-01-20 13:37:33 +0000 | |
---|---|---|
committer | 2010-01-20 13:37:33 +0000 | |
commit | c7ada0b47afe2f8b55f3ead3f89362b7ab491612 (patch) | |
tree | 2858411a398d6c794cd9b6503f0bc7bd51c14b2f /net-fs | |
parent | Remove obsolete patch. Fixes bug #301517 (diff) | |
download | gentoo-2-c7ada0b47afe2f8b55f3ead3f89362b7ab491612.tar.gz gentoo-2-c7ada0b47afe2f8b55f3ead3f89362b7ab491612.tar.bz2 gentoo-2-c7ada0b47afe2f8b55f3ead3f89362b7ab491612.zip |
convenience fix of paths in server-setup scripts
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/coda/ChangeLog | 9 | ||||
-rw-r--r-- | net-fs/coda/coda-6.9.4.ebuild | 8 |
2 files changed, 10 insertions, 7 deletions
diff --git a/net-fs/coda/ChangeLog b/net-fs/coda/ChangeLog index ecaa854c9f99..a4acba568952 100644 --- a/net-fs/coda/ChangeLog +++ b/net-fs/coda/ChangeLog @@ -1,13 +1,16 @@ # ChangeLog for net-fs/coda -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/coda/ChangeLog,v 1.33 2009/12/11 13:41:55 george Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-fs/coda/ChangeLog,v 1.34 2010/01/20 13:37:33 george Exp $ + + 20 Jan 2010; George Shapovalov <george@gentoo.org> coda-6.9.4.ebuild: + fixed omission in path substitution in server-setup scripts *coda-6.9.4 (11 Dec 2009) 11 Dec 2009; George Shapovalov <george@gentoo.org> +coda-6.9.4.ebuild, +files/fixdeps.patch, +files/gentoo-init.patch, +files/scripts.tar.bz2: added new major version, heavily reworked. See bugs #193012 and #144234 - fore related info/discussions. Also fixes #281029 + for related info/discussions. Also fixes #281029 12 Jul 2008; Luca Longinotti <chtekk@gentoo.org> +files/6.0.15/auth2, +files/6.0.15/coda-update, +files/6.0.15/codasrv, -files/auth2, diff --git a/net-fs/coda/coda-6.9.4.ebuild b/net-fs/coda/coda-6.9.4.ebuild index 57824650ac45..7d477fd10855 100644 --- a/net-fs/coda/coda-6.9.4.ebuild +++ b/net-fs/coda/coda-6.9.4.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/net-fs/coda/coda-6.9.4.ebuild,v 1.1 2009/12/11 13:41:55 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/coda/coda-6.9.4.ebuild,v 1.2 2010/01/20 13:37:33 george Exp $ inherit autotools eutils toolchain-funcs @@ -114,8 +114,8 @@ src_unpack() { || die "setting FHS compliant paths failed" # move /vice and /vicepX under /var/lib/coda/ - grep -rle "[[:space:]\"=]/vice" "${S}"/*/* | xargs \ - sed -i -e "s:\([[:space:]\"=]\)/vice:\1/var/lib/coda/vice:g" \ + grep -rle "[[:space:]\"=\[]/vice" "${S}"/*/* | xargs \ + sed -i -e "s:\([[:space:]\"=\[]\)/vice:\1/var/lib/coda/vice:g" \ || die "setting FHS compliant paths failed" fi |