blob: b5256742fe61f25fdfb57a74d8df2606d1e0a8c7 (
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
30
31
32
33
34
35
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# /space/gentoo/cvsroot/gentoo-x86/app-text/aspell/aspell-0.33.ebuild,v 1.2 2001/05/28 14:32:32 achim Exp
A=${PN}-.33.7.1.tar.gz
S=${WORKDIR}/${PN}-.33.7.1
DESCRIPTION="A spell checker replacement for ispell"
SRC_URI="http://download.sourceforge.net/aspell/${A}"
HOMEPAGE="http://aspell.sourceforge.net"
DEPEND=">=app-text/pspell-0.12
>=sys-libs/ncurses-5.2"
src_compile() {
try ./configure --prefix=/usr --sysconfdir=/etc/aspell --host=${CHOST} --enable-doc-dir=/usr/share/doc/${P}
try make
}
src_install () {
try make DESTDIR=${D} install
cd ${D}/usr/share/doc/${P}
mv man-html html
mv man-text txt
prepalldocs
cd ${S}
dodoc README* TODO
}
|