diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2007-09-02 12:16:07 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2007-09-02 12:16:07 +0000 |
commit | 24c4e2017485cccaf559fb1bf03b21a8a925406f (patch) | |
tree | 5f8df053cc243b0a2398bc8965b3ad32934c65fb /app-text/dictd | |
parent | inform the user about syntax-case per Etienne (diff) | |
download | gentoo-2-24c4e2017485cccaf559fb1bf03b21a8a925406f.tar.gz gentoo-2-24c4e2017485cccaf559fb1bf03b21a8a925406f.tar.bz2 gentoo-2-24c4e2017485cccaf559fb1bf03b21a8a925406f.zip |
Changed the init script to better accommodate for UTF-8 locales and dictionaries and added a note about this to confd.
(Portage version: 2.1.3.7)
Diffstat (limited to 'app-text/dictd')
-rw-r--r-- | app-text/dictd/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/dictd/files/1.10.9/dictd | 4 | ||||
-rw-r--r-- | app-text/dictd/files/1.10.9/dictd.confd | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/app-text/dictd/ChangeLog b/app-text/dictd/ChangeLog index 7e8b15eeb4eb..bd6b15a1b27c 100644 --- a/app-text/dictd/ChangeLog +++ b/app-text/dictd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/dictd # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dictd/ChangeLog,v 1.38 2007/08/25 16:52:10 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dictd/ChangeLog,v 1.39 2007/09/02 12:16:07 philantrop Exp $ + + 02 Sep 2007; Wulf C. Krueger <philantrop@gentoo.org> files/1.10.9/dictd, + files/1.10.9/dictd.confd: + Changed the init script to better accommodate for UTF-8 locales and + dictionaries and added a note about this to confd. 25 Aug 2007; Steve Dibb <beandog@gentoo.org> dictd-1.9.14.ebuild: amd64 stable diff --git a/app-text/dictd/files/1.10.9/dictd b/app-text/dictd/files/1.10.9/dictd index 5f21c9808a7d..dfb4499eae02 100644 --- a/app-text/dictd/files/1.10.9/dictd +++ b/app-text/dictd/files/1.10.9/dictd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dictd/files/1.10.9/dictd,v 1.1 2007/08/18 01:15:54 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dictd/files/1.10.9/dictd,v 1.2 2007/09/02 12:16:07 philantrop Exp $ # NB: Config is in /etc/conf.d/dictd @@ -64,7 +64,7 @@ depend() { start() { ebegin "Starting dictd" prepconfig || return 1 - start-stop-daemon --start --quiet --exec /usr/sbin/dictd -- --locale=C $EARGS + start-stop-daemon --start --quiet --exec /usr/sbin/dictd -- $EARGS eend $? } diff --git a/app-text/dictd/files/1.10.9/dictd.confd b/app-text/dictd/files/1.10.9/dictd.confd index f34f7609a1f9..ce35be86ac17 100644 --- a/app-text/dictd/files/1.10.9/dictd.confd +++ b/app-text/dictd/files/1.10.9/dictd.confd @@ -1,5 +1,7 @@ # Config file for /etc/init.d/dictd +# Should you have problems starting dictd in an UTF-8 locale, add an appropriate +# --locale switch to EARGS, e. g. "--locale=en_US.utf8" EARGS="-s " DICTDCONF=/etc/dict/dictd.conf # Set DICTDCONF_MOD if you have a custom umask. cf. bug 90657 on bugs.gentoo.org |