blob: 200e248738964ad5a3a32c2ec251c409ec266ad1 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-text/pspell-ispell/pspell-ispell-0.12-r1.ebuild,v 1.2 2002/04/02 23:57:46 azarah Exp $
#Remove '-ispell' from name for download subdirectory
MYPN=${PN/-ispell//}
#Remove leading zero from version number
MYPV=${PV#0}
S=${WORKDIR}/${PN}-${MYPV}
DESCRIPTION="Ispell module for pspell"
SRC_URI="http://prdownloads.sourceforge.net/${MYPN}/${PN}-${MYPV}.tar.gz"
HOMEPAGE="http://pspell.sourceforge.net"
DEPEND=">=app-text/pspell-0.12.2-r2
>=app-text/ispell-3.2.06-r1"
src_compile() {
libtoolize --copy --force
./configure \
--disable-static \
--prefix=/usr \
--enable-doc-dir=/usr/share/doc/${PF} \
--host=${CHOST} || die "./configure failed"
emake || die "Parallel Make Failed"
}
src_install () {
make DESTDIR=${D} install || die "Installation Failed"
dodoc README
}
|