Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-dicts/ispell-pt-br: ChangeLog ispell-pt-br-2.4-r3.ebuild
Date: Sat, 01 Nov 2008 11:43:36
Message-Id: E1KwEtB-00066l-7b@stork.gentoo.org
1 pva 08/11/01 11:43:33
2
3 Modified: ChangeLog
4 Added: ispell-pt-br-2.4-r3.ebuild
5 Log:
6 Cleanup, fixed multilib.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.26-openvz.git-35f41f1 i686)
8
9 Revision Changes Path
10 1.7 app-dicts/ispell-pt-br/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 9 Jun 2008 08:12:14 -0000 1.6
23 +++ ChangeLog 1 Nov 2008 11:43:33 -0000 1.7
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-dicts/ispell-pt-br
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog,v 1.6 2008/06/09 08:12:14 pva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog,v 1.7 2008/11/01 11:43:33 pva Exp $
29 +
30 +*ispell-pt-br-2.4-r3 (01 Nov 2008)
31 +
32 + 01 Nov 2008; Peter Volkov <pva@g.o> +ispell-pt-br-2.4-r3.ebuild:
33 + Cleanup, fixed multilib.
34
35 09 Jun 2008; Peter Volkov <pva@g.o> ispell-pt-br-2.4-r2.ebuild:
36 Added ~amd64 keyword, bug #223049
37
38
39
40 1.1 app-dicts/ispell-pt-br/ispell-pt-br-2.4-r3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ispell-pt-br-2.4-r3.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r3.ebuild,v 1.1 2008/11/01 11:43:33 pva Exp $
50
51 inherit eutils multilib
52
53 MY_P="br.ispell-${PV}"
54 DESCRIPTION="A Brazilian portuguese dictionary for ispell"
55 HOMEPAGE="http://www.ime.usp.br/~ueda/br.ispell"
56 SRC_URI="http://www.ime.usp.br/~ueda/br.ispell/${MY_P}.tar.gz
57 mirror://gentoo/${P}-palavras-gentoo.diff.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
62 IUSE=""
63
64 DEPEND="app-text/ispell
65 sys-apps/gawk"
66
67 S=${WORKDIR}/${MY_P}
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 epatch "${WORKDIR}/${P}-palavras-gentoo.diff"
73 }
74
75 src_compile() {
76 emake VDIR=/usr/share/dict || die
77 make palavras || die
78 make paradigmas || die
79 }
80
81 src_install() {
82 dobin conjugue || die
83 doman conjugue.1 || die
84 insinto /usr/share/dict/
85 doins verbos || die
86 insinto "/usr/$(get_libdir)/ispell"
87 newins br.aff pt_BR.aff || die
88 newins br.hash pt_BR.hash || die
89 dodoc README
90 }