diff options
author | Peter Volkov <pva@gentoo.org> | 2008-09-15 16:35:02 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-09-15 16:35:02 +0000 |
commit | eff6d4f580c5936e91997bd5533548090199d60c (patch) | |
tree | f608105201e7b2d05accbd218f849589b28d52cf /app-dicts/ispell-no | |
parent | Fix SRC_URI, #237690 (diff) | |
download | gentoo-2-eff6d4f580c5936e91997bd5533548090199d60c.tar.gz gentoo-2-eff6d4f580c5936e91997bd5533548090199d60c.tar.bz2 gentoo-2-eff6d4f580c5936e91997bd5533548090199d60c.zip |
Fix build in non C locales, possibly fixes bug #227055, thank Evil Compile Person for report.
(Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo i686)
Diffstat (limited to 'app-dicts/ispell-no')
-rw-r--r-- | app-dicts/ispell-no/ChangeLog | 8 | ||||
-rw-r--r-- | app-dicts/ispell-no/ispell-no-2.0.ebuild | 12 |
2 files changed, 13 insertions, 7 deletions
diff --git a/app-dicts/ispell-no/ChangeLog b/app-dicts/ispell-no/ChangeLog index d8e030f7606d..3dbf8b88649f 100644 --- a/app-dicts/ispell-no/ChangeLog +++ b/app-dicts/ispell-no/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-dicts/ispell-no -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-no/ChangeLog,v 1.3 2007/02/21 20:40:12 peper Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-no/ChangeLog,v 1.4 2008/09/15 16:35:02 pva Exp $ + + 15 Sep 2008; Peter Volkov <pva@gentoo.org> ispell-no-2.0.ebuild: + Fix build in non C locales, possibly fixes bug #227055, thank Evil Compile + Person for report. 21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/app-dicts/ispell-no/ispell-no-2.0.ebuild b/app-dicts/ispell-no/ispell-no-2.0.ebuild index 4299e435add5..57e1edaf45f8 100644 --- a/app-dicts/ispell-no/ispell-no-2.0.ebuild +++ b/app-dicts/ispell-no/ispell-no-2.0.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-no/ispell-no-2.0.ebuild,v 1.1 2005/09/20 19:00:27 arj Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-no/ispell-no-2.0.ebuild,v 1.2 2008/09/15 16:35:02 pva Exp $ MY_P="norsk-${PV}" -S="${WORKDIR}/norsk" DESCRIPTION="A Norwegian dictionary for ispell" SRC_URI="http://www.uio.no/~runekl/ispell-${MY_P}.tar.gz" HOMEPAGE="http://www.stanford.edu/services/pubsw/package/dicts/norsk.html" @@ -15,11 +14,14 @@ KEYWORDS="~x86 ~amd64" DEPEND="app-text/ispell" +S=${WORKDIR}/norsk + src_compile() { - make BUILDHASH="/usr/bin/buildhash" all || die + export LC_ALL=C #227055 + make BUILDHASH="/usr/bin/buildhash" all || die } src_install () { insinto /usr/lib/ispell - doins norsk.aff norsk.hash norsk.munch.hash nynorsk.aff nynorsk.hash + doins norsk.{aff,hash,munch.hash} nynorsk.{aff,hash} || die } |