Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 107188 - ispell-sl-0.5-3 (New Package)
Summary: ispell-sl-0.5-3 (New Package)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Spell checking utilities and dictionaries -- related bugs (OBSOLETE)
URL:
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2005-09-25 09:04 UTC by Boky
Modified: 2005-11-15 14:37 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Boky 2005-09-25 09:04:57 UTC
Hi. 
 
I noticed there ain't no slovenian spelling dictionary for ispell. 
 
Will create the ebuild script (with dictonary from 
ttp://nl.ijs.si/GNUsl/download/ispell/) and attach it here.
Comment 1 Boky 2005-09-25 10:38:28 UTC
Sorry; problems attaching, pasting the ebuild file here. 
 
# Copyright 1999-2005 Gentoo Foundation 
# Distributed under the terms of the GNU General Public License v2 
# from #107188 
 
inherit rpm 
 
DESCRIPTION="The Slovenian dictionary for ispell" 
HOMEPAGE="http://nl.ijs.si/GNUsl/download/ispell/" 
SRC_URI="http://nl.ijs.si/GNUsl/download/ispell/ispell-sl-0.5-3.src.rpm" 
 
# Not sure about this one, though. 
# There's a readme inside the package that says that Amebis (the 
# company that maed the dictionary) allowed it's conversion into 
# the ispell form, but that's about all. Since it's in the GNUsl 
# folder under the GNU project, it's a safe bet to say it's GPL. 
LICENSE="GPL-2" 
SLOT="0" 
KEYWORDS="x86 ppc sparc mips alpha hppa" 
IUSE="" 
 
DEPEND="app-text/ispell" 
 
src_compile() { 
        # It's important that we export the TMPDIR environment variable, 
        # so we don't commit sandbox violations 
        export TMPDIR=/tmp 
        einfo "Current directory: "`pwd` 
        cd ${WORKDIR} 
        einfo "Found these files: "`ls *` 
        buildhash mte-sl.munched slovensko.aff slovensko.hash || die "Failed to 
create has file." 
        unset TMPDIR 
} 
 
src_install() { 
        insinto /usr/lib/ispell 
        doins ${WORKDIR}/slovensko.aff ${WORKDIR}/slovensko.hash 
        dodoc ${WORKDIR}/README 
} 
 
Comment 2 Anders Rune Jensen (RETIRED) gentoo-dev 2005-11-15 14:37:21 UTC
Thank you very much for the ebuild. It's now committed with minor changes.
Mandrake says the license is GPL so I led that be as it was.