diff options
author | Peter Volkov <pva@gentoo.org> | 2009-12-29 11:24:38 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2009-12-29 11:24:38 +0000 |
commit | eb0acabe55a29ceead0a0698ec343eb831b80048 (patch) | |
tree | 1d9347cd73087efcd23b0bfeb14941d0c2428e4f /app-dicts | |
parent | Version bump, bug #298509. Also fixes repoman warning about implicit RDEPEND. (diff) | |
download | gentoo-2-eb0acabe55a29ceead0a0698ec343eb831b80048.tar.gz gentoo-2-eb0acabe55a29ceead0a0698ec343eb831b80048.tar.bz2 gentoo-2-eb0acabe55a29ceead0a0698ec343eb831b80048.zip |
Fixed encoding issue, bug #298283, thank Dragomir Penev for report and fix.
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'app-dicts')
-rw-r--r-- | app-dicts/myspell-bg/ChangeLog | 9 | ||||
-rw-r--r-- | app-dicts/myspell-bg/files/myspell-bg-20071211-encoding.patch | 10 | ||||
-rw-r--r-- | app-dicts/myspell-bg/myspell-bg-20071211-r1.ebuild | 32 |
3 files changed, 50 insertions, 1 deletions
diff --git a/app-dicts/myspell-bg/ChangeLog b/app-dicts/myspell-bg/ChangeLog index 2caec347ae72..fe07048e8da4 100644 --- a/app-dicts/myspell-bg/ChangeLog +++ b/app-dicts/myspell-bg/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-dicts/myspell-bg # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-bg/ChangeLog,v 1.16 2009/12/22 15:26:10 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-bg/ChangeLog,v 1.17 2009/12/29 11:24:37 pva Exp $ + +*myspell-bg-20071211-r1 (29 Dec 2009) + + 29 Dec 2009; Peter Volkov <pva@gentoo.org> +myspell-bg-20071211-r1.ebuild, + +files/myspell-bg-20071211-encoding.patch: + Fixed encoding issue, bug #298283, thank Dragomir Penev for report and + fix. *myspell-bg-20071211 (22 Dec 2009) diff --git a/app-dicts/myspell-bg/files/myspell-bg-20071211-encoding.patch b/app-dicts/myspell-bg/files/myspell-bg-20071211-encoding.patch new file mode 100644 index 000000000000..06734b43021b --- /dev/null +++ b/app-dicts/myspell-bg/files/myspell-bg-20071211-encoding.patch @@ -0,0 +1,10 @@ +=== modified file 'bg_BG.aff' +--- bg_BG.aff 2009-12-29 11:13:33 +0000 ++++ bg_BG.aff 2009-12-29 11:16:20 +0000 +@@ -1,4 +1,4 @@ +-SET microsoft-cp1251
++SET cp1251
+ TRY àåíîèðòâñëêìïçäÿóáú÷ãöæõøôéùþüÀÅÍÎÈÐÒÂÑËÊÌÏÇÄßÓÁÚ×ÃÖÆÕØÔÉÙÞÜ
+
+ SFX A Y 8
+ diff --git a/app-dicts/myspell-bg/myspell-bg-20071211-r1.ebuild b/app-dicts/myspell-bg/myspell-bg-20071211-r1.ebuild new file mode 100644 index 000000000000..f0959c62c10c --- /dev/null +++ b/app-dicts/myspell-bg/myspell-bg-20071211-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-bg/myspell-bg-20071211-r1.ebuild,v 1.1 2009/12/29 11:24:37 pva Exp $ + +# 20071211 is a 4.1 version from sf.net released on 20071211 + +MYSPELL_SPELLING_DICTIONARIES=( +"bg,BG,bg_BG,Bulgarian (Bulgaria),bg_BG.zip" +) + +MYSPELL_HYPHENATION_DICTIONARIES=( +"bg,BG,hyph_bg_BG,Bulgarian (Bulgaria),hyph_bg_BG.zip" +) + +MYSPELL_THESAURUS_DICTIONARIES=( +"bg,BG,th_bg_BG,Bulgarian (Bulgaria),thes_bg_BG.zip" +) + +inherit eutils myspell + +DESCRIPTION="Bulgarian dictionaries for myspell/hunspell" +LICENSE="GPL-2" +HOMEPAGE="http://lingucomponent.openoffice.org/ http://bgoffice.sourceforge.net/" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +src_unpack() { + unpack ${A} + cd "${WORKDIR}" + epatch "${FILESDIR}/myspell-bg-20071211-encoding.patch" +} |