| 1 |
# Copyright 1999-2000 Gentoo Technologies, Inc.
|
| 2 |
# Distributed under the terms of the GNU General Public License, v2 or later
|
| 3 |
# Author Achim Gottinger <achim@gentoo.org>
|
| 4 |
# $Header: /home/cvsroot/gentoo-x86/app-text/pspell/pspell-0.12.ebuild,v 1.1 2001/03/20 05:53:12 achim Exp $
|
| 5 |
|
| 6 |
A=${PN}-.12.tar.gz
|
| 7 |
S=${WORKDIR}/${PN}-.12
|
| 8 |
DESCRIPTION="A spell checker frontend for aspell and ispell"
|
| 9 |
SRC_URI="http://download.sourceforge.net/pspell/${A}"
|
| 10 |
HOMEPAGE="http://pspell.sourceforge.net"
|
| 11 |
|
| 12 |
DEPEND="virtual/glibc"
|
| 13 |
|
| 14 |
|
| 15 |
src_compile() {
|
| 16 |
|
| 17 |
try ./configure --prefix=/usr --enable-doc-dir=/usr/share/doc/${P} --host=${CHOST}
|
| 18 |
try make
|
| 19 |
|
| 20 |
}
|
| 21 |
|
| 22 |
src_install () {
|
| 23 |
|
| 24 |
try make DESTDIR=${D} install
|
| 25 |
cd ${D}/usr/share/doc/${P}
|
| 26 |
mv man-html html
|
| 27 |
mv man-text txt
|
| 28 |
cd ${S}
|
| 29 |
dodoc README*
|
| 30 |
|
| 31 |
}
|
| 32 |
|
| 33 |
|