blob: da3e92c514e3236411729627b327b85450db6ad2 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/aspell-es/aspell-es-0.0.3.ebuild,v 1.2 2002/07/13 16:30:25 stubear Exp $
MY_P="aspell-es-0.0-3"
DESCRIPTION="The Spanish aspell dict"
HOMEPAGE="http://aspell.sourceforge.net"
KEYWORDS="x86"
LICENSE="GPL"
DEPEND="aspell"
RDEPEND="${DEPEND}"
SLOT="0"
SRC_URI="http://aspell.sourceforge.net/${MY_P}.tar.bz2"
S=${WORKDIR}/${MY_P}
src_compile() {
./configure
emake || die
}
src_install () {
make DESTDIR=${D} install || die
}
|