summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2003-06-13 13:12:59 +0000
committerSeemant Kulleen <seemant@gentoo.org>2003-06-13 13:12:59 +0000
commite1652a8189d696a610c398e7edffc036c9c1a653 (patch)
treee3dc0fa82a229f84968043210e6c58bfb9d615d7 /app-dicts/ispell-pt-br
parentispell-br moved to ispell-pt-br (diff)
downloadhistorical-e1652a8189d696a610c398e7edffc036c9c1a653.tar.gz
historical-e1652a8189d696a610c398e7edffc036c9c1a653.tar.bz2
historical-e1652a8189d696a610c398e7edffc036c9c1a653.zip
ispell-br moved to ispell-pt-br
Diffstat (limited to 'app-dicts/ispell-pt-br')
-rw-r--r--app-dicts/ispell-pt-br/Manifest4
-rw-r--r--app-dicts/ispell-pt-br/files/digest-ispell-pt-br-2.4-r22
-rw-r--r--app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild48
3 files changed, 52 insertions, 2 deletions
diff --git a/app-dicts/ispell-pt-br/Manifest b/app-dicts/ispell-pt-br/Manifest
index 2e00abf4b1ca..9a2cdbfb89e3 100644
--- a/app-dicts/ispell-pt-br/Manifest
+++ b/app-dicts/ispell-pt-br/Manifest
@@ -1,3 +1,3 @@
-MD5 7dc751e109045b044a9b3420687dcc7f ispell-pt-br-2.4-r2.ebuild 1088
-MD5 c765e8c23620cd1805306bd717f2775e ChangeLog 1181
+MD5 b1868c199131cae60c08aae7486636b2 ispell-pt-br-2.4-r2.ebuild 1093
+MD5 0bc1beda9b6f05945ac4981b391aadb0 ChangeLog 1461
MD5 88b5e833fcd1949a6d905e6d9e89ee82 files/digest-ispell-pt-br-2.4-r2 150
diff --git a/app-dicts/ispell-pt-br/files/digest-ispell-pt-br-2.4-r2 b/app-dicts/ispell-pt-br/files/digest-ispell-pt-br-2.4-r2
new file mode 100644
index 000000000000..ef4c94646301
--- /dev/null
+++ b/app-dicts/ispell-pt-br/files/digest-ispell-pt-br-2.4-r2
@@ -0,0 +1,2 @@
+MD5 241d9e2fefb92ea74f13c1e07d0b4e7b br.ispell-2.4.tar.gz 125359
+MD5 946cac95d31f29eeb1c45c19d93675ce ispell-pt-br-2.4-palavras-gentoo.diff.bz2 14630
diff --git a/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild b/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild
new file mode 100644
index 000000000000..87e07fce87b2
--- /dev/null
+++ b/app-dicts/ispell-pt-br/ispell-pt-br-2.4-r2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# 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-r2.ebuild,v 1.1 2003/06/13 13:12:56 seemant Exp $
+
+inherit eutils
+
+MY_P="br.ispell-${PV}"
+S=${WORKDIR}/${MY_P}
+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="ppc x86 sparc alpha mips hppa arm"
+
+DEPEND="app-text/ispell
+ sys-apps/gawk"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ epatch ${WORKDIR}/${P}-palavras-gentoo.diff
+}
+
+src_compile() {
+ emake VDIR=/usr/share/dict || die
+ make palavras
+ make paradigmas
+}
+
+src_install () {
+ emake \
+ prefix=${D}usr \
+ VDIR=${D}/usr/share/dict \
+ HASHDIR=${D}usr/lib/ispell \
+ MANDIR=${D}usr/share/man \
+ install || die
+
+
+ insinto /usr/lib/ispell
+ newins br.aff pt_BR.aff
+ newins br.hash pt_BR.hash
+ rm -f ${D}/usr/lib/ispell/br.*
+
+ dodoc COPYING README
+}