summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2008-11-01 11:43:33 +0000
committerPeter Volkov <pva@gentoo.org>2008-11-01 11:43:33 +0000
commit97b4d01094a611ff676b97fc965f5b438f4dfa95 (patch)
tree874c80aafd8969247dc33e22d20e737ab7b20112 /app-dicts
parentCleanup, fixed multilib. (diff)
downloadgentoo-2-97b4d01094a611ff676b97fc965f5b438f4dfa95.tar.gz
gentoo-2-97b4d01094a611ff676b97fc965f5b438f4dfa95.tar.bz2
gentoo-2-97b4d01094a611ff676b97fc965f5b438f4dfa95.zip
Cleanup, fixed multilib.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-openvz.git-35f41f1 i686)
Diffstat (limited to 'app-dicts')
-rw-r--r--app-dicts/ispell-pt-br/ChangeLog7
-rw-r--r--app-dicts/ispell-pt-br/ispell-pt-br-2.4-r3.ebuild44
2 files changed, 50 insertions, 1 deletions
diff --git a/app-dicts/ispell-pt-br/ChangeLog b/app-dicts/ispell-pt-br/ChangeLog
index 071c0e07ddef..48586645cb11 100644
--- a/app-dicts/ispell-pt-br/ChangeLog
+++ b/app-dicts/ispell-pt-br/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-dicts/ispell-pt-br
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog,v 1.6 2008/06/09 08:12:14 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pt-br/ChangeLog,v 1.7 2008/11/01 11:43:33 pva Exp $
+
+*ispell-pt-br-2.4-r3 (01 Nov 2008)
+
+ 01 Nov 2008; Peter Volkov <pva@gentoo.org> +ispell-pt-br-2.4-r3.ebuild:
+ Cleanup, fixed multilib.
09 Jun 2008; Peter Volkov <pva@gentoo.org> ispell-pt-br-2.4-r2.ebuild:
Added ~amd64 keyword, bug #223049
diff --git a/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r3.ebuild b/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r3.ebuild
new file mode 100644
index 000000000000..4b6e40638f66
--- /dev/null
+++ b/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $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 $
+
+inherit eutils multilib
+
+MY_P="br.ispell-${PV}"
+DESCRIPTION="A Brazilian portuguese dictionary for ispell"
+HOMEPAGE="http://www.ime.usp.br/~ueda/br.ispell"
+SRC_URI="http://www.ime.usp.br/~ueda/br.ispell/${MY_P}.tar.gz
+ mirror://gentoo/${P}-palavras-gentoo.diff.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND="app-text/ispell
+ sys-apps/gawk"
+
+S=${WORKDIR}/${MY_P}
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${WORKDIR}/${P}-palavras-gentoo.diff"
+}
+
+src_compile() {
+ emake VDIR=/usr/share/dict || die
+ make palavras || die
+ make paradigmas || die
+}
+
+src_install() {
+ dobin conjugue || die
+ doman conjugue.1 || die
+ insinto /usr/share/dict/
+ doins verbos || die
+ insinto "/usr/$(get_libdir)/ispell"
+ newins br.aff pt_BR.aff || die
+ newins br.hash pt_BR.hash || die
+ dodoc README
+}