aspell: add a few other dictionaries: fi, fr, sk, sl, sr and sv.

fi (Finnish), fr (French), sk (Slovak), sl (Slovenian), sr (Serbian)
and sv (Swedish). Remark: there are 2 families of aspell_* recipes:
those which have aspell6- in their SOURCE_{URI,DIR} (e.g. fi, sk, sr)
and the others, which don't have the 6 in aspell- (e.g. fr, sl, sv).
This commit is contained in:
fbrosson
2016-04-24 21:49:30 +00:00
parent 379cb0abe3
commit 6a0ab654e9
6 changed files with 265 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
SUMMARY="Finnish dictionary for aspell program/library"
DESCRIPTION="Finnish dictionary for the GNU Aspell program, an open source \
spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2000-2004 Martin Vermeer, Pauli Virtanen"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/fi/aspell6-fi-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="f8d7f07b4511e606eb56392ddaa76fd29918006331795e5942ad11b510d0a51d"
SOURCE_DIR="aspell6-fi-${portVersion/\~/-}"
ARCHITECTURES="any"
PROVIDES="
aspell_fi = $portVersion
"
REQUIRES="
haiku
aspell >= 0.60
"
BUILD_REQUIRES="
devel:libaspell
"
BUILD_PREREQUIRES="
haiku_devel
cmd:make
cmd:prezip_bin
cmd:which
cmd:basename
"
BUILD()
{
./configure
make
}
INSTALL()
{
spellDir=$dataDir/$(basename $(aspell dump config dict-dir))
make dictdir=$spellDir datadir=$spellDir install
}

View File

@@ -0,0 +1,44 @@
SUMMARY="French dictionary for aspell program/library"
DESCRIPTION="French dictionary for the GNU Aspell program, an open source \
spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2001-2002 Rémi Vanicat, GUTenberg association, Christophe Pythoud
2002-2003 Kevin Atkinson"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/fr/aspell-fr-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="f9421047519d2af9a7a466e4336f6e6ea55206b356cd33c8bd18cb626bf2ce91"
SOURCE_DIR="aspell-fr-${portVersion/\~/-}"
ARCHITECTURES="any"
PROVIDES="
aspell_fr = $portVersion
"
REQUIRES="
haiku
aspell >= 0.60
"
BUILD_REQUIRES="
devel:libaspell
"
BUILD_PREREQUIRES="
haiku_devel
cmd:make
cmd:prezip_bin
cmd:which
cmd:basename
"
BUILD()
{
./configure
make
}
INSTALL()
{
spellDir=$dataDir/$(basename $(aspell dump config dict-dir))
make dictdir=$spellDir datadir=$spellDir install
}

View File

@@ -0,0 +1,46 @@
SUMMARY="Slovak dictionary for aspell program/library"
DESCRIPTION="Slovak dictionary for the GNU Aspell program, an open source \
spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2002-2009 Zdenko Podobný
2008 Pavel Chalmovianský, Július Pastierik"
LICENSE="GNU LGPL v2.1
GNU GPL v2
MPL v1.1"
REVISION="1"
SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/sk/aspell6-sk-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="c6a80a2989c305518e0d71af1196b7484fda26fe53be4e49eec7b15b76a860a6"
SOURCE_DIR="aspell6-sk-${portVersion/\~/-}"
ARCHITECTURES="any"
PROVIDES="
aspell_sk = $portVersion
"
REQUIRES="
haiku
aspell >= 0.60
"
BUILD_REQUIRES="
devel:libaspell
"
BUILD_PREREQUIRES="
haiku_devel
cmd:make
cmd:prezip_bin
cmd:which
cmd:basename
"
BUILD()
{
./configure
make
}
INSTALL()
{
spellDir=$dataDir/$(basename $(aspell dump config dict-dir))
make dictdir=$spellDir datadir=$spellDir install
}

View File

@@ -0,0 +1,44 @@
SUMMARY="Slovenian dictionary for aspell program/library"
DESCRIPTION="Slovenian dictionary for the GNU Aspell program, an open source \
spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2003 Aleš Košir, Robert Ludvik, Tomaž Erjavec, Primož Peterlin
2004 Kevin Atkinson"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/sl/aspell-sl-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="e566d127f7130da2df7b1f4f4cb4bc51932517b0c24299f84498ba325e6133d1"
SOURCE_DIR="aspell-sl-${portVersion/\~/-}"
ARCHITECTURES="any"
PROVIDES="
aspell_sl = $portVersion
"
REQUIRES="
haiku
aspell >= 0.60
"
BUILD_REQUIRES="
devel:libaspell
"
BUILD_PREREQUIRES="
haiku_devel
cmd:make
cmd:prezip_bin
cmd:which
cmd:basename
"
BUILD()
{
./configure
make
}
INSTALL()
{
spellDir=$dataDir/$(basename $(aspell dump config dict-dir))
make dictdir=$spellDir datadir=$spellDir install
}

View File

@@ -0,0 +1,43 @@
SUMMARY="Serbian dictionary for aspell program/library"
DESCRIPTION="Serbian (Srpski/Српски) dictionary for the GNU Aspell program, an \
open source spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2005 Goran Rakic (Горан Ракић)"
LICENSE="GNU LGPL v2.1"
REVISION="1"
SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/sr/aspell6-sr-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="705e58fb390633c89c4cb224a1cfb34e67e09496448f7adc6500494b6e009289"
SOURCE_DIR="aspell6-sr-${portVersion/\~/-}"
ARCHITECTURES="any"
PROVIDES="
aspell_sr = $portVersion
"
REQUIRES="
haiku
aspell >= 0.60
"
BUILD_REQUIRES="
devel:libaspell
"
BUILD_PREREQUIRES="
haiku_devel
cmd:make
cmd:prezip_bin
cmd:which
cmd:basename
"
BUILD()
{
./configure
make
}
INSTALL()
{
spellDir=$dataDir/$(basename $(aspell dump config dict-dir))
make dictdir=$spellDir datadir=$spellDir install
}

View File

@@ -0,0 +1,45 @@
SUMMARY="Swedish dictionary for aspell program/library"
DESCRIPTION="Swedish dictionary for the GNU Aspell program, an open source \
spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="1998-2002 Skåne Sjælland Linux User Group, Jacob Sparre Andersen
2000-2001 Martin Norbäck
2003-2004 Kevin Atkinson"
LICENSE="GNU LGPL v2.1"
REVISION="1"
SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/sv/aspell-sv-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="9b70573c9c8cf76f5cdb6abcdfb834a754bbaa1efd7d6f57f47b8a91a19c5c0a"
SOURCE_DIR="aspell-sv-${portVersion/\~/-}"
ARCHITECTURES="any"
PROVIDES="
aspell_sv = $portVersion
"
REQUIRES="
haiku
aspell >= 0.60
"
BUILD_REQUIRES="
devel:libaspell
"
BUILD_PREREQUIRES="
haiku_devel
cmd:make
cmd:prezip_bin
cmd:which
cmd:basename
"
BUILD()
{
./configure
make
}
INSTALL()
{
spellDir=$dataDir/$(basename $(aspell dump config dict-dir))
make dictdir=$spellDir datadir=$spellDir install
}