blob: 668e6dd332e242bf6d64b87d8ae32e609308414e (
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
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-text/pspell/pspell-0.12.2-r4.ebuild,v 1.1 2002/08/23 15:43:51 seemant Exp $
inherit libtool
#Remove leading zero from version number
MYPV=${PV#0}
S=${WORKDIR}/${PN}-${MYPV}
DESCRIPTION="A spell checker frontend for aspell and ispell"
SRC_URI="http://telia.dl.sf.net/${PN}/${PN}-${MYPV}.tar.gz" #2481
HOMEPAGE="http://pspell.sourceforge.net"
DEPEND=">=app-text/aspell-0.50"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc sparc64"
src_compile() {
elibtoolize
econf \
--libdir=/usr/lib/pspell \
--enable-doc-dir=/usr/share/doc/${PF} \
--enable-ltdl \
|| die "./configure failed"
emake || die "Parallel Make Failed"
}
src_install () {
make \
DESTDIR=${D} \
install || die "Installation Failed"
#remove things which are installed by aspell
rm -f ${D}/usr/bin/pspell-config
rm -f ${D}/usr/include/pspell/pspell.h
dodoc README*
cd ${D}/usr/share/doc/${PF}
mv man-html html
mv man-text txt
}
|