blob: b83fb5cc5d1c4b333e00bd9d6e234dcf5864d83a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/ispell-pl/ispell-pl-20021127.ebuild,v 1.12 2008/11/06 09:32:50 armin76 Exp $
inherit multilib
DESCRIPTION="Polish dictionary for ispell"
HOMEPAGE="http://ispell-pl.sourceforge.net/"
SRC_URI="mirror://sourceforge/ispell-pl/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86"
IUSE=""
DEPEND="app-text/ispell"
DICTBUILD="./zbuduj.slownik.sh"
src_compile() {
sed "s/sort +1/sort -k 1/" -i zbuduj.slownik.sh
./zbuduj.slownik.sh || die
}
src_install () {
insinto /usr/$(get_libdir)/ispell
doins polish.aff polish.hash || die
dodoc Changelog CZYTAJ.TO
}
|