summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2012-06-13 13:03:38 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2012-06-13 13:03:38 +0000
commite02b3156c9cffc8bf1e422001744370ead28de58 (patch)
tree4e579ba34b5e038db7f48804a0d4dc7d413ca4d6 /app-dicts
parentStable for x86, wrt bug #417127 (diff)
downloadgentoo-2-e02b3156c9cffc8bf1e422001744370ead28de58.tar.gz
gentoo-2-e02b3156c9cffc8bf1e422001744370ead28de58.tar.bz2
gentoo-2-e02b3156c9cffc8bf1e422001744370ead28de58.zip
Rename thes and hyph files to match with others (not that it matters anyway but looks nicer).
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'app-dicts')
-rw-r--r--app-dicts/myspell-fr/ChangeLog7
-rw-r--r--app-dicts/myspell-fr/myspell-fr-4.5.ebuild16
2 files changed, 18 insertions, 5 deletions
diff --git a/app-dicts/myspell-fr/ChangeLog b/app-dicts/myspell-fr/ChangeLog
index c104a241d03c..7c94f6b31e18 100644
--- a/app-dicts/myspell-fr/ChangeLog
+++ b/app-dicts/myspell-fr/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-dicts/myspell-fr
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-fr/ChangeLog,v 1.22 2012/06/13 12:47:39 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-fr/ChangeLog,v 1.23 2012/06/13 13:03:38 scarabeus Exp $
+
+ 13 Jun 2012; Tomáš Chvátal <scarabeus@gentoo.org> myspell-fr-20060316.ebuild,
+ myspell-fr-4.5.ebuild:
+ Rename thes and hyph files to match with others (not that it matters anyway
+ but looks nicer).
*myspell-fr-4.5 (13 Jun 2012)
diff --git a/app-dicts/myspell-fr/myspell-fr-4.5.ebuild b/app-dicts/myspell-fr/myspell-fr-4.5.ebuild
index d91fd9369c39..9898d0bb33d1 100644
--- a/app-dicts/myspell-fr/myspell-fr-4.5.ebuild
+++ b/app-dicts/myspell-fr/myspell-fr-4.5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-fr/myspell-fr-4.5.ebuild,v 1.1 2012/06/13 12:47:39 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/myspell-fr/myspell-fr-4.5.ebuild,v 1.2 2012/06/13 13:03:38 scarabeus Exp $
EAPI=4
@@ -16,12 +16,12 @@ MYSPELL_DICT=(
)
MYSPELL_HYPH=(
- "hyph_fr.dic"
+ "hyph_fr_FR_v3.dic"
)
MYSPELL_THES=(
- "thes_fr.dat"
- "thes_fr.idx"
+ "th_fr_FR_v3.dat"
+ "th_fr_FR_v3.idx"
)
inherit myspell-r2
@@ -39,3 +39,11 @@ LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux ~x86-macos"
IUSE=""
+
+src_prepare() {
+ # move the hyphen/thes to common used name
+ # versions determined from README files
+ mv hyph_fr.dic hyph_fr_FR_v3.dic || die
+ mv thes_fr.dat th_fr_FR_v3.dat || die
+ mv thes_fr.idx th_fr_FR_v3.idx || die
+}