Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/aspell/
Date: Mon, 30 Jan 2017 10:23:19
Message-Id: 1485771722.3a54649a007a5a66729b9add9f5d80a4d89dba54.polynomial-c@gentoo
1 commit: 3a54649a007a5a66729b9add9f5d80a4d89dba54
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 30 10:12:38 2017 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 30 10:22:02 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a54649a
7
8 app-text/aspell: Bump to version 0.60.7_rc1
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-text/aspell/Manifest | 1 +
13 app-text/aspell/aspell-0.60.7_rc1.ebuild | 98 ++++++++++++++++++++++++++++++++
14 2 files changed, 99 insertions(+)
15
16 diff --git a/app-text/aspell/Manifest b/app-text/aspell/Manifest
17 index c9946b7..a41b636 100644
18 --- a/app-text/aspell/Manifest
19 +++ b/app-text/aspell/Manifest
20 @@ -1 +1,2 @@
21 DIST aspell-0.60.6.1.tar.gz 1878163 SHA256 f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1 SHA512 f310c7590be98406589b5c26ca36a2ecfe4733f0b40fd6c176b96b7955ef2b5cd0ec9a3d770cf132146ae7a896042b4b698945112995ee1ae66adcfa5542247f WHIRLPOOL 0c77b95a29b598491c12cf22737d5ff758b2758b4f815356d2f52da398afe2b45209cd3b59f90e5b3c1976ee8a09e8cd553507bd93a0cd49043c8531f9a4990b
22 +DIST aspell-0.60.7-rc1.tar.gz 2034916 SHA256 86b5662f24316142f70c5890787bdc5596625ca3604dfe85926ee61f27f2365e SHA512 e13240d78b8afd74d8a8cfd5fc7fe2081de85b33621e86543cdf942ed601d36c4e0cbf38a54be083e951127fa9435677cec2997387cb0e7b51a5597386e7e8d1 WHIRLPOOL 6c48decc0470827024584e0519de70a9b6ffbe1526617eb86614123161dfabcaad7ded9e3d73698ade427523370f7f52f46570bb8052c6502ed30ee4ce2a5799
23
24 diff --git a/app-text/aspell/aspell-0.60.7_rc1.ebuild b/app-text/aspell/aspell-0.60.7_rc1.ebuild
25 new file mode 100644
26 index 00000000..7e81ced
27 --- /dev/null
28 +++ b/app-text/aspell/aspell-0.60.7_rc1.ebuild
29 @@ -0,0 +1,98 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +inherit autotools flag-o-matic libtool toolchain-funcs
37 +
38 +MY_P="${P/_/-}"
39 +
40 +DESCRIPTION="A spell checker replacement for ispell"
41 +HOMEPAGE="http://aspell.net/"
42 +if [[ "${PV}" = *_rc* ]] ; then
43 + SRC_URI="mirror://gnu-alpha/aspell/${MY_P}.tar.gz"
44 +else
45 + SRC_URI="mirror://gnu/aspell/${MY_P}.tar.gz"
46 +fi
47 +
48 +LICENSE="LGPL-2"
49 +SLOT="0"
50 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
51 +IUSE="nls unicode"
52 +
53 +PDEPEND="app-dicts/aspell-en"
54 +LANGS="af be bg br ca cs cy da de de@1901 el en eo es et fi fo fr ga gl he hr
55 +hu hy is it la lt nl no pl pt pt-BR ro ru sk sl sr sv uk vi"
56 +for lang in ${LANGS}; do
57 + IUSE+=" l10n_${lang/@/-}"
58 + # Need to keep linguas_* for now, since aspell uses gettext
59 + IUSE+=" linguas_${lang/-/_}"
60 + case ${lang} in
61 + de@1901) dict="de-alt" ;;
62 + pt-BR) dict="pt-br" ;;
63 + *) dict="${lang}" ;;
64 + esac
65 + PDEPEND+=" l10n_${lang/@/-}? ( app-dicts/aspell-${dict} )"
66 +done
67 +unset dict lang LANGS
68 +
69 +# English dictionary 0.5 is incompatible with aspell-0.6
70 +RDEPEND="
71 + sys-libs/ncurses:0=[unicode?]
72 + nls? ( virtual/libintl )
73 + !=app-dicts/aspell-en-0.5*
74 +"
75 +DEPEND="${RDEPEND}
76 + virtual/pkgconfig
77 + nls? ( sys-devel/gettext )
78 +"
79 +
80 +S="${WORKDIR}/${MY_P}"
81 +
82 +HTML_DOCS=( manual/aspell{,-dev}.html )
83 +PATCHES=(
84 + "${FILESDIR}/${PN}-0.60.5-nls.patch"
85 + "${FILESDIR}/${PN}-0.60.5-solaris.patch"
86 + "${FILESDIR}/${PN}-0.60.6-darwin-bundles.patch"
87 + "${FILESDIR}/${PN}-0.60.6.1-clang.patch"
88 + # includes fix for bug #467602
89 + "${FILESDIR}/${PN}-0.60.6.1-unicode.patch"
90 +)
91 +
92 +src_prepare() {
93 + default
94 +
95 + rm m4/lt* m4/libtool.m4 || die
96 + eautoreconf
97 + elibtoolize --reverse-deps
98 +
99 + # Parallel install of libtool libraries doesn't always work.
100 + # https://lists.gnu.org/archive/html/libtool/2011-03/msg00003.html
101 + # This has to be after automake has run so that we don't clobber
102 + # the default target that automake creates for us.
103 + echo 'install-filterLTLIBRARIES: install-libLTLIBRARIES' >> Makefile.in || die
104 +}
105 +
106 +src_configure() {
107 + econf \
108 + $(use_enable nls) \
109 + $(use_enable unicode) \
110 + --disable-static \
111 + --sysconfdir="${EPREFIX}"/etc/aspell
112 +}
113 +
114 +src_install() {
115 + default
116 +
117 + docinto examples
118 + dodoc "${S}"/examples/*.c
119 +
120 + # install ispell/aspell compatibility scripts
121 + newbin scripts/ispell ispell-aspell
122 + newbin scripts/spell spell-aspell
123 +
124 + # we explicitly pass '--disable-static' to econf,
125 + # hence we can delete .la files unconditionally
126 + find "${D}" -name '*.la' -delete || die
127 +}